SharpToken 1.2.1
See the version list below for details.
dotnet add package SharpToken --version 1.2.1
NuGet\Install-Package SharpToken -Version 1.2.1
<PackageReference Include="SharpToken" Version="1.2.1" />
paket add SharpToken --version 1.2.1
#r "nuget: SharpToken, 1.2.1"
// Install SharpToken as a Cake Addin #addin nuget:?package=SharpToken&version=1.2.1 // Install SharpToken as a Cake Tool #tool nuget:?package=SharpToken&version=1.2.1
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.0, 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 or model:
// Get encoding by encoding name
var encoding = GptEncoding.GetEncoding("cl100k_base");
// Get encoding by model name
var encoding = GptEncoding.GetEncodingForModel("gpt-4");
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.
Advanced usage
Custom Allowed Sets
SharpToken allows you to specify custom sets of allowed special tokens when encoding text. To do this, pass a HashSet<string> containing the allowed special tokens as a parameter to the Encode method:
const string encodingName = "cl100k_base";
const string inputText = "Some Text <|endofprompt|>";
var allowedSpecialTokens = new HashSet<string> { "<|endofprompt|>" };
var encoding = GptEncoding.GetEncoding(encodingName);
var encoded = encoding.Encode(inputText, allowedSpecialTokens);
var expectedEncoded = new List<int> { 8538, 2991, 220, 100276 };
Assert.Equal(expectedEncoded, encoded);
Custom Disallowed Sets
Similarly, you can specify custom sets of disallowed special tokens when encoding text. Pass a HashSet<string>
containing the disallowed special tokens as a parameter to the Encode method:
const string encodingName = "cl100k_base";
const string inputText = "Some Text";
var encoding = GptEncoding.GetEncoding(encodingName);
void TestAction()
{
encoding.Encode(inputText, disallowedSpecial: new HashSet<string> { "Some" });
}
Assert.Throws<ArgumentException>(TestAction);
In this example, an ArgumentException
is thrown because the input text contains a disallowed special token
Testing and Validation
SharpToken includes a set of test cases in the TestPlans.txt file to ensure its compatibility with the Python tiktoken library. These test cases validate the functionality and behavior of SharpToken, providing a reliable reference for developers. Running the unit tests and verifying the test cases helps maintain consistency between the C# SharpToken library and the original Python implementation.
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 | Versions 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 | 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 was computed. |
.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. |
-
.NETStandard 2.0
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages (17)
Showing the top 5 NuGet packages that depend on SharpToken:
Package | Downloads |
---|---|
EachShow.AI
OpenAI, ChatGPT |
|
Encamina.Enmarcha.SemanticKernel.Abstractions
Package Description |
|
AICentral
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. |
|
Musoq.DataSources.OpenAI
Package Description |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on SharpToken:
Repository | Stars |
---|---|
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
AIDotNet/Thor
Thor(雷神托尔) 是一款强大的人工智能模型管理工具,其主要目的是为了实现多种AI模型的统一管理和使用。通过Thor(雷神托尔),用户可以轻松地管理和使用众多AI模型,而且Thor(雷神托尔)兼容OpenAI的接口格式,使得使用更加方便。
|
|
aiqinxuancai/TiktokenSharp
Token calculation for OpenAI models, using `o200k_base` `cl100k_base` `p50k_base` encoding.
|
|
Azure/Vector-Search-AI-Assistant-MongoDBvCore
Microsoft Official Build & Modernize AI Apps reference solution and content for implementing RAG Pattern solutions using vector search with Azure Cosmos DB MongoDB vCore with an AI assistant user experience.
|
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 211,918 | 5/17/2024 |
2.0.2 | 53,248 | 4/8/2024 |
2.0.1 | 33,664 | 3/26/2024 |
1.2.33 | 2,650 | 3/25/2024 |
1.2.17 | 107,747 | 2/19/2024 |
1.2.16 | 9,284 | 2/15/2024 |
1.2.15 | 29,265 | 2/5/2024 |
1.2.14 | 202,969 | 12/10/2023 |
1.2.13 | 185 | 12/10/2023 |
1.2.12 | 278,081 | 9/12/2023 |
1.2.10 | 6,893 | 9/7/2023 |
1.2.8 | 30,766 | 8/28/2023 |
1.2.7 | 4,112 | 8/23/2023 |
1.2.6 | 36,763 | 8/2/2023 |
1.2.5 | 2,047 | 8/1/2023 |
1.2.2 | 26,201 | 7/1/2023 |
1.2.1 | 197 | 7/1/2023 |
1.1.3 | 213 | 7/1/2023 |
1.0.30 | 3,905 | 6/26/2023 |
1.0.29 | 810 | 6/25/2023 |
1.0.28 | 73,194 | 4/25/2023 |
1.0.27 | 2,273 | 4/20/2023 |
1.0.26 | 272 | 4/18/2023 |
1.0.25 | 16,461 | 3/28/2023 |
1.0.24 | 271 | 3/28/2023 |
1.0.23 | 269 | 3/28/2023 |
1.0.22 | 275 | 3/28/2023 |
1.0.21 | 271 | 3/28/2023 |
1.0.20 | 268 | 3/28/2023 |
1.0.19 | 301 | 3/28/2023 |
1.0.18 | 302 | 3/28/2023 |
1.0.17 | 292 | 3/28/2023 |
1.0.16 | 278 | 3/28/2023 |
1.0.12 | 280 | 3/28/2023 |
1.0.11 | 278 | 3/28/2023 |
1.0.2 | 5,544 | 7/1/2023 |