-
Notifications
You must be signed in to change notification settings - Fork 431
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
Big announcement: official support from Microsoft! #211
Comments
Sounds like you have something exciting lined up. |
Are you planning to update support for the new GPT-4o model with the new version? |
Good question: I tried manually updating the list of Models today by adding:
...but I'm not sure if it's because the files are added and maintained via NuGet, but the Model class is behaving as if it was readOnly. |
I was thinking things were abandoned and gearing up to have to convert my integrations. Thank you for speaking up. Will delay in this project. Excited to hear the news! |
To answer @jakubbloksa and @MarkHelsinki , 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"; |
Sounds exciting. You must be pumped 🙂 Thanks for the tip, I'll give that a go. The new model is cheaper and improved language handling. So perfect for my use case. |
Here is hoping that is not a force towards us to be using Microsoft's Azure OpenAI services (and costs !) |
Let's go Roger! Congrats... https://devblogs.microsoft.com/dotnet/openai-dotnet-library/ |
It's official! Microsoft reached out to me a month ago about transitioning this library into a new official C# OpenAI library and that's what we've been working on. Starting with v2.0.0-beta.1, the library now has full coverage and will stay fully up-to-date. More details in the blog post here: https://devblogs.microsoft.com/dotnet/openai-dotnet-library/ |
There was mention of a tutorial for transitioning from your gitHub version to the .NET official version. Is that coming online soon? I can see there are a few differences in variable names at least. |
He's a webcast we recorded where we go into more details and answer some community questions: https://www.youtube.com/live/GUV2p_9QUo8?si=R2an9f3x1kO9zzzL |
It's official! Microsoft reached out to me a month ago about transitioning this library into a new official C# OpenAI library and that's what we've been working on. Starting with v2.0.0-beta.1, the library now has full coverage and will stay fully up-to-date. More details in the blog post here: https://devblogs.microsoft.com/dotnet/openai-dotnet-library/
🎉
There's a migration guide available at https://github.com/openai/openai-dotnet/blob/main/MigrationGuide.md as well, as the new version is a bit different.
The text was updated successfully, but these errors were encountered: