ChatGPT.Net icon indicating copy to clipboard operation
ChatGPT.Net copied to clipboard

C# library for ChatGPT using official OpenAI API

Results 13 ChatGPT.Net issues
Sort by recently updated
recently updated
newest added

at ChatGPTUnofficial.cs line 258 ``` c# var client = new HttpClient(); var request = new HttpRequestMessage { Method = HttpMethod.Post, RequestUri = new Uri($"{Config.BaseUrl}/backend-api/conversation"), Headers = { {"Authorization", $"Bearer {AccessToken}"...

I found that sometimes the unofficial API cannot respond when the reply message is too long. For example, I asked "Perceptual hash algorithm", using `ChatGptUnofficial.Ask`. Then an exception was thrown....

Getting below error message- "You didn't provide an API key. You need to provide your API key in an Authorization header using Bearer auth (i.e. Authorization: Bearer YOUR_KEY), or as...