FluentAI.ChatCompletions.OpenAI
1.0.0-beta.2
See the version list below for details.
dotnet add package FluentAI.ChatCompletions.OpenAI --version 1.0.0-beta.2
NuGet\Install-Package FluentAI.ChatCompletions.OpenAI -Version 1.0.0-beta.2
<PackageReference Include="FluentAI.ChatCompletions.OpenAI" Version="1.0.0-beta.2" />
paket add FluentAI.ChatCompletions.OpenAI --version 1.0.0-beta.2
#r "nuget: FluentAI.ChatCompletions.OpenAI, 1.0.0-beta.2"
// Install FluentAI.ChatCompletions.OpenAI as a Cake Addin #addin nuget:?package=FluentAI.ChatCompletions.OpenAI&version=1.0.0-beta.2&prerelease // Install FluentAI.ChatCompletions.OpenAI as a Cake Tool #tool nuget:?package=FluentAI.ChatCompletions.OpenAI&version=1.0.0-beta.2&prerelease
Fluent AI
Fluent AI is a powerful library designed to build and execute advanced prompts using OpenAI's various ChatGPT models. It leverages the capabilities of Azure.AI.OpenAI and NJsonSchema packages to provide a seamless experience for integrating AI into your .NET applications.
Features
- Fluent Building of User and System Prompts: Easily construct prompts for ChatGPT models.
- Custom Chat Tools Integration: Integrate custom chat functions to enable ChatGPT to call arbitrary .NET methods and utilize returned values.
- Structured Responses: Automatically instruct the model to respond in a specified JSON format.
- Built-in Validation: Validate ChatGPT responses using JSON Schema and auto-retry in case the model returns incorrectly formatted answers.
Example Usage
var openAiToken = "...";
var request = new ChatCompletionOpenAiClient(openAiToken)
.ToCompletionsBuilder()
.UseChatGpt4o() // Specify model
.UseChatTool(new FetchUrlTool()) // Add custom .NET methods that the model can call
.UserPrompt("Give me a short description of the following webpage: https://docs.bland.ai/welcome-to-bland")
.UseResponseSchema<ChatGptResponse>() // Auto-generate JSON schema for the model and instruct it to use it
.BuildCompletionsRequest();
ChatGptResponse response = await request.GetStructuredResponse<ChatGptResponse>(); // Get structured and validated response from ChatGPT
Console.WriteLine(response.Text);
// Instruct the model to use this type as the answer
[Description("This is the response model you should use to send answers to questions")]
public class ChatGptResponse
{
// Specify descriptions of properties and add additional validation like Url, Phone, Email, Date, etc.
[Description("Your response message"), Required]
public string Text { get; set; }
}
Implementation of FetchUrlTool
/// <summary>
/// Handles requests to fetch content from a specified URL.
/// </summary>
[Description("Gets content by specified URL")]
public class FetchUrlTool : ChatCompletionToolBase<FetchUrlTool.FetchUrlToolRequest, FetchUrlTool.FetchUrlToolResponse>
{
public FetchUrlTool() : base("fetch_url") {}
/// <summary>
/// Handles the specified request to fetch content from a URL.
/// </summary>
/// <param name="request">The request containing the URL to fetch.</param>
/// <returns>A task that represents the asynchronous operation. The task result contains the response with the fetched content.</returns>
public override async Task<FetchUrlToolResponse> Handle(FetchUrlToolRequest request)
{
var httpClient = new HttpClient();
var response = await httpClient.GetStringAsync(request.Url);
return new FetchUrlToolResponse() { Content = response };
}
/// <summary>
/// Represents a request to fetch content from a specified URL.
/// </summary>
public class FetchUrlToolRequest
{
/// <summary>
/// Gets or sets the URL to fetch.
/// </summary>
[Description("The URL"), Required, Url]
public string Url { get; set; }
}
/// <summary>
/// Represents the response containing the content fetched from a URL.
/// </summary>
public class FetchUrlToolResponse
{
/// <summary>
/// Gets or sets the content fetched from the URL.
/// </summary>
public string Content { get; set; }
}
}
Important Note
The DescriptionAttribute is mandatory as it describes the meaning of the properties to the model, ensuring that the AI understands the context and purpose of each property.
Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue.
License
This project is licensed under the MIT License. See the LICENSE file for more details.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Azure.AI.OpenAI (>= 1.0.0-beta.17)
- FluentAI.ChatCompletions (>= 1.0.0-beta.2)
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.0 | 86 | 7/4/2024 |
1.0.0-beta.3 | 59 | 6/18/2024 |
1.0.0-beta.2 | 59 | 6/6/2024 |
Initial release