mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 21:53:36 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Verify (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
namespace AIStudio.Models;
|
|
|
|
/// <summary>
|
|
/// What sort of tokenizer a model uses, and therefore how its name would have to be resolved.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// A bare name would be a lie. The runtime loads Hugging Face tokenizer.json files, OpenAI names
|
|
/// tiktoken encodings such as o200k_base, and Anthropic and Google publish no tokenizer at all but
|
|
/// offer an API which counts for you. Without the kind next to the name, somebody would eventually
|
|
/// try to fetch "o200k_base" from a model hub.
|
|
/// </remarks>
|
|
public enum TokenizerKind
|
|
{
|
|
/// <summary>
|
|
/// We have no statement about this model's tokenizer, so the built-in default one is used.
|
|
/// </summary>
|
|
UNKNOWN,
|
|
|
|
/// <summary>
|
|
/// A repository on the Hugging Face hub which ships a tokenizer.json.
|
|
/// </summary>
|
|
HUGGING_FACE,
|
|
|
|
/// <summary>
|
|
/// A tiktoken encoding, named the way OpenAI names it.
|
|
/// </summary>
|
|
TIKTOKEN,
|
|
|
|
/// <summary>
|
|
/// The vendor counts tokens through an API of its own instead of publishing a tokenizer.
|
|
/// </summary>
|
|
PROVIDER_API,
|
|
|
|
/// <summary>
|
|
/// The model has no tokenizer to speak of, such as an image or audio model.
|
|
/// </summary>
|
|
NONE,
|
|
} |