ChatGPTSharp 2.0.4
.NET 7.0
This package targets .NET 7.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
dotnet add package ChatGPTSharp --version 2.0.4
NuGet\Install-Package ChatGPTSharp -Version 2.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ChatGPTSharp" Version="2.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ChatGPTSharp --version 2.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ChatGPTSharp, 2.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ChatGPTSharp as a Cake Addin #addin nuget:?package=ChatGPTSharp&version=2.0.4 // Install ChatGPTSharp as a Cake Tool #tool nuget:?package=ChatGPTSharp&version=2.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ChatGPTSharp
This project implements ChatGPT continuous dialogue based on ConversationId, which can be quickly integrated with just a few lines of code. It supports models such as gpt-4, gpt-4-vision-preview and gpt-3.5-turbo.
Getting Started
ChatGPTSharp is available as NuGet package.
Use ConversationId for continuous conversations.
ChatGPTClientSettings settings = new ChatGPTClientSettings();
settings.OpenAIToken = File.ReadAllText("KEY.txt");
settings.ModelName = "gpt-4-vision-preview";
settings.ProxyUri = "http://127.0.0.1:1081";
var client = new ChatGPTClient(settings);
client.IsDebug = true;
var ChatImageModels = new List<ChatImageModel>()
{
ChatImageModel.CreateWithFile(@"C:\Users\aiqin\Pictures\20231221155547.png", ImageDetailMode.Low)
};
var systemPrompt = "";
var msg = await client.SendMessage("Please describe this image", systemPrompt: systemPrompt, images: ChatImageModels);
Console.WriteLine($"{msg.Response} {msg.ConversationId}, {msg.MessageId}");
msg = await client.SendMessage("Have you eaten today?", msg.ConversationId, msg.MessageId);
Console.WriteLine($"{msg.Response} {msg.ConversationId}, {msg.MessageId}");
Update
2.0.0 20231221
- Added support for sending images using the Vision model and pre-computing image tokens (local files only).
- Improved the token algorithm for messages to align with the official API.
- Added more default token count data for official website models and automatic conversion of '16k' in model names to maximum tokens.
- Considering the increasing number of tokens in models, introduced a method to support unlimited MaxResponseTokens and MaxPromptTokens. Setting them to 0 will remove the limit.
1.1.4 20230711
- Add support gpt-3.5-turbo-16k
1.1.3 20230508
- Removed the old token algorithm code and now supports netstandard2.0, now, the library can also be used with .NET Framework.
1.1.2 20230429
- Support for the GPT-4 model and correction of the maximum token count for 8k and 32k.
<details> <summary>Changelog for earlier versions.</summary>
1.1.0 20230320
- The initialization method of ChatGPTClient adds a request timeout setting and changes the default timeout time from 20 seconds to 60 seconds.
1.0.9 20230307
- Using TiktokenSharp to calculate token count, fixing the issue of inaccurate token calculation.
1.0.8 20230304
- token algorithm fix
1.0.6 20230303
- The token algorithm has been temporarily removed, which may cause exceptions when certain strings are combined. It will be restored after subsequent testing is completed.
1.0.5 20230303
- Add SendMessage parameters sendSystemType and sendSystemMessage to specify the insertion of system messages into the conversation.
1.0.3 20230302
- Add local token algorithm of gpt3, the algorithm is from js library gpt-3-encoder
</details>
This code base references node-chatgpt-api
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 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 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- IndexRange (>= 1.0.3)
- Newtonsoft.Json (>= 13.0.2)
- System.Drawing.Common (>= 8.0.0)
- TiktokenSharp (>= 1.1.4)
-
.NETStandard 2.1
- Newtonsoft.Json (>= 13.0.2)
- System.Drawing.Common (>= 8.0.0)
- TiktokenSharp (>= 1.1.4)
-
net7.0
- Newtonsoft.Json (>= 13.0.2)
- System.Drawing.Common (>= 8.0.0)
- TiktokenSharp (>= 1.1.4)
-
net8.0
- Newtonsoft.Json (>= 13.0.2)
- System.Drawing.Common (>= 8.0.0)
- TiktokenSharp (>= 1.1.4)
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 | |
---|---|---|---|
2.0.4 | 157 | 5/14/2024 | |
2.0.3 | 98 | 5/14/2024 | |
2.0.2 | 89 | 5/13/2024 | |
2.0.1 | 113 | 4/28/2024 | |
2.0.0 | 119 | 4/28/2024 | |
2.0.0-alpha.4 | 108 | 2/22/2024 | |
2.0.0-alpha.3 | 41 | 2/22/2024 | |
2.0.0-alpha.1 | 140 | 12/22/2023 | |
1.1.4 | 556 | 7/11/2023 | |
1.1.3 | 285 | 5/8/2023 | |
1.1.2 | 189 | 4/29/2023 | |
1.1.1 | 405 | 3/20/2023 | |
1.1.0 | 253 | 3/20/2023 | |
1.0.9 | 427 | 3/7/2023 | |
1.0.8 | 301 | 3/6/2023 | |
1.0.7 | 297 | 3/4/2023 | |
1.0.6 | 317 | 3/3/2023 | |
1.0.5 | 344 | 3/3/2023 | |
1.0.4 | 300 | 3/2/2023 | |
1.0.3 | 283 | 3/2/2023 | |
1.0.2 | 301 | 3/2/2023 | |
1.0.1 | 268 | 2/28/2023 | |
1.0.0 | 281 | 2/28/2023 |