A .NET Standard 2.1 C# class library created to easily interface with the the Open AI API.
Supported Versions of .NET and .NET Core
.NET Core 3.1 | .NET 6.0 | .NET 7.0 |
---|
Note: Technically any framework that can support .NET Standard 2.1 can support this library (including .NET Core 3.0, .NET 5) but we've only included examples for the above.
This library is maintained in my own free time. If you'd like to buy me a coffee I would be eternally grateful for your support. https://ko-fi.com/codemonarchs
- Install the NuGet package from CodeMonarchs.OpenAISharp:
dotnet add package CodeMonarchs.OpenAISharp
- Grab your
ApiKey
andOrganizationId
from Open AI: - Open your
appsettings.json
(or wherever your specific use case stores configuration settings) and add the following key/value pair:{ "OpenAI:ApiKey": "<your-api-key>", "OpenAI:OrganizationId": "<your-organization-id>" }
- Register the dependencies in your
Program.cs
file:// If using an individual package on its own or just the OpenAISharp library you can register the services and client like this: // This is useful if you want to customize the HttpClient with your own handlers or if you only want to register a limited set of services. var builder = WebApplication.CreateBuilder(args); var apiKey = builder.Configuration["OpenAI:ApiKey"]; var organizationId = builder.Configuration["OpenAI:OrganizationId"]; services.AddHttpClient<IOpenAIClient, OpenAIClient>(client => { client.BaseAddress = new Uri("https://api.openai.com"); client.DefaultRequestHeaders.Add("Authorization", $"Bearer {apiKey}"); if (!string.IsNullOrWhiteSpace(organizationId)) client.DefaultRequestHeaders.Add("OpenAI-Organization", organizationId); }); services.AddTransient<ICompletionService, CompletionService>(); services.AddTransient<IEditService, EditService>(); services.AddTransient<IEmbeddingService, EmbeddingService>(); services.AddTransient<IFileService, FileService>(); services.AddTransient<IFineTuneService, FineTuneService>(); services.AddTransient<IImageService, ImageService>(); services.AddTransient<IModelService, ModelService>(); services.AddTransient<IModerationService, ModerationService>(); // If you want to use the OpenAISharp.Extensions library you can register them like below (this will register all of the above for you in one line): // Include OpenAISharp.Extensions library to access the .AddOpenAI(...) extension method using OpenAISharp.Extensions; var builder = WebApplication.CreateBuilder(args); var apiKey = builder.Configuration["OpenAI:ApiKey"]; var organizationId = builder.Configuration["OpenAI:OrganizationId"]; builder.Services.AddOpenAI(apiKey, organizationId);
- Consume any of the services in your controller via dependency injection:
using Microsoft.AspNetCore.Mvc; using OpenAISharp.Model; using OpenAISharp.Model.Responses; namespace OpenAISharp.Examples.WebApiNet7.Controllers { [ApiController] [Route("[controller]")] public class ExampleController : ControllerBase { private readonly IModelService _modelService; public ExampleController(IModelService modelService) { _modelService = modelService; } [HttpGet] public async Task<ListModelsResponse> GetAsync() => await _modelService.ListModelsAsync(); } }
- That's it! See example project links below if you need help for another type of project.
Below is a run down of all of the services within this library and a sample of how to use them. All required parameters are set via the constructor in each of the request objects.
// Create Completion
var request = new CreateCompletionRequest("model-name") { Prompt = "Say this is cool" };
var response = await service.CreateCompletionAsync(request);
// Create Edit
var request = new CreateEditRequest(KnownModelNames.TextDavinciEdit001, "Translate this to Spanish") { Input = "Hey" };
var response = await service.CreateEditAsync(request);
// Create Embedding
var request = new CreateEmbeddingRequest(KnownModelNames.TextEmbeddingAda002, "The car was super fast and...");
var response = await service.CreateEmbeddingAsync(request);
// List Files
var response = await service.ListFilesAsync();
// Upload File (JsonL string in memory)
var fileContent = FileUtility.ToJsonL(new List<FilePromptAndCompletion>
{
new FilePromptAndCompletion("How old is Ryan Tunis?", "35"),
new FilePromptAndCompletion("How old is Lourdes Palacios?", "29"),
new FilePromptAndCompletion("How old is Enzo Tunis?", "That's a trick question. As of Jan 2023 he hasn't been born yet. Expeceted May 7th 2023." ),
new FilePromptAndCompletion("How old is Chris Doherty?", "49. But for a mountain, he has only begun in years." )
});
var response = await service.UploadFileAsync(new UploadFileRequest("test-file.jsonl", fileContent, false));
// Upload File (JsonL from file)
var response = await service.UploadFileAsync(new UploadFileRequest("test-file.jsonl", @"C:\path\to\file.jsonl", true));
// Retrieve File
var response = await service.RetrieveFileAsync("file-id");
// Delete File
var response = await service.DeleteFileAsync("file-id");
// Retrieve File Content
var response = await service.RetrieveFileContentAsync("file-id");
// List FineTunes
var response = await service.ListFineTunesAsync();
// Create FineTunes
var request = new CreateFineTuneRequest("file-id");
var response = await service.CreateFineTuneAsync(request);
// Retrieve FineTune
var response = await service.RetrieveFineTuneAsync("fine-tune-id");
// Cancel FineTune
var response = await service.CancelFineTuneAsync("fine-tune-id");
// Delete FineTune Model
var response = await service.DeleteFineTuneModelAsync("model-id");
// List FineTune Events
var response = await service.ListFineTuneEventsAsync("fine-tune-id");
// Create Image
var request = new CreateImageRequest("Draw Etzio from Assassin's Creed");
var response = await service.CreateImageAsync(request);
// Create Image Edit
var request = new CreateImageEditRequest("test_image_rgba.png", @"C:\path\to\image.png", "Make me something random.", true);
var response = await service.CreateImageEditAsync(request);
// Create Image Variation
var request = new CreateImageVariationRequest("test_image_rgba.png", @"C:\path\to\image.png", true);
var response = await service.CreateImageVariationAsync(request);
// List Models
var response = await service.ListModelsAsync();
// Retrieve Model
var response = await service.RetrieveModelAsync(KnownModelNames.Ada);
// List Models
var request = new CreateModerationRequest("is this a bad word");
var response = await service.CreateModerationAsync(request);
To view the API for this library you can check the Docs here (scroll down past the mega list of files): https://github.com/codemonarchs/OpenAISharp/tree/main/Docs
Currently there is no documentation on the Open AI API that tells you what type of object is returned on an unsuccessful response. So, until there is, rather than try to guess at what each type of response object is that comes back from the Open AI API, if there is no successful status code in the response of the API call we throw an exception.
The exception is as follows:
public class OpenAIClientException : Exception
{
public HttpStatusCode HttpStatusCode { get; set; }
public OpenAIClientException(HttpStatusCode httpStatusCode, string message) : base(message)
{
HttpStatusCode = httpStatusCode;
}
}
In the OpenAISharp.Client
library that makes these requests, all we are doing is if there is a non successful status code we are just reading the response object as a string and putting that entire response inside the Message
property of the exception. So in essence, you get the exact response that Open AI will return if your request is unsuccessful. It's just that it isn't in the form of a concrete object yet. This way, you can handle unsuccessful responses (for now) by catching the exception and doing what you need to do in your application like this:
try
{
var response = await service.ListModelsAsync();
}
catch (OpenAIClientException ex)
{
/// handle errors appropriately
}
Until there is more fleshed out documentation on the type of responses that can come back from unsuccessful requests this is what we've come up with. We imagine once the API gets out of beta there will be more documentation on what those responses could be and we will adjust this library appropriately to match what their API states.
Current examples include the following:
Example | .NET Core 3.1 | .NET 6 | .NET 7 |
---|---|---|---|
Blazor Server | No | No | Yes |
Blazor WebAssembly | No | No | Yes |
Console Application | Yes | Yes | Yes |
Azure Functions | Yes | Yes | Yes |
ASP.NET Web API | Yes | Yes | Yes |
Windows Forms | Yes | Yes | Yes |
WPF | Yes | Yes | Yes |
https://github.com/codemonarchs/OpenAISharp/tree/main/Examples
- CodeMonarchs.OpenAISharp
- Meta package that includes all of the below libraries.
- CodeMonarchs.OpenAISharp.Completion
- Completions API - (https://beta.openai.com/docs/api-reference/completions)
- CodeMonarchs.OpenAISharp.Edit
- Edit API - (https://beta.openai.com/docs/api-reference/edits)
- CodeMonarchs.OpenAISharp.Embedding
- Embeddings API - (https://beta.openai.com/docs/api-reference/embeddings)
- CodeMonarchs.OpenAISharp.File
- Files API - (https://beta.openai.com/docs/api-reference/files)
- CodeMonarchs.OpenAISharp.FineTune
- FineTunes API - (https://beta.openai.com/docs/api-reference/fine-tunes)
- CodeMonarchs.OpenAISharp.Image
- Images API - (https://beta.openai.com/docs/api-reference/images)
- CodeMonarchs.OpenAISharp.Model
- Models API - (https://beta.openai.com/docs/api-reference/models)
- CodeMonarchs.OpenAISharp.Moderation
- Moderations API - (https://beta.openai.com/docs/api-reference/moderation)
- CodeMonarchs.OpenAISharp.Client
- An abstraction layer specific to sending HTTP requests to the Open AI API. You don't need to include this by itself.
- CodeMonarchs.OpenAISharp.Utilities
- A utility library that contains an implementation of the Tokenizer Tool for GPT-3.
- CodeMonarchs.OpenAISharp.Extensions
- Extension methods for registering the OpenAIClient and services.
- Retrieve your
Apikey
andOrganizationId
from the Open AI API. - Run the powershell script located in
OpenAISharp.IntegrationTests
to set environment variables with yourApiKey
andOrganizationId
from the Open AI API:.\set-openai-credentials.ps1 -ApiKey <your-api-key> -OrganizationId <your-organization-id>
- That's it!
Note: If you have Visual Studio open while you set these environment variables you need to restart it as Visual Studio does not detect when the environment variables change.