skip to Main Content

I want to use the openAI API in a console app project in Visual Studio but I don’t know if they have released an official nuget package.

enter image description here

I understand that this is not true?

If they haven’t released it, what is the best way to start testing their API?

Thanks

3

Answers


  1. Chosen as BEST ANSWER

    https://platform.openai.com/docs/libraries/community-libraries

    Dotnet SDK for OpenAI Chat GPT, GPT-3 and DALL·E Unofficial. GPT-3 doesn't have any official .Net SDK.

    https://github.com/betalgo/openai


  2. right now, we have two libraries in community libraries but nothing that allows the swap among Azure and OpenAi, but I found a library that does it. Till now it’s always been updated.
    I’m using this library Rystem.OpenAi from nuget.
    It’s very cool, I like the fluent concept and how I can swap among OpenAi or Azure endpoints for free.

    Login or Signup to reply.
  3. There is now an official nuget package that also supports Azure OpenAI.

    https://www.nuget.org/packages/Azure.AI.OpenAI/

    However it is still in preview at the time of this post.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search