OpenAI-DotNet
4.4.0
See the version list below for details.
dotnet add package OpenAI-DotNet --version 4.4.0
NuGet\Install-Package OpenAI-DotNet -Version 4.4.0
<PackageReference Include="OpenAI-DotNet" Version="4.4.0" />
paket add OpenAI-DotNet --version 4.4.0
#r "nuget: OpenAI-DotNet, 4.4.0"
// Install OpenAI-DotNet as a Cake Addin #addin nuget:?package=OpenAI-DotNet&version=4.4.0 // Install OpenAI-DotNet as a Cake Tool #tool nuget:?package=OpenAI-DotNet&version=4.4.0
C#/.NET SDK for accessing the OpenAI GPT-3 API
A simple C# .NET wrapper library to use with OpenAI's GPT-3 API. More context on Roger Pincombe's blog and forked from OpenAI-API-dotnet.
This repository is available to transfer to the OpenAI organization if they so choose to accept it.
Requirements
This library targets .NET 6.0 and above.
It should work across console apps, winforms, wpf, asp.net, etc.
It should also work across Windows, Linux, and Mac.
Getting started
Install from NuGet
Install package OpenAI
from Nuget. Here's how via command line:
Install-Package OpenAI-DotNet
Looking to use OpenAI in the Unity Game Engine? Check out our unity package on OpenUPM:
Quick Start
Uses the default authentication from the current directory, the default user directory or system environment variables:
var api = new OpenAIClient();
Authentication
There are 3 ways to provide your API keys, in order of precedence:
- Pass keys directly with constructor
- Load key from configuration file
- Use System Environment Variables
You use the OpenAIAuthentication
when you initialize the API as shown:
Pass keys directly with constructor
var api = new OpenAIClient("sk-mykeyhere");
Or create a OpenAIAuthentication
object manually
var api = new OpenAIClient(new OpenAIAuthentication("sk-secretkey"));
Load key from configuration file
Attempts to load api keys from a configuration file, by default .openai
in the current directory, optionally traversing up the directory tree or in the user's home directory.
To create a configuration file, create a new text file named .openai
and containing the line:
Organization entry is optional.
Json format
{
"apiKey":"sk-aaaabbbbbccccddddd",
"organization":"org-yourOrganizationId"
}
Deprecated format
OPENAI_KEY=sk-aaaabbbbbccccddddd
ORGANIZATION=org-yourOrganizationId
You can also load the file directly with known path by calling a static method in Authentication:
var api = new OpenAIClient(OpenAIAuthentication.LoadFromDirectory("C:\\Path\\To\\.openai"));;
Use System Environment Variables
Use
OPENAI_KEY
orOPENAI_SECRET_KEY
specify a key defined in the system's local environment:
var api = new OpenAIClient(OpenAIAuthentication.LoadFromEnv());
Models
List and describe the various models available in the API. You can refer to the Models documentation to understand what models are available and the differences between them.
The Models API is accessed via OpenAIClient.ModelsEndpoint
.
List models
Lists the currently available models, and provides basic information about each one such as the owner and availability.
var api = new OpenAIClient();
var models = await api.ModelsEndpoint.GetModelsAsync();
Retrieve model
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
var api = new OpenAIClient();
var model = await api.ModelsEndpoint.GetModelDetailsAsync("text-davinci-003");
Delete Fine Tuned Model
Delete a fine-tuned model. You must have the Owner role in your organization.
var api = new OpenAIClient();
var result = await api.ModelsEndpoint.DeleteFineTuneModelAsync("your-fine-tuned-model");
// result == true
Completions
The Completion API is accessed via OpenAIClient.CompletionsEndpoint
:
var api = new OpenAIClient();
var result = await api.CompletionsEndpoint.CreateCompletionAsync("One Two Three One Two", temperature: 0.1, model: Model.Davinci);
Console.WriteLine(result);
Get the CompletionResult
(which is mostly metadata), use its implicit string operator to get the text if all you want is the completion choice.
Streaming
Streaming allows you to get results are they are generated, which can help your application feel more responsive, especially on slow models like Davinci.
var api = new OpenAIClient();
await api.CompletionsEndpoint.StreamCompletionAsync(result =>
{
foreach (var choice in result.Completions)
{
Console.WriteLine(choice);
}
}, "My name is Roger and I am a principal software engineer at Salesforce. This is my resume:", maxTokens: 200, temperature: 0.5, presencePenalty: 0.1, frequencyPenalty: 0.1, model: Model.Davinci);
Or if using IAsyncEnumerable{T}
(C# 8.0+)
var api = new OpenAIClient();
await foreach (var token in api.CompletionsEndpoint.StreamCompletionEnumerableAsync("My name is Roger and I am a principal software engineer at Salesforce. This is my resume:", maxTokens: 200, temperature: 0.5, presencePenalty: 0.1, frequencyPenalty: 0.1, model: Model.Davinci))
{
Console.WriteLine(token);
}
Edits
Given a prompt and an instruction, the model will return an edited version of the prompt.
The Edits API is accessed via OpenAIClient.EditsEndpoint
.
Create Edit
Creates a new edit for the provided input, instruction, and parameters using the provided input and instruction.
The Create Edit API is accessed via OpenAIClient.ImagesEndpoint.CreateEditAsync
.
var api = new OpenAIClient();
var request = new EditRequest("What day of the wek is it?", "Fix the spelling mistakes");
var result = await api.EditsEndpoint.CreateEditAsync(request);
Embeddings
Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms.
Related guide: Embeddings
The Edits API is accessed via OpenAIClient.EmbeddingsEndpoint
.
Create Embeddings
Creates an embedding vector representing the input text.
The Create Embedding API is accessed via OpenAIClient.EmbeddingsEndpoint.CreateEmbeddingAsync
.
var api = new OpenAIClient();
var result = await api.EmbeddingsEndpoint.CreateEmbeddingAsync("The food was delicious and the waiter...");
Images
Given a prompt and/or an input image, the model will generate a new image.
The Images API is accessed via OpenAIClient.ImagesEndpoint
.
Create Image
Creates an image given a prompt.
The Create Image API is accessed via OpenAIClient.ImagesEndpoint.GenerateImageAsync
.
var api = new OpenAIClient();
var results = await api.ImagesEndpoint.GenerateImageAsync("A house riding a velociraptor", 1, ImageSize.Small);
// results == array of image urls to download
Edit Image
Creates an edited or extended image given an original image and a prompt.
The Edit Image API is accessed via OpenAIClient.ImagesEndPoint.CreateImageEditAsync
:
var api = new OpenAIClient();
var results = await api.ImagesEndPoint.CreateImageEditAsync(Path.GetFullPath(imageAssetPath), Path.GetFullPath(maskAssetPath), "A sunlit indoor lounge area with a pool containing a flamingo", 1, ImageSize.Small);
// results == array of image urls to download
Create Image Variation
Creates a variation of a given image.
The Edit Image API is accessed via OpenAIClient.ImagesEndPoint.CreateImageVariationAsync
:
var api = new OpenAIClient();
var results = await api.ImagesEndPoint.CreateImageVariationAsync(Path.GetFullPath(imageAssetPath), 1, ImageSize.Small);
// results == array of image urls to download
Files
Files are used to upload documents that can be used with features like Fine-tuning.
The Files API is accessed via OpenAIClient.FilesEndpoint
.
List Files
Returns a list of files that belong to the user's organization.
var api = new OpenAIClient();
var files = await api.FilesEndpoint.ListFilesAsync();
foreach (var file in result)
{
Console.WriteLine($"{file.Id} -> {file.Object}: {file.FileName} | {file.Size} bytes");
}
Upload File
Upload a file that contains document(s) to be used across various endpoints/features. Currently, the size of all the files uploaded by one organization can be up to 1 GB. Please contact us if you need to increase the storage limit.
var api = new OpenAIClient();
var fileData = await api.FilesEndpoint.UploadFileAsync("path/to/your/file.jsonl", "fine-tune");
Delete File
Delete a file.
var api = new OpenAIClient();
var result = await api.FilesEndpoint.DeleteFileAsync(fileData);
// result == true
Retrieve File Info
Returns information about a specific file.
var api = new OpenAIClient();
var fileData = await GetFileInfoAsync(fileId);
Download File Content
Downloads the specified file.
var api = new OpenAIClient();
var downloadedFilePath = await api.FilesEndpoint.DownloadFileAsync(fileId, "path/to/your/save/directory");
Fine Tuning
Manage fine-tuning jobs to tailor a model to your specific training data.
Related guide: Fine-tune models
The Files API is accessed via OpenAIClient.FineTuningEndpoint
.
Create Fine Tune Job
Creates a job that fine-tunes a specified model from a given dataset.
Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete.
var api = new OpenAIClient();
var request = new CreateFineTuneRequest(fileData);
var fineTuneResponse = await api.FineTuningEndpoint.CreateFineTuneJobAsync(request);
List Fine Tune Jobs
List your organization's fine-tuning jobs.
var api = new OpenAIClient();
var fineTuneJobs = await api.FineTuningEndpoint.ListFineTuneJobsAsync();
Retrieve Fine Tune Job Info
Gets info about the fine-tune job.
var api = new OpenAIClient();
var request = await api.FineTuningEndpoint.RetrieveFineTuneJobInfoAsync(fineTuneJob);
Cancel Fine Tune Job
Immediately cancel a fine-tune job.
var api = new OpenAIClient();
var result = await api.FineTuningEndpoint.CancelFineTuneJobAsync(job);
// result = true
List Fine Tune Events
Get fine-grained status updates for a fine-tune job.
var api = new OpenAIClient();
var fineTuneEvents = await api.FineTuningEndpoint.ListFineTuneEventsAsync(fineTuneJob);
Stream Fine Tune Events
var api = new OpenAIClient();
await api.FineTuningEndpoint.StreamFineTuneEventsAsync(fineTuneJob, fineTuneEvent =>
{
Console.WriteLine($" {fineTuneEvent.CreatedAt} [{fineTuneEvent.Level}] {fineTuneEvent.Message}");
});
Or if using IAsyncEnumerable{T}
(C# 8.0+)
var api = new OpenAIClient();
await foreach (var fineTuneEvent in api.FineTuningEndpoint.StreamFineTuneEventsEnumerableAsync(fineTuneJob))
{
Console.WriteLine($" {fineTuneEvent.CreatedAt} [{fineTuneEvent.Level}] {fineTuneEvent.Message}");
}
Moderations
Given a input text, outputs if the model classifies it as violating OpenAI's content policy.
Related guide: Moderations
Create Moderation
Classifies if text violates OpenAI's Content Policy.
The Moderations endpoint can be accessed via OpenAIClient.ModerationsEndpoint.GetModerationAsync
:
var api = new OpenAIClient();
var response = await api.ModerationsEndpoint.GetModerationAsync("I want to kill them.");
// response == true
License
This library is licensed CC-0, in the public domain. You can use it for whatever you want, publicly or privately, without worrying about permission or licensing or whatever. It's just a wrapper around the OpenAI API, so you still need to get access to OpenAI from them directly. I am not affiliated with OpenAI and this library is not endorsed by them, I just have beta access and wanted to make a C# library to access it more easily. Hopefully others find this useful as well. Feel free to open a PR if there's anything you want to contribute.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- No dependencies.
NuGet packages (11)
Showing the top 5 NuGet packages that depend on OpenAI-DotNet:
Package | Downloads |
---|---|
OpenAI-DotNet-Proxy
A simple Proxy API gateway for OpenAI-DotNet to make authenticated requests from a front end application without exposing your API keys. |
|
WK.OpenAiWrapper
Package Description |
|
NewLeadAI
A client to interact with NewLead AI API |
|
AICore.Core
Package Description |
|
Universal.Tools.Core.Requests.Extensions.OpenAI
Package Description |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on OpenAI-DotNet:
Repository | Stars |
---|---|
dkgv/pinpoint
Keystroke launcher and personal command central. Alternative to Spotlight and Alfred for Windows. Alternative to Wox, PowerToys.
|
|
SlimeNull/OpenGptChat
An OpenAI Chat completion Client. 一个 OpenAI 聊天 Completion 客户端.
|
|
BoiHanny/vrcosc-magicchatbox
The ultimate companion, whether you're on desktop or in VR, we've got you covered with our handy integrations in a compact and modern UI
|
Version | Downloads | Last updated | |
---|---|---|---|
8.4.1 | 33 | 11/15/2024 | |
8.4.0 | 107 | 11/15/2024 | |
8.3.0 | 27,664 | 9/19/2024 | |
8.2.5 | 4,195 | 9/14/2024 | |
8.2.4 | 699 | 9/14/2024 | |
8.2.2 | 14,504 | 8/19/2024 | |
8.2.1 | 326 | 8/19/2024 | |
8.2.0 | 583 | 8/18/2024 | |
8.1.2 | 9,284 | 8/9/2024 | |
8.1.1 | 38,305 | 6/30/2024 | |
8.1.0 | 8,524 | 6/21/2024 | |
8.0.3 | 1,154 | 6/16/2024 | |
8.0.2 | 1,525 | 6/15/2024 | |
8.0.1 | 13,463 | 6/10/2024 | |
8.0.0 | 187 | 6/10/2024 | |
7.7.8 | 46,690 | 5/4/2024 | |
7.7.7 | 16,206 | 4/21/2024 | |
7.7.6 | 15,267 | 3/19/2024 | |
7.7.5 | 14,404 | 3/3/2024 | |
7.7.4 | 1,720 | 2/29/2024 | |
7.7.3 | 884 | 2/27/2024 | |
7.7.2 | 1,296 | 2/27/2024 | |
7.7.1 | 1,757 | 2/25/2024 | |
7.7.0 | 3,403 | 2/22/2024 | |
7.6.5 | 8,561 | 2/6/2024 | |
7.6.4 | 2,289 | 1/29/2024 | |
7.6.3 | 601 | 1/26/2024 | |
7.6.2 | 9,871 | 1/14/2024 | |
7.6.1 | 3,254 | 1/6/2024 | |
7.6.0 | 7,298 | 1/2/2024 | |
7.5.0 | 3,650 | 12/22/2023 | |
7.4.4 | 14,995 | 12/10/2023 | |
7.4.3 | 1,131 | 12/7/2023 | |
7.4.2 | 1,256 | 12/7/2023 | |
7.4.1 | 4,711 | 12/3/2023 | |
7.4.0 | 2,164 | 11/30/2023 | |
7.3.8 | 630 | 11/29/2023 | |
7.3.7 | 855 | 11/28/2023 | |
7.3.6 | 456 | 11/28/2023 | |
7.3.5 | 728 | 11/27/2023 | |
7.3.4 | 4,810 | 11/24/2023 | |
7.3.3 | 1,162 | 11/23/2023 | |
7.3.2 | 875 | 11/22/2023 | |
7.3.1 | 5,200 | 11/21/2023 | |
7.3.0 | 464 | 11/21/2023 | |
7.2.3 | 5,085 | 11/12/2023 | |
7.2.2 | 2,895 | 11/10/2023 | |
7.2.1 | 506 | 11/9/2023 | |
7.2.0 | 3,688 | 11/9/2023 | |
7.1.0 | 832 | 11/7/2023 | |
7.0.10 | 7,370 | 10/7/2023 | |
7.0.9 | 13,305 | 8/27/2023 | |
7.0.8 | 2,403 | 8/25/2023 | |
7.0.5 | 5,741 | 8/10/2023 | |
7.0.4 | 5,711 | 7/27/2023 | |
7.0.3 | 11,121 | 6/21/2023 | |
7.0.2 | 936 | 6/19/2023 | |
7.0.1 | 1,950 | 6/17/2023 | |
7.0.0 | 900 | 6/17/2023 | |
6.8.7 | 9,494 | 5/21/2023 | |
6.8.6 | 676 | 5/19/2023 | |
6.8.5 | 661 | 5/19/2023 | |
6.8.3 | 1,458 | 5/16/2023 | |
6.8.2 | 733 | 5/15/2023 | |
6.8.1 | 2,719 | 5/7/2023 | |
6.8.0 | 4,465 | 4/30/2023 | |
6.7.4 | 1,101 | 4/27/2023 | |
6.7.3 | 1,200 | 4/26/2023 | |
6.7.2 | 1,354 | 4/23/2023 | |
6.7.1 | 8,567 | 4/13/2023 | |
6.7.0 | 1,965 | 4/10/2023 | |
6.6.0 | 63,412 | 4/4/2023 | |
6.5.3 | 2,666 | 3/29/2023 | |
6.5.2 | 799 | 3/29/2023 | |
6.5.1 | 1,338 | 3/27/2023 | |
6.5.0 | 2,561 | 3/26/2023 | |
6.4.3 | 714 | 3/26/2023 | |
6.4.2 | 1,195 | 3/26/2023 | |
6.4.1 | 2,830 | 3/24/2023 | |
6.4.0 | 878 | 3/23/2023 | |
6.3.2 | 2,852 | 3/22/2023 | |
6.3.1 | 5,780 | 3/17/2023 | |
6.3.0 | 1,672 | 3/17/2023 | |
6.2.0 | 774 | 3/16/2023 | |
6.1.0 | 3,325 | 3/14/2023 | |
6.0.1 | 1,800 | 3/12/2023 | |
6.0.0 | 1,103 | 3/11/2023 | |
5.1.2 | 778 | 3/10/2023 | |
5.1.1 | 800 | 3/9/2023 | |
5.1.0 | 1,132 | 3/8/2023 | |
5.0.2 | 1,618 | 3/6/2023 | |
5.0.1 | 1,344 | 3/2/2023 | |
5.0.0 | 967 | 3/2/2023 | |
4.4.4 | 2,413 | 2/18/2023 | |
4.4.3 | 1,844 | 2/10/2023 | |
4.4.2 | 1,302 | 2/7/2023 | |
4.4.1 | 972 | 2/4/2023 | |
4.4.0 | 749 | 2/4/2023 | |
4.3.0 | 987 | 1/31/2023 | |
4.2.0 | 945 | 1/28/2023 | |
4.1.0 | 850 | 1/27/2023 | |
4.0.2 | 1,195 | 1/20/2023 | |
4.0.1 | 1,038 | 1/17/2023 | |
4.0.0 | 2,339 | 1/9/2023 | |
3.0.1 | 8,280 | 4/14/2022 | |
3.0.0 | 2,394 | 6/20/2021 | |
2.0.1 | 953 | 5/29/2021 | |
2.0.0 | 1,025 | 5/29/2021 | |
1.0.1 | 968 | 5/2/2021 | |
1.0.0 | 1,147 | 5/1/2021 |
Bump version to 4.4.0
- Renamed `Choice.Logprobs -> Choice.LogProbabilities`
- Renamed `OpenAI.Completions.Logprobs -> OpenAI.Completions.OpenAI.Completions`
- Renamed `CompletionRequest` parameter names:
- `max_tokens` -> `maxTokens`
- `top_p` -> `topP`
- Updated `CompletionRequest` to accept `IEnumerable<string>` values for `prompts` and `stopSequences`
- Refactored all endpoints to use new response validation extension
- Added `CancellationToken` to most endpoints that had long running operations