Skip to content

Commit 816da99

Browse files
committed
Publish version 1.8
1 parent 137c10b commit 816da99

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

OpenAI_API/OpenAI_API.csproj

+5-11
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,18 @@
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
77
<Authors>OkGoDoIt (Roger Pincombe)</Authors>
88
<Product>OpenAI API</Product>
9-
<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>
9+
<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>
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, ChatGPT, DALLE, GPT3, GPT-3, GPT4, GPT-4, DALL-E</PackageTags>
1515
<Title>OpenAI API</Title>
16-
<PackageReleaseNotes>
17-
Added support for GPT4, streaming conversations with ChatGPT, IHttpClientFactory, and various bug fixes.
18-
</PackageReleaseNotes>
16+
<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>
1917
<PackageId>OpenAI</PackageId>
20-
<Version>1.7.2</Version>
21-
<AssemblyVersion>1.7.2.0</AssemblyVersion>
22-
<FileVersion>1.7.2.0</FileVersion>
18+
<Version>1.8</Version>
19+
<AssemblyVersion>1.8.0.0</AssemblyVersion>
20+
<FileVersion>1.8.0.0</FileVersion>
2321
<GenerateDocumentationFile>True</GenerateDocumentationFile>
2422
<PackageReadmeFile>README.md</PackageReadmeFile>
2523
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
@@ -49,10 +47,6 @@
4947
<PackagePath>\</PackagePath>
5048
</None>
5149
</ItemGroup>
52-
53-
<ItemGroup>
54-
<InternalsVisibleTo Include="OpenAI_Tests" />
55-
</ItemGroup>
5650

5751
<ItemGroup>
5852
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# C#/.NET SDK for accessing the OpenAI API's, including GPT-3.5/4, GPT-3.5/4-Turbo, and DALL-E 2/3
1+
# C#/.NET SDK for accessing the OpenAI APIs, including GPT-3.5/4, GPT-3.5/4-Turbo, and DALL-E 2/3
22

33
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.
44

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

36-
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.
36+
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.
3737

3838
## Requirements
3939

0 commit comments

Comments
 (0)