Roger

Results 41 comments of Roger

I think you need to specify a more up to date Azure API version using `api.ApiVersion = "2023-03-15-preview";`, although as I don't have access to the Azure API it's hard...

I haven't had a chance to add that yet, but I'm planning on getting to it soon.

Sorry for the delay, other projects have gotten in the way. This is definitely a high priority and I will work on adding it soon, but realistically it'll probably be...

Hey @JohnStraumann66, sorry for the delayed reply. The `Completions` endpoint is legacy and not compatible with most of the models. Use the `Chat` endpoint instead. See https://github.com/OkGoDoIt/OpenAI-API-dotnet?tab=readme-ov-file#chat-api for details, but...

Hmm, can you give me some more context about where this is coming from? Also I just pushed a new version 1.8 with support for additional models, so maybe try...

Perhaps you're somehow using a different JSON deserializer? The Model type is strongly typed but it has an implicit conversion from a string, so when parsing a JSON reply from...

It's my understanding that the edit endpoint has been deprecated and will no longer be supported by OpenAI. Is this still important to you @zeecorleone?

We should probably also update the embedding endpoint helper functions to add an optional model parameter (currently it's not one of the parameters because there's only been one model), as...

Yeah, I think it’s probably best to leave the current default which is important for backwards compatibility. OpenAI has explicitly stated they won’t be deprecating that old model. Perhaps I...

When streaming results, OpenAI does not provide usage details. Unfortunately this is a limitation of the OpenAI API and there's nothing I can do about it 😢 See this support...