SharpToken 1.0.24

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

// Install SharpToken as a Cake Tool
#tool nuget:?package=SharpToken&version=1.0.24

SharpToken

SharpToken is a C# library that serves as a port of the Python tiktoken library. It provides functionality for encoding and decoding tokens using GPT-based encodings. This library is built for .NET 6 and .NET Standard 2.1, making it compatible with a wide range of frameworks.

Installation

To install SharpToken, use the NuGet package manager:

Install-Package SharpToken

Or, if you prefer using the .NET CLI:

dotnet add package SharpToken

For more information, visit the NuGet package page.

Usage

To use SharpToken in your project, first import the library:

using SharpToken;

Next, create an instance of GptEncoding by specifying the desired encoding:

var encoding = GptEncoding.GetEncoding("cl100k_base");

You can then use the Encode method to encode a string:

var encoded = encoding.Encode("Hello, world!"); // Output: [9906, 11, 1917, 0]

And use the Decode method to decode the encoded tokens:

var decoded = encoding.Decode(encoded); // Output: "Hello, world!"

Supported Models

SharpToken currently supports the following models:

  • r50k_base
  • p50k_base
  • p50k_edit
  • cl100k_base

You can use any of these models when creating an instance of GptEncoding:

var r50kBaseEncoding = GptEncoding.GetEncoding("r50k_base");
var p50kBaseEncoding = GptEncoding.GetEncoding("p50k_base");
var p50kEditEncoding = GptEncoding.GetEncoding("p50k_edit");
var cl100kBaseEncoding = GptEncoding.GetEncoding("cl100k_base");

Understanding Encoded Values

When you encode a string using the Encode method, the returned value is a list of integers that represent tokens in the specified encoding. These tokens are a compact way of representing the input text and can be processed more efficiently by various algorithms.

For example, encoding the text "Hello world!" using the cl100k_base encoding might produce the following list of integers:

var encoded = cl100kBaseEncoding.Encode("Hello world!"); // Output: [9906, 1917, 0]

You can then use the Decode method to convert these tokenized integer values back into the original text:

var decoded = cl100kBaseEncoding.Decode(encoded); // Output: "Hello world!"

With SharpToken, you can seamlessly switch between different encodings to find the one that best suits your needs. Just remember to use the same encoding for both the Encode and Decode methods to ensure accurate results.

Contributions and Feedback

If you encounter any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request on the project's repository.

Hope you find SharpToken useful for your projects and welcome any feedback you may have.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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 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.
  • .NETStandard 2.1

    • No dependencies.
  • net6.0

    • No dependencies.

NuGet packages (12)

Showing the top 5 NuGet packages that depend on SharpToken:

Package Downloads
EachShow.AI

OpenAI, ChatGPT

AICentral

Package Description

Encamina.Enmarcha.SemanticKernel.Abstractions

Package Description

MyIA.SemanticKernel.Connectors.AI.MultiConnector

Extend your Semantic Kernel-powered apps with a fleet of specialized connectors, managed by a superior LLM as your fleet captain.

JGP.DotNetGPT

Adds models and clients for use with the ChatGPT API

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on SharpToken:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
microsoft/teams-ai
SDK focused on building AI based applications and extensions for Microsoft Teams.
aiqinxuancai/TiktokenSharp
Token calculation for OpenAI models, using `o200k_base` `cl100k_base` `p50k_base` encoding.
Version Downloads Last updated
2.0.3 2,112 5/17/2024
2.0.2 18,802 4/8/2024
2.0.1 14,699 3/26/2024
1.2.33 1,239 3/25/2024
1.2.17 78,993 2/19/2024
1.2.16 3,159 2/15/2024
1.2.15 23,800 2/5/2024
1.2.14 124,269 12/10/2023
1.2.13 142 12/10/2023
1.2.12 233,523 9/12/2023
1.2.10 6,659 9/7/2023
1.2.8 20,893 8/28/2023
1.2.7 2,925 8/23/2023
1.2.6 32,626 8/2/2023
1.2.5 1,748 8/1/2023
1.2.2 16,595 7/1/2023
1.2.1 168 7/1/2023
1.1.3 193 7/1/2023
1.0.30 2,384 6/26/2023
1.0.29 786 6/25/2023
1.0.28 64,464 4/25/2023
1.0.27 2,130 4/20/2023
1.0.26 245 4/18/2023
1.0.25 15,082 3/28/2023
1.0.24 241 3/28/2023
1.0.23 250 3/28/2023
1.0.22 247 3/28/2023
1.0.21 242 3/28/2023
1.0.20 233 3/28/2023
1.0.19 268 3/28/2023
1.0.18 266 3/28/2023
1.0.17 268 3/28/2023
1.0.16 254 3/28/2023
1.0.12 247 3/28/2023
1.0.11 249 3/28/2023
1.0.2 4,769 7/1/2023