-
Notifications
You must be signed in to change notification settings - Fork 433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Request] Add support for gpt-4o model #215
Comments
@kamilk91 Added it in my pull request or you can get it at: https://github.com/glienard/OpenAI-API-dotnet |
Please merge this ASAP @kamilk91 |
I've added omni for now by extending the Model class in my project.
|
Does anyone know what the hold up is on getting this done? |
I’m unfortunately not allowed to announce the details publicly for another week or two, but I promise it’ll be worth the wait. There’s gonna be a lot better and more official support coming soon. Keep an eye on the Microsoft blogs 😉 In the meantime, you can always pass in the model name as a string rather than using the strongly typed models class. Just use the model name identifier string that’s in the official OpenAI API docs. There’s an implicit cast of string to For example: var chat = api.Chat.CreateConversation();
chat.Model = "gpt-4o"; |
Here's the Microsoft blog post Roger mentioned above: https://devblogs.microsoft.com/dotnet/openai-dotnet-library/ |
As @scottaddie mentioned, it's official! Microsoft is launching an official library, which means full API coverage and up-to-date models going forward. More details in #211 and at the blog at https://devblogs.microsoft.com/dotnet/openai-dotnet-library/ |
No description provided.
The text was updated successfully, but these errors were encountered: