Skip to content

Commit

Permalink
Publish version 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
OkGoDoIt committed Dec 6, 2023
1 parent 137c10b commit 816da99
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
16 changes: 5 additions & 11 deletions OpenAI_API/OpenAI_API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,18 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>OkGoDoIt (Roger Pincombe)</Authors>
<Product>OpenAI API</Product>
<Description>A simple C# / .NET library to use with OpenAI's GPT-3 API, as well as ChatGPT, GPT-4, DALL·E, etc. Independently developed, this is not an official library and I am not affiliated with OpenAI. An OpenAI or Azure OpenAI account is required.</Description>
<Description>A simple C# / .NET library to use with OpenAI's APIs, including GPT 3.5, GPT 4, ChatGPT, DALL-E, etc. 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, ChatGPT, DALLE, GPT3, GPT-3, GPT4, GPT-4, DALL-E</PackageTags>
<Title>OpenAI API</Title>
<PackageReleaseNotes>
Added support for GPT4, streaming conversations with ChatGPT, IHttpClientFactory, and various bug fixes.
</PackageReleaseNotes>
<PackageReleaseNotes>Added and updated models as of December 6, 2023, including the new GPT 4 Turbo and DALL-E 3. (Support for vision, text-to-speech, and all the new features shown at OpenAI DevDay will be coming soon, but are not yet implemented.)</PackageReleaseNotes>
<PackageId>OpenAI</PackageId>
<Version>1.7.2</Version>
<AssemblyVersion>1.7.2.0</AssemblyVersion>
<FileVersion>1.7.2.0</FileVersion>
<Version>1.8</Version>
<AssemblyVersion>1.8.0.0</AssemblyVersion>
<FileVersion>1.8.0.0</FileVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
Expand Down Expand Up @@ -49,10 +47,6 @@
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<InternalsVisibleTo Include="OpenAI_Tests" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# C#/.NET SDK for accessing the OpenAI API's, including GPT-3.5/4, GPT-3.5/4-Turbo, and DALL-E 2/3
# 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.

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

Added and updated models as of December 6, 2023, including the new GPT 4 Turbo and DALLE-3. Support for vision, text-to-speech, and all the new features shown at OpenAI DevDay will be coming soon, but are not yet implemented.
Added and updated models as of December 6, 2023, including the new GPT 4 Turbo and DALL-E 3. Support for vision, text-to-speech, and all the new features shown at OpenAI DevDay will be coming soon, but are not yet implemented.

## Requirements

Expand Down

0 comments on commit 816da99

Please sign in to comment.