Skip to content

Commit

Permalink
Announce new official package
Browse files Browse the repository at this point in the history
  • Loading branch information
OkGoDoIt authored Jun 10, 2024
1 parent e746d25 commit 8e80c75
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
_Hey all, I know there's a bunch of issues and PR's piling up, but there's a reason I haven't made any changes recently. Expect big news in the next couple weeks. Things will be a lot more up to date after that. Sorry for the hassle in the meantime!_
Microsoft reached out to me about transitioning this library into a new official C# OpenAI library and now it's ready to go! Starting with [v2.0.0-beta.3](https://www.nuget.org/packages/OpenAI/2.0.0-beta.3), the official library now has full coverage and will stay up-to-date. More details in the blog post here: https://devblogs.microsoft.com/dotnet/openai-dotnet-library

This github repo will remain here to document my original version of the library through [version 1.11, which is still available on Nuget as well](https://www.nuget.org/packages/OpenAI/1.11.0).
🎉

# C#/.NET SDK for accessing the OpenAI APIs, including GPT-3.5/4, GPT-3.5/4-Turbo, and DALL-E 2/3

A simple C# .NET wrapper library to use with OpenAI's API. More context [on my blog](https://rogerpincombe.com/openai-dotnet-api). This is an unofficial wrapper library around the OpenAI API. I am not affiliated with OpenAI and this library is not endorsed or supported by them.
A simple C# .NET wrapper library to use with OpenAI's API. More context [on my blog](https://rogerpincombe.com/openai-dotnet-api). **This is my original unofficial wrapper library around the OpenAI API.**

## Quick Example

Expand Down Expand Up @@ -44,9 +47,8 @@ Console.WriteLine(result);
## Status
[![OpenAI](https://badgen.net/nuget/v/OpenAI)](https://www.nuget.org/packages/OpenAI/)

Adds new embedding models as of March 2024.

_I know there's a bunch of issues and PR's piling up, but there's a reason I haven't made any changes recently. Expect big news in the next couple weeks. Things will be a lot more up to date after that. Sorry for the hassle in the meantime!_
Starting with [v2.0.0-beta](https://www.nuget.org/packages/OpenAI/2.0.0-beta.3), this library has been adopted by Microsoft. The new official version of the library will have full coverage and will stay fully up-to-date. More details in the blog post here: [https://devblogs.microsoft.com/dotnet/openai-dotnet-library/](https://devblogs.microsoft.com/dotnet/openai-dotnet-library/)
This github repo will remain here to document my original version of the library through [version 1.11, which is still available on Nuget as well](https://www.nuget.org/packages/OpenAI/1.11.0).

## Requirements

Expand All @@ -56,9 +58,9 @@ This library is based on .NET Standard 2.0, so it should work across all version

### Install from NuGet

Install package [`OpenAI` from Nuget](https://www.nuget.org/packages/OpenAI/). Here's how via commandline:
Install package [`OpenAI` v1.11 from Nuget](https://www.nuget.org/packages/OpenAI/1.11.0). Here's how via commandline:
```powershell
Install-Package OpenAI
Install-Package OpenAI -Version 1.11.0
```

### Authentication
Expand Down

0 comments on commit 8e80c75

Please sign in to comment.