ChatGPT.Net 1.1.2

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

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

Update 30-DEC-2022

We have introduced a new method that utilizes a socket for faster performance without the need for a browser anymore. [NodeJS Version][Python Version]

For support join [Discord]

ChatGPT.Net - Unofficial API client for ChatGPT [Discord]

Nuget Package GitHub issues GitHub forks GitHub stars GitHub license Discord server

The ChatGPT.Net Unofficial .Net API for ChatGPT is a C# library that allows developers to access ChatGPT, a chat-based language model. With this API, developers can send queries to ChatGPT and receive responses in real-time, making it easy to integrate ChatGPT into their own applications.

using ChatGPT.Net;

var chatGpt = new ChatGpt();
await chatGpt.WaitForReady();
var chatGptClient = await chatGpt.CreateClient(new ChatGptClientConfig
{
    SessionToken = "eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2......."
});
var response = await chatGptClient.Ask("What is the weather like today?");
Console.WriteLine(response);

Features

  • New method without using a browser.
  • Automatic login to ChatGPT using SessionToken (or Microsoft accounts when BrowserMode is true).
  • Bypass of Cloudflare protection and fake rate limit protection.
  • Persistent cookie storage to allow for application restart without requiring login [BrowserMode].
  • Functionality to reset conversations or create multiple conversations simultaneously.
  • Automatic refresh of ChatGPT access token.
  • Automatic refresh of Cloudflare cf_clearance cookie for uninterrupted [BrowserMode].
  • Efficient use of server resources through the use of a single browser window/tab for managing and using multiple accounts in the same time [BrowserMode].
  • Cache system enabled by default, with cached data saved to cache.json to reduce requests to ChatGPT endpoint and reduce rate limiting.
  • Ability to delete all conversations created by the user's account or a specific conversation by its ID [BrowserMode].
  • Automatic deletion of all conversations at a specified interval [BrowserMode].
  • Automatic deletion of inactive conversations [BrowserMode].
[BrowserMode] = This feature is only available in the old browser method!

How the new method working without a browser?

The new method operates without a browser by utilizing a server that has implemented bypass methods to function as a proxy. The library sends requests to the server, which then redirects the request to ChatGPT while bypassing Cloudflare and other bot detection measures. The server then returns the ChatGPT response, ensuring that the method remains effective even if ChatGPT implements changes to prevent bot usage. Our servers are continuously updated to maintain their bypass capabilities.

To-Do List:

  • Implement login with Google and email
  • Allow the addition of proxies

Getting Started

To install ChatGPT.Net, run the following command in the Package Manager Console:

Install-Package ChatGPT.Net

Alternatively, you can install it using the .NET Core command-line interface:

dotnet add package ChatGPT.Net

Usage

Here is a sample code showing how to use ChatGPT.Net:

using ChatGPT.Net;

var chatGpt = new ChatGpt(new ChatGptConfig  
{  
  Invisible = true  
});
await chatGpt.WaitForReady();
var chatGptClient = await chatGpt.CreateClient(new ChatGptClientConfig
{
    SessionToken = "eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2......."
});
var conversationId = "a-unique-string-id";
var response = await chatGptClient.Ask("What is the weather like today?", conversationId);
Console.WriteLine(response);

await chatGptClient.ResetConversation(conversationId);


var chatGptClient2 = await chatGpt.CreateClient(new ChatGptClientConfig
{
    SessionToken = "eyJhbGciOiJkaXIiLCJlbmMiOiJBMjU2......."
});
var response2 = await chatGptClient2 .Ask("What is the weather like today?");
Console.WriteLine(response2);

The code above demonstrates how to use the ChatGPT.Net library to create and interact with multiple ChatGPT clients and conversations simultaneously.

The ChatGpt class is used to initialize the ChatGPT library and wait for it to be ready. The CreateClient method is then called to create a new client using a specified configuration.

Once the client is created, the Ask method can be called to send a message to ChatGPT and receive a response. The conversationId parameter is optional and can be used to specify the conversation that the message should be sent to. If no conversation ID is provided, a default conversation ID will be used.

The ResetConversation method can be used to reset a specific conversation associated with a particular client. This allows the client to be used to start a new conversation with ChatGPT as if it were the first time the client was used.

Multiple ChatGPT clients can be created and used to manage multiple accounts simultaneously. It is important to note that the SessionToken in the configuration must be a valid token in order to successfully authenticate and use the ChatGPT service.

Documentation for the ChatGptConfig class:

Properties

UseCache (bool)

If true, the client will check for a cache of responses before generating a new one. If false, the client will always generate a new response.

SaveCache (bool)

If true, the client will save responses to a cache file (cache.json) in the working directory after generating them. If false, the client will not save responses to the cache.

Invisible (bool)

If true, the client 's Chrome browser window will start out of screen to hide it from view. If false, the client 's Chrome browser window will be visible.

Incognito (bool)

If true, the browser will start in incognito mode. If false, the browser will start as normal.

BrowserMode (bool)

If true, it will switch back to the old browser method.

Documentation for the ChatGptClientConfig class:

Properties

AutoDeleteConversations (bool)

If true, the client will automatically delete all conversations automatically every AutoDeleteConversationsInterval milliseconds.

AutoDeleteConversationsInterval (int)

This property specifies the interval (in milliseconds) which the client will delete all conversations automatically. This property is only used if AutoDeleteConversations is true. The default value is 300000 (5 minutes).

DeleteConversationIfInactiveFor (int)

This property specifies the amount of time (in milliseconds) that a conversation must be inactive before it is deleted. This property is only used if AutoDeleteConversations is true. If the value is set to -1, the client will not delete any conversations. The default value is -1.

SessionToken (string)

This property specifies the session token for the ChatGPT account.

Account (Account)

This property specifies the account that the ChatGPT client.

Note [BrowserMode only]

you need Xvfb to run it in linux server "without display", use the commands below to insstall it and configure a virtual display (Ubuntu Server)

  1. install using this command
sudo apt-get install xvfb
  1. Create a virtual display:
Xvfb :99 -screen 0 1280x1024x24 &
  1. Run the project with this command:
export DISPLAY=:99; ./ChatGPT.Net'

Troubleshooting [BrowserMode only]

If you run your project and it freezes without the headless browser opening, it is likely that you have not installed Chromium and other WebKit tools required to run the browser. These tools are used by Playwright to control the headless browser, and must be installed in order to properly run the project.

To fix this issue, follow these steps:

  1. Ensure that you have PowerShell 7+ installed on your machine. If you do not have PowerShell 7+ installed, you can download it here.

  2. After building your project, open PowerShell 7 in your project directory and run the following command:

pwsh bin/Debug/netX/playwright.ps1 install

*Note: "netX" should be replaced with your specific .Net version (e.g. net6.0).

This command will install all necessary browsers and tools for Playwright to properly control the headless browser. Please allow time for the installation to complete.

Projects

  1. ChatGPT Unofficial free API without Authentication Click Here
  2. Talk with ChatGPT with +130 Languages [Website] Click Here
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 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. 
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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 26,763 4/1/2023
1.1.5 4,560 1/28/2023
1.1.4 1,441 1/21/2023
1.1.3 1,376 1/16/2023
1.1.2 1,794 1/7/2023
1.1.1 1,088 1/6/2023
1.1.0 1,195 12/30/2022
1.0.3 1,148 12/21/2022
1.0.2 1,050 12/21/2022
1.0.1 1,095 12/21/2022
1.0.0 1,243 12/19/2022