Skip to content

Commit

Permalink
Update package to v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
OkGoDoIt committed Feb 16, 2023
1 parent 7023ce5 commit edb83c7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions OpenAI_API/OpenAI_API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,20 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>OkGoDoIt (Roger Pincombe)</Authors>
<Product>OpenAI API</Product>
<Description>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.</Description>
<Description>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.</Description>
<Copyright>This library is licensed CC-0, in the public domain</Copyright>
<PackageLicenseExpression>CC0-1.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/OkGoDoIt/OpenAI-API-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/OkGoDoIt/OpenAI-API-dotnet</RepositoryUrl>
<PackageTags>OpenAI, AI, ML, API</PackageTags>
<Title>OpenAI API</Title>
<PackageReleaseNotes>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.</PackageReleaseNotes>
<PackageReleaseNotes>
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.
</PackageReleaseNotes>
<PackageId>OpenAI</PackageId>
<Version>1.4.1</Version>
<AssemblyVersion>1.4.1.0</AssemblyVersion>
<FileVersion>1.4.1.0</FileVersion>
<Version>1.5</Version>
<AssemblyVersion>1.5.0.0</AssemblyVersion>
<FileVersion>1.5.0.0</FileVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit edb83c7

Please sign in to comment.