TimHeuer.OpenAIPluginMiddleware
1.0.27
dotnet add package TimHeuer.OpenAIPluginMiddleware --version 1.0.27
NuGet\Install-Package TimHeuer.OpenAIPluginMiddleware -Version 1.0.27
<PackageReference Include="TimHeuer.OpenAIPluginMiddleware" Version="1.0.27" />
paket add TimHeuer.OpenAIPluginMiddleware --version 1.0.27
#r "nuget: TimHeuer.OpenAIPluginMiddleware, 1.0.27"
// Install TimHeuer.OpenAIPluginMiddleware as a Cake Addin #addin nuget:?package=TimHeuer.OpenAIPluginMiddleware&version=1.0.27 // Install TimHeuer.OpenAIPluginMiddleware as a Cake Tool #tool nuget:?package=TimHeuer.OpenAIPluginMiddleware&version=1.0.27
OpenAI Plugin manifest middleware for ASP.NET Core
This is a middleware for ASP.NET Core that will add a manifest file to the response for
OpenAI Plugins in the default location of /.well-known/ai-plugin.json
.
For more information on OpenAI Plugins see the OpenAI Plugin documentation.
Installation
This is a NuGet package so if you are using Visual Studio just use the Package Manager and search for 'TimHeuer.OpenAIPluginMiddleware' (enable checking for pre-release) and install.
Additionally you can install the package using the .NET CLI if you are using other tools:
$ dotnet add package TimHeuer.OpenAIPluginMiddleware --version 1.0.10-pre
Usage (pattern using ASP.NET minimal hosting/APIs)
Add the middleware to your Program.cs
file (below is just an example, substitute your options):
builder.Services.AddAiPluginGen(options =>
{
options.NameForHuman = "Weather Forecast";
options.NameForModel = "weatherforecast";
options.LegalInfoUrl = "https://example.com/legal";
options.ContactEmail = "noreply@example.com";
options.LogoUrl = "https://example.com/logo.png";
options.DescriptionForHuman = "Search for weather forecasts";
options.DescriptionForModel = "Plugin for searching the weather forecast. Use It whenever a users asks about weather or forecasts";
options.ApiDefinition = new Api() { RelativeUrl = "/swagger/v1/swagger.yaml" };
});
And then after the builder is built, add the middleware:
app.UseAiPluginGen();
Options
The options are mostly required to conform the plugin schema specification. Some defaults are provided:
- Api/Type: "openapi"
- Api/IsUserAuthetnication: "false"
- Api/RelativeUrl: "/openapi.yaml"
- SchemaVersion: "v1"
- Auth/Type: "none"
Disclaimer
As with most of my projects this started as a learning, experiment, and selfish need. It may not fit your needs at all. That's okay, I'm not offended. You are free to ignore it and move along. Or you are also free to provide some helpful feedback to make it better for yourself or others.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. 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. |
-
net7.0
- Macross.Json.Extensions (>= 3.0.0)
- Microsoft.Extensions.Options (>= 7.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.27 | 244 | 6/16/2023 |
1.0.26 | 245 | 6/15/2023 |
1.0.19 | 143 | 5/29/2023 |
1.0.17-pre | 131 | 5/29/2023 |
1.0.16-pre | 142 | 5/29/2023 |
1.0.15-pre | 141 | 5/29/2023 |
1.0.14-pre | 136 | 5/29/2023 |
1.0.10-pre | 126 | 5/28/2023 |
1.0.8-pre | 124 | 5/28/2023 |
1.0.7-pre | 127 | 5/28/2023 |
1.0.5-pre | 126 | 5/28/2023 |
Added more auth schema support