ChatGPTSharp 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package ChatGPTSharp --version 1.1.2
NuGet\Install-Package ChatGPTSharp -Version 1.1.2
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="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ChatGPTSharp --version 1.1.2
#r "nuget: ChatGPTSharp, 1.1.2"
#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=1.1.2

// Install ChatGPTSharp as a Cake Tool
#tool nuget:?package=ChatGPTSharp&version=1.1.2

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-3.5-turbo, and text-davinci-003.

中文

Update

1.1.2 20230429

  • Support for the GPT-4 model and correction of the maximum token count for 8k and 32k.

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.

<details> <summary>Changelog for earlier versions.</summary>

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>

Usage

var client = new ChatGPTClient(File.ReadAllText("KEY.txt"), "gpt-3.5-turbo");
var msg = await client.SendMessage("Hello, My name is Sin");
var msgLast = await client.SendMessage("My name is?", msg.ConversationId, msg.MessageId);
Console.WriteLine($"{msgLast.Response}");

Advanced usage

Use prompt to constrain ChatGPT's behavior.

var client = new ChatGPTClient(File.ReadAllText("KEY.txt"), "gpt-3.5-turbo");
var sysMsg = "You will review group messages as a group administrator, and I will inform you in the format of {[who][said what]} to reply with a number from 0 to 10 to indicate the severity of political content in their speech, such as "0". No need to reply with any other unnecessary content, such as no political content or inability to understand the defense. Please note that group members may be cunning and use pinyin, initials, homophones, abbreviations, etc., to describe things to avoid scrutiny.";

var msg = await client.SendMessage("{[MrWang][Can Trump be president again?]}", sendSystemType: Model.SendSystemType.Custom, sendSystemMessage: sysMsg);

This code base references node-chatgpt-api

Product 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 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on ChatGPTSharp:

Repository Stars
maker-community/ElectronBot.DotNet
一个为ElectronBot机器人和瀚文键盘(HelloWorldKeyboard)开发的上位机软件(包含机器人USB操作SDK和瀚文键盘HID操作SDK),采用Windows App SDK框架编写界面。 A host computer software developed for ElectronBot robots (including robot USB operation SDK), using the Windows App SDK framework to write UI.
Version Downloads Last updated
2.0.4 59 5/14/2024
2.0.3 66 5/14/2024
2.0.2 61 5/13/2024
2.0.1 86 4/28/2024
2.0.0 89 4/28/2024
2.0.0-alpha.4 97 2/22/2024
2.0.0-alpha.3 31 2/22/2024
2.0.0-alpha.1 129 12/22/2023
1.1.4 513 7/11/2023
1.1.3 263 5/8/2023
1.1.2 165 4/29/2023
1.1.1 370 3/20/2023
1.1.0 227 3/20/2023
1.0.9 391 3/7/2023
1.0.8 275 3/6/2023
1.0.7 273 3/4/2023
1.0.6 294 3/3/2023
1.0.5 321 3/3/2023
1.0.4 278 3/2/2023
1.0.3 259 3/2/2023
1.0.2 265 3/2/2023
1.0.1 246 2/28/2023
1.0.0 259 2/28/2023