From edb83c7e1e310a7ed585d45f1fc032f63ea8c489 Mon Sep 17 00:00:00 2001 From: Roger Date: Thu, 16 Feb 2023 12:31:28 -0800 Subject: [PATCH] Update package to v1.5 --- OpenAI_API/OpenAI_API.csproj | 12 +++++++----- README.md | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/OpenAI_API/OpenAI_API.csproj b/OpenAI_API/OpenAI_API.csproj index b1f8fec..51f0a2f 100644 --- a/OpenAI_API/OpenAI_API.csproj +++ b/OpenAI_API/OpenAI_API.csproj @@ -6,18 +6,20 @@ true OkGoDoIt (Roger Pincombe) OpenAI API - A simple C# / .NET wrapper library to use with OpenAI's GPT-3 API. Independently developed, this is not an official library and I am not affiliated with OpenAI. An OpenAI API account is required. + A simple C# / .NET wrapper library to use with OpenAI's GPT-3 API. Independently developed, this is not an official library and I am not affiliated with OpenAI. An OpenAI or Azure OpenAI account is required. This library is licensed CC-0, in the public domain CC0-1.0 https://github.com/OkGoDoIt/OpenAI-API-dotnet https://github.com/OkGoDoIt/OpenAI-API-dotnet OpenAI, AI, ML, API OpenAI API - Updated to work with the current API as of February 3, 2023. Added Files and Embedding endpoints. Removed the Search endpoint as OpenAI has removed that API. Potentially breaking change with v1.4: The various endpoints (Completions, Models, etc) and related classes have each moved into their own namespaces, for example `OpenAI_API.Completions.CompletionRequest` and `OpenAI_API.Models.Model.DavinciText`. You may need to add `using`s or fully qualify names in exisitng code. + + Updated to work with the current API as of February 16, 2023. Fixed several minor bugs. Now also should work with the Azure OpenAI Service, although this is untested. + OpenAI - 1.4.1 - 1.4.1.0 - 1.4.1.0 + 1.5 + 1.5.0.0 + 1.5.0.0 True README.md True diff --git a/README.md b/README.md index 9f4154b..d4e0725 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ Console.WriteLine(result); * [License](#license) ## Status -Updated to work with the current API as of February 2, 2023. Added Files and Embedding endpoints. Removed the Search endpoint as OpenAI has removed that API. -Potentially breaking change with v1.4: The various endpoints (Completions, Models, etc) and related classes have each moved into their own namespaces, for example `OpenAI_API.Completions.CompletionRequest` and `OpenAI_API.Models.Model.DavinciText`. You may need to add `using`s or fully qualify names in existing code. +Updated to work with the current API as of February 16, 2023. Fixed several minor bugs. + Now also should work with the Azure OpenAI Service, although this is untested. See [Azure](#azure) section for further details. Thank you [@GotMike](https://github.com/gotmike), [@ncface](https://github.com/ncface), [@KeithHenry](https://github.com/KeithHenry), [@gmilano](https://github.com/gmilano), [@metjuperry](https://github.com/metjuperry), and [@Alexei000](https://github.com/Alexei000) for your contributions!