ericliu0408

Results 5 issues of ericliu0408

因为有时候用户可能不清楚当前用的是gpt4还是3.5

I met below error when calling StreamChatAsync, could you please advise the reason. many thanks: System.IO.FileLoadException: 'Could not load file or assembly "System.Threading.Tasks.Extensions, Version=4.2.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" or one of its...

Can I use this library to call api from a different url? This is because in some countries openai api can’t be accessed, some sort of wrapper api could be...

Please advise how to cancel a running api call like below: ``` var results = await api.Chat.CreateChatCompletionAsync(new ChatRequest() { Model = Model.ChatGPTTurbo, Temperature = 0.1, MaxTokens = max_Tokens, Messages =...

I currently use below code to call the chat api ``` var results = await api.Chat.CreateChatCompletionAsync(new ChatRequest() { Model = Model.ChatGPTTurbo, Temperature = 0.1, MaxTokens = max_Tokens, Messages = new...