Skip to content

Commit edb83c7

Browse files
committed
Update package to v1.5
1 parent 7023ce5 commit edb83c7

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

OpenAI_API/OpenAI_API.csproj

+7-5
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Authors>OkGoDoIt (Roger Pincombe)</Authors>
88
<Product>OpenAI API</Product>
9-
<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>
9+
<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>
1010
<Copyright>This library is licensed CC-0, in the public domain</Copyright>
1111
<PackageLicenseExpression>CC0-1.0</PackageLicenseExpression>
1212
<PackageProjectUrl>https://github.com/OkGoDoIt/OpenAI-API-dotnet</PackageProjectUrl>
1313
<RepositoryUrl>https://github.com/OkGoDoIt/OpenAI-API-dotnet</RepositoryUrl>
1414
<PackageTags>OpenAI, AI, ML, API</PackageTags>
1515
<Title>OpenAI API</Title>
16-
<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>
16+
<PackageReleaseNotes>
17+
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.
18+
</PackageReleaseNotes>
1719
<PackageId>OpenAI</PackageId>
18-
<Version>1.4.1</Version>
19-
<AssemblyVersion>1.4.1.0</AssemblyVersion>
20-
<FileVersion>1.4.1.0</FileVersion>
20+
<Version>1.5</Version>
21+
<AssemblyVersion>1.5.0.0</AssemblyVersion>
22+
<FileVersion>1.5.0.0</FileVersion>
2123
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2224
<PackageReadmeFile>README.md</PackageReadmeFile>
2325
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Console.WriteLine(result);
2525
* [License](#license)
2626

2727
## Status
28-
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.
29-
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.
28+
Updated to work with the current API as of February 16, 2023. Fixed several minor bugs.
29+
3030
Now also should work with the Azure OpenAI Service, although this is untested. See [Azure](#azure) section for further details.
3131

3232
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!

0 commit comments

Comments
 (0)