OpenAI API Dotnet Versions Save

An unofficial C#/.NET SDK for accessing the OpenAI GPT-3 API

v1.10

4 months ago

Adds text-to-speech as well as audio transcriptions and translations (Whisper)

Recent improvements over the last week also include:

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.9...v1.10

v1.9

5 months ago

Adds updated models as of December 11, 2023, including the new GPT-4 Vision, GPT-4 Turbo, and DALL-E 3. Adds json result format. Fixes chat result streaming bug #184.

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.8...v1.9

v1.8

5 months ago

What's Changed

  • Added and updated models as of December 6, 2023, including the new GPT 4 Turbo and DALL-E 3.
  • Added support for automatically pruning chat conversation history when it exceeds the context window.

(Support for vision, text-to-speech, and all the new features shown at OpenAI DevDay will be coming soon, but are not yet implemented.)

New Contributors

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.7.2...v1.8

v1.7.2

1 year ago

v1.7.2: Minor bugfix for stack overflow in ChatMessageRole, plus add Nuget package icon.

v1.7: Added support for GPT4, streaming conversations with ChatGPT, IHttpClientFactory, and numerous bug fixes

What's Changed

New Contributors

Full Changelog: Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.6...v1.7.2

v1.7

1 year ago

Added support for GPT4, streaming conversations with ChatGPT, IHttpClientFactory, and numerous bug fixes

What's Changed

New Contributors

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.6...v1.7

v1.6

1 year ago

Adds support for ChatGPT, DALLE 2 image generations, and the moderation endpoint

What's Changed

New Contributors

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.5...v1.6

v1.5

1 year ago

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.

What's Changed

New Contributors

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.4...v1.5

v1.4

1 year ago

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 usings or fully qualify names in existing code. Also the Search endpoint has been removed, although that was already broken.

Thank you @GotMike, @gmilano, @metjuperry, and @Alexei000 for your contributions!

What's Changed

Full Changelog: https://github.com/OkGoDoIt/OpenAI-API-dotnet/compare/v1.3...v1.4

v1.3

1 year ago

Updated to work with the current API as of January 12, 2023. Deprecate the Search endpoint as OpenAI has removed that API. This version includes breaking changes around specifying models to keep up with OpenAI API changes. If you had any code which used the old "engines", that will need to be updated to "models". Support for insertion, edits, and embedding is coming soon.

v1.2

3 years ago

Added support for "echo" parameter, which echos back the prompt in responses (thanks to @gotmike ) Removed support for publishable API keys (and renamed secret keys to simply API keys) since OpenAI no longer supports publishable keys. Also fixed various typos in the documentation.