Skip to main content

tiktoken is a fast BPE tokeniser for use with OpenAI's models

Project description

⏳ tiktoken

tiktoken is a fast BPE tokeniser for use with OpenAI's models.

import tiktoken
enc = tiktoken.get_encoding("o200k_base")
assert enc.decode(enc.encode("hello world")) == "hello world"

# To get the tokeniser corresponding to a specific model in the OpenAI API:
enc = tiktoken.encoding_for_model("gpt-4o")

The open source version of tiktoken can be installed from PyPI:

pip install tiktoken

The tokeniser API is documented in tiktoken/core.py.

Example code using tiktoken can be found in the OpenAI Cookbook.

Performance

tiktoken is between 3-6x faster than a comparable open source tokeniser:

image

Performance measured on 1GB of text using the GPT-2 tokeniser, using GPT2TokenizerFast from tokenizers==0.13.2, transformers==4.24.0 and tiktoken==0.2.0.

Getting help

Please post questions in the issue tracker.

If you work at OpenAI, make sure to check the internal documentation or feel free to contact @shantanu.

What is BPE anyway?

Language models don't see text like you and I, instead they see a sequence of numbers (known as tokens). Byte pair encoding (BPE) is a way of converting text into tokens. It has a couple desirable properties:

  1. It's reversible and lossless, so you can convert tokens back into the original text
  2. It works on arbitrary text, even text that is not in the tokeniser's training data
  3. It compresses the text: the token sequence is shorter than the bytes corresponding to the original text. On average, in practice, each token corresponds to about 4 bytes.
  4. It attempts to let the model see common subwords. For instance, "ing" is a common subword in English, so BPE encodings will often split "encoding" into tokens like "encod" and "ing" (instead of e.g. "enc" and "oding"). Because the model will then see the "ing" token again and again in different contexts, it helps models generalise and better understand grammar.

tiktoken contains an educational submodule that is friendlier if you want to learn more about the details of BPE, including code that helps visualise the BPE procedure:

from tiktoken._educational import *

# Train a BPE tokeniser on a small amount of text
enc = train_simple_encoding()

# Visualise how the GPT-4 encoder encodes text
enc = SimpleBytePairEncoding.from_tiktoken("cl100k_base")
enc.encode("hello world aaaaaaaaaaaa")

Extending tiktoken

You may wish to extend tiktoken to support new encodings. There are two ways to do this.

Create your Encoding object exactly the way you want and simply pass it around.

cl100k_base = tiktoken.get_encoding("cl100k_base")

# In production, load the arguments directly instead of accessing private attributes
# See openai_public.py for examples of arguments for specific encodings
enc = tiktoken.Encoding(
    # If you're changing the set of special tokens, make sure to use a different name
    # It should be clear from the name what behaviour to expect.
    name="cl100k_im",
    pat_str=cl100k_base._pat_str,
    mergeable_ranks=cl100k_base._mergeable_ranks,
    special_tokens={
        **cl100k_base._special_tokens,
        "<|im_start|>": 100264,
        "<|im_end|>": 100265,
    }
)

Use the tiktoken_ext plugin mechanism to register your Encoding objects with tiktoken.

This is only useful if you need tiktoken.get_encoding to find your encoding, otherwise prefer option 1.

To do this, you'll need to create a namespace package under tiktoken_ext.

Layout your project like this, making sure to omit the tiktoken_ext/__init__.py file:

my_tiktoken_extension
├── tiktoken_ext
│   └── my_encodings.py
└── setup.py

my_encodings.py should be a module that contains a variable named ENCODING_CONSTRUCTORS. This is a dictionary from an encoding name to a function that takes no arguments and returns arguments that can be passed to tiktoken.Encoding to construct that encoding. For an example, see tiktoken_ext/openai_public.py. For precise details, see tiktoken/registry.py.

Your setup.py should look something like this:

from setuptools import setup, find_namespace_packages

setup(
    name="my_tiktoken_extension",
    packages=find_namespace_packages(include=['tiktoken_ext*']),
    install_requires=["tiktoken"],
    ...
)

Then simply pip install ./my_tiktoken_extension and you should be able to use your custom encodings! Make sure not to use an editable install.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tiktoken-0.13.0.tar.gz (39.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

tiktoken-0.13.0-cp314-cp314t-win_amd64.whl (918.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

tiktoken-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp314-cp314t-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp314-cp314t-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl (983.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tiktoken-0.13.0-cp314-cp314t-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

tiktoken-0.13.0-cp314-cp314-win_amd64.whl (918.7 kB view details)

Uploaded CPython 3.14Windows x86-64

tiktoken-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp314-cp314-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp314-cp314-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp314-cp314-macosx_11_0_arm64.whl (983.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tiktoken-0.13.0-cp314-cp314-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

tiktoken-0.13.0-cp313-cp313t-win_amd64.whl (873.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl (982.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

tiktoken-0.13.0-cp313-cp313t-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

tiktoken-0.13.0-cp313-cp313-win_amd64.whl (874.8 kB view details)

Uploaded CPython 3.13Windows x86-64

tiktoken-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (983.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tiktoken-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

tiktoken-0.13.0-cp312-cp312-win_amd64.whl (874.7 kB view details)

Uploaded CPython 3.12Windows x86-64

tiktoken-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (983.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tiktoken-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

tiktoken-0.13.0-cp311-cp311-win_amd64.whl (876.5 kB view details)

Uploaded CPython 3.11Windows x86-64

tiktoken-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (984.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tiktoken-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tiktoken-0.13.0-cp310-cp310-win_amd64.whl (876.6 kB view details)

Uploaded CPython 3.10Windows x86-64

tiktoken-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp310-cp310-macosx_11_0_arm64.whl (984.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tiktoken-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

tiktoken-0.13.0-cp39-cp39-win_amd64.whl (880.0 kB view details)

Uploaded CPython 3.9Windows x86-64

tiktoken-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

tiktoken-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

tiktoken-0.13.0-cp39-cp39-manylinux_2_28_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

tiktoken-0.13.0-cp39-cp39-manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

tiktoken-0.13.0-cp39-cp39-macosx_11_0_arm64.whl (987.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

tiktoken-0.13.0-cp39-cp39-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file tiktoken-0.13.0.tar.gz.

File metadata

  • Download URL: tiktoken-0.13.0.tar.gz
  • Upload date:
  • Size: 39.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0.tar.gz
Algorithm Hash digest
SHA256 c9435714c3a84c2319499de9a300c0e604449dd0799ff246458b3bb6a7f433c1
MD5 9dc88987927dec22279897faa3bb4630
BLAKE2b-256 e4e55f3cb2159769d0f4324c0e9e87f9de3c4b1cd45848a96b2eb3566ad5ca77

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 918.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 85b78cc3a2c3d48723ca751fa981f1fedccd54194ca0471b957364353a898b07
MD5 367bca163d9a95f7516a30b2975ebbfa
BLAKE2b-256 165bf2aa703a4fc5d2dff73460a7d46cc2f3f44aa0f3dd8eeb20d2a0ecf68862

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cb65b60b9408563676d874a3a4ee573370066f0dc4e29d84e82e989c6517424
MD5 d0684617c789017819c878659a6e2081
BLAKE2b-256 2f68a18b4f307086954fdae32714cb4f85562e34f9d34ab206e61f1816aa6018

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6644c9c2b5cf3916f5a3641d7d12fdb3f006a7b3d9ff6acdaec44e29ab1ff91e
MD5 96cf3aca87f70727f9a892184941c8dd
BLAKE2b-256 96d9dfd086aa2d918c563a140720e0ce296cada1634efd2783d5cf51e05f984e

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 493af3aa28a4aaf2e3d2600a2ee717252c9bf5ab38fff94eb5a02db5ab77e5ad
MD5 2c5a6d1629517232580b58cf2fecc217
BLAKE2b-256 64391494321ed323ce7a14d88e3cd6cb9058625977df1c6961ddc492bd10a9f3

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b920b35805cd64585a37c3dc7ce65fba4d2d36016be01e1d7942482ca29093a
MD5 5031bbb76ac68a8d4003ad2723f8687b
BLAKE2b-256 49b72ab43f62788a9266187a9bfc1d3af99ad83e5eaa25fbef168a69cd5ad14f

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e2f67d27c9626cdd25fe33d9313c5cdb3d8d82da646b68d6eb8e7e9c20e6448
MD5 0d851c63e5b18f1e0e3e32c5cde371d0
BLAKE2b-256 37d024d8a890c14f432a05cea669c17bebeaa99f96a7c79523b590f564246411

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 472527e9132952f2fbf77cd290658bacf003d4d5a3fabc18e5fbd407cbae4d9b
MD5 f30d246aa96f3d503f828058973c8f36
BLAKE2b-256 c182a7fc44582bc32ab00de988a2299bf77c077f59068b233109e34b7d6ca7e6

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 918.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 115c4f26ffa11caac8b54eea35c2ad38c612c20a48d35dd15d70a02ac6f51f58
MD5 a03cba63e066505364ddec83ee56239b
BLAKE2b-256 dd3dfef7e06e3b33e7538db0ced734cf9fe23b6832d2ac4990c119c377aec55e

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb99cb5127449f58d0a2d5f5ccfb390d8dbdfd919c221246caaee29d8725ed51
MD5 1043b987b0b36b81e0a14df3f967b6a3
BLAKE2b-256 cdb6993ff1ded3958215fd341a847b8e5ffeb5de473f435296870d314fc91ac4

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d108bc2d470fc53c8ecd24f2c0fd2b5f98c33e87cdb6aa2e9b8c5dced703d273
MD5 77718497b7c19dbc3cfcd5893206e29e
BLAKE2b-256 f4b8585032b4384b2f7dcdaddcb52865c83a701a420d09e3c2b4a2be1c450c57

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ba5fd62507a932d1241346179e3b39bc7bf7408f03c272652d93b3bedf5db24
MD5 005234f7994a87db91dde6a58ffd6685
BLAKE2b-256 1bac6a5dddd1d0a6018ecb389bd0353e6b4a515eb4d2286611bd0ace1937b9e1

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32e0c12305105002c047b3bb1070b0dd9a73b0cb3b2856a8972b810e7a4f5881
MD5 c01dff71be057c66ee1ebe4b449b90a6
BLAKE2b-256 94b0c8ae9aff00d625c50659b4513e707a0462c4bf5d4d6cc1b802103225c02e

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca8b310bd93b3772cb1b7922d915446864860f562bdfe4825c63a0aed3fb28cd
MD5 849809290b75337802f8eb59e653b769
BLAKE2b-256 d9775ec6e6bc5b30bed6d93f7f2162d8f6b32437b3ba27cb527cfe004f6109c9

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 eaaaef47c2406277181d2086484c317bf7fc433e2d5d03ff94f56b0dcec87471
MD5 e6ec4b8593f75d2d294c8cc61bab15a3
BLAKE2b-256 8c930dd6adca026a616c3a92974566b43381eea4b475ce1f36c062b8271a9ac5

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 873.8 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 6c43a675ca14f6f2749ba7f12075d37456015a24b859f2517b9beb4ef30807ec
MD5 b1a3b270f021ab173960b9a483700d0e
BLAKE2b-256 b74dbc07d1f1635d4897a202acc0ae11c2886eaa7325c359ba4741b47bf8e225

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 165cf1820ea4a354985c2490a5205d4cc74661c934aca79dd0368232fff94e0f
MD5 2916222d2571911468f504857dca32d0
BLAKE2b-256 dbc6d393e3185a276505182f7abd93fe714f3c444a2be9180798fa052347504e

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e28157350f7ebf35008dd8e9e0fdb621f976e4230c881099c85e8cf07eaa50e2
MD5 6c434d15961706e5d0d434150a93b11c
BLAKE2b-256 8c46002b68de6827091d5ae90b048f326e8aad8d953520950e5ce1508879414f

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51384448aa508e4df84c0f7c1dc3211c7f7b8096325660ee5fc82f3e11b381ce
MD5 fa9105041f931c380acf136f8e1c130e
BLAKE2b-256 46e393825eaf5a4a504795b787e5d5dea07fbeb3dabf97aa7b450be8bde59c89

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7de52e3f566d19b3b11bd37eea552c6c305ad74081f736882bd44d148ed4c48d
MD5 cc903451b227259121f8e6486d4a53f3
BLAKE2b-256 7274ca1541b053e7648254d2e4b42a253e1bb4359f2c91a0a8d49228c794e1a0

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43cee3e5400573b2046fbf092cc7a5bc30164f9e4c95ce20714da929df48737a
MD5 e9f45214506be01f4afa997a2225c871
BLAKE2b-256 14e9742e9aec30f59b9f161f7ff7cd072e02ea836c9e1c0854a8076dfcd40d5c

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6eb4a5bfbc6426938026b1a334e898ac53541360d62d8c689870160cc80abd67
MD5 28cdd2dbaba0b4a0c91f9471eab38858
BLAKE2b-256 d607acb5992c3772b5a36284f742cfb7a5895aa4471d1848ac31464ad50d7fdf

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 874.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b1615f0ff71953d19729ceb18865429c185b0a23c5353f1bbca34a394bf60f7
MD5 1e4f13fc9f28a376ca5f6f685a2b7c9d
BLAKE2b-256 42a6c1936d16055436cb32e6c6128d68629622e00f4768562f55653752d34768

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75ab9bc99fa020a4c283424590ecd7f3afd70c1c281cb3fa3192a6c3af9f9615
MD5 2aa97429a6c57760c32ee46291082d03
BLAKE2b-256 0d9c470a05f3b1caf038f44880e334d47ab674e0c80d514c66b375d14d5afa10

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 975cbd78d085d75d26b59660e262736dcaed1e35f8f142cd6291025c01d25486
MD5 25aef7964d0cfae45bcef19c0c018401
BLAKE2b-256 4eb96de04ebdf904edfaad87788011b3735087a0c9ea671b9027e1e4e965e8c8

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e6358911cab4adee6712da27d65573496a4f68cf8a2b5fca6a4ad10fc5748cf
MD5 ca8d5b49f973e21c5ec759c5e891ff89
BLAKE2b-256 86f5bab735d2c72ea55404b295d02d092644eb5f7cc6205e34d35eb9abfb9ab2

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 125bc05005e747f993a83dc67934249932d6e4209854452cd4c0b1d53fba3ba2
MD5 ed3f7976725e0d182f0ca2abcee3c148
BLAKE2b-256 ef8b96cc178cc584e65d363134500f297790b06cd48cdeb1e8fcf7bbe60f4715

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fe806a50664e83a6ffd56cbd1e4f5dcc6cd32a3e7538f70dc38b1a271384545
MD5 f6e254d3aa50c27ed21e77c7079d3c2a
BLAKE2b-256 5361c68e123b6d753e3fc2751e9b18e732c9d8bf1e1926762e736eee935d931c

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5df5d1507bd245f1ccad4a074698240021239e455eb0bb4ced4e3d7181872154
MD5 1f1f62fa725ede18fbf8cabe065dcc49
BLAKE2b-256 9c83b096c859c2a47c11731bf2f5885f4028b809dfe2396582883eed9cae372f

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 874.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f2d16e7a7c783ad81f36e457d046d1f1c8af70b22aec8a13238efe531977c41
MD5 fe583871f55da2664026de4198d68114
BLAKE2b-256 aa9028d7f154888610aa9237e541986beb62b479df29d193a5a0617dbb1514d0

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95097e4f89b06403976e498abf61a0ee73a7497e73fb599cb211d8197a054d91
MD5 f4d3f5f21c01ac91c1a5b2db8baf2acd
BLAKE2b-256 a1d01f8578c45b2f24759b46f0b50d31878c63c73e6bf0f2227e10ec5c5408dc

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c397ddda233208345b01bd30f2fca79ff730e55731d0108a603f9bc57f6af3b
MD5 d6ed77f2d081bb69d0e70c1b539828d5
BLAKE2b-256 eedc9dafec002c2d4424378563cf4cf5c7fb93631d2a55013c8b87554ee4012c

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a116178fa7e1b4065bff05214360373a65cac22f965be7b3f73d00a0dbfe7649
MD5 0eb5989737cf1f89e5f1b1b2a9b19412
BLAKE2b-256 34de2ca96b07a82d972b74fe4b46de055b79c904e45c7eab699354a0bfa697dc

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f277ebea5edd7b8bf03c6f9431e1d67d517530115572b2dc1d465326e8f88c7
MD5 3db986fab5d38628570db157b1792998
BLAKE2b-256 74ed6bb8d05b9f731f749fee5c6f5ca63e981143c826a5985877330507bd13b7

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d9980f11429ed2d737c463bb1fb78cf330caa026adf002f714aced7849a687b
MD5 9beae472a682b1c915bf31b896753885
BLAKE2b-256 3618d4ac9d20956cdebca04841316660ed584c2fecdc2b81722a28bc7ad3b1e4

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32ac870a806cfb260a02d0cb70426aef02e038297f8ad50df5040bb5af360791
MD5 0adfe41747081b51e452316d35acab95
BLAKE2b-256 858e144bde4e01df66b34bb865557c7cd754ed08b036217ebd79c9db5e9048a9

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 876.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc1c44cd37b43fc46bae593129164f4f281e82ea116b57a85aa81bda57eafc94
MD5 5a1ef5c0f20af96f8b3cc089e9b0ff79
BLAKE2b-256 7e25a10efd564402d82c2ff50d12057353ace447aa8007deceaa48641f63d35c

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d48843bee149630eb735a99e1f4a85b47308d21868ea63163f6e87768d3cfed
MD5 f5f15f9b1694a6f52af80d3b6eb133dc
BLAKE2b-256 9d03cd0cba295522b91eb55c6b2704f1df895f8226cfe60ab10d4d51d0cc9e69

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 303f7d91b4fce3baddbcde05c139091d4caa5026ac7214c1dc7ff7a71ee429ff
MD5 8a5f14a2daa128dcbd287e287c89e6eb
BLAKE2b-256 03c4ccee1ecccca107e9a16efcecdeeb964c325305038554d466ece65b42338f

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36217497eaffc158607a3b26f065300db2aefd43b115263f3b9688ce38146173
MD5 55d943f65f67d906e5c147120c7ff143
BLAKE2b-256 f939fe42ad00de01a8c4a49ad8649a2c8a316835a9cad5961b11d21eac0020a5

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 059c8ecf554eb5b41e6e054ba467b871b03277d267dee7244380aca4359747d4
MD5 241636f7e2562ab41996bfcb82c7d25e
BLAKE2b-256 4ee4fceae98015fab47fcd49b8bd7f46145bcd187a47e0add1e5378ed67ef980

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91c180fe255bd5a86d8316210d2833a1d4d33d026cd86a67812f4773743c8d26
MD5 7e78dd4efba0c09ffce3a8884928a807
BLAKE2b-256 759110b9c7076bc02c246c853201fdbbe300a4b8c5ed7b84c25f7403f4e32655

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bfe1849caa65d1e1d9871817170ec497bbb7984e182012e1bdce72f66608cdb
MD5 ec7f80b7ebe868eebaa537f8d28d1320
BLAKE2b-256 1a4c1bc81f4cd53e827c4ee67ca951b5935724716049452d8dfa09b8b82372bb

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 876.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44733b99bfd72b590cd0936b1c01b3b4dd73122db2d544bc1ceeb18a7678c910
MD5 bbf6b0c1107d1189ca27ff2b00d357b7
BLAKE2b-256 c31627e9f7e0ed76e501cfefc9fb2112df4c7bf70ca96945b15ecb7615aac860

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2937ad042d49d50eac6e1ba07c5661d4bd3942a5b1e0c0d08475c4df83676e1
MD5 a85197ac294f9043e4ecb62f4f378811
BLAKE2b-256 cc93bab868277d475dc6d2aaacd34cdd239c282f4908dcc8702e0a3311a8e032

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ab10f4a21c2999846940113f6dbd72e0fa06a24119feddd74cc47e85818e06d
MD5 04eb038df2c3e7a383b1448141a04702
BLAKE2b-256 8fb9a3d99feeedb032ffd09cd6652077f86bdee9a70dd0b990b2b272b445d4c3

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed5a30027cb4d8c7ca8b273d4766f3db3cf58fad9e9f3b1a68a351ffb54873d5
MD5 77998b30e6f4b25cfc6cbdf83c60b7e1
BLAKE2b-256 51e092557768fb0801f0d9dd9243cb9b6d342900b05e4b1006d4771f49ce233e

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b842981fa91accdffd48ff6408a977b7a91c3fbda55d353c3c68114d5c9d69e
MD5 57ffe931e963e42c7289304f485d220f
BLAKE2b-256 de8a8895f342a6b6aabd1a358e672f6f077b3ae51d0c63ca605d142db3bcd8ab

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d40c6c5aab171dcd6eb8455bc567bde404bb9def60cdb8c1299cc782b242bb9
MD5 9a44bb72d5e26ea835bac7c7f754e12f
BLAKE2b-256 5e30760463e5b2e8ad2bc229ae0a17ecb06727b6cbc094f08d8f65844315632e

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47b1df8d73390a24f94980c75158cdd5c56d256f16d55f30cb49c230caba9ba4
MD5 e32625cb1b9643b6de7f52ce47ebd52e
BLAKE2b-256 38e303c90dadcf5b3f82b83cee9adee60ef666b329c654f58c066af44eae0287

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tiktoken-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 880.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b967dfb9d0adf9a631953b1b40717684f04478270fc51bbccdd2f838d67a2f00
MD5 fa884d17a658d6a02cd0d4a117adac4b
BLAKE2b-256 ff69e75a479e1f8b761dfe9f03c4a0ea2adfa87f6da9a66272974672c59db3e7

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b8858b29804b3a0add25ce9e62fb00f89f621dc754d75d03ca419d17e8ddf67
MD5 52a90d38e5d46d5c9503be9a7802cfa1
BLAKE2b-256 ccc1515bb495ac92d92656018d2658f71d30077e82d97591dcf47328a5f13c0a

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da86f8c96ac1c235d7a3b3eebff1eacfdbcfb8ad792706943268d4d2938fbafe
MD5 753e9ac40695fbd2e1ed86a2bb10d9c7
BLAKE2b-256 ecb0aba516c1af434de33f776860a160eaa473e051b4fa6c14af509e0e74da77

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 477c9a38e20d0ed248090509acf1e839ad3967a4f00b4b0f958210049f656dee
MD5 8f012c11bbc84aa35ffe5dfc930610ef
BLAKE2b-256 ac7d222a5729dce08bc575ebb5ab39a27b8df4abd59c962a1e9a1efd16420d70

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8ac2d6420ff05841a89ba5205c6d45f56c4f6843454f3c884b7eb1a2a8dddb2
MD5 1f9856b1d055fcaddaad30cfe61cf883
BLAKE2b-256 c20a675f2351e187086515efdd6d6adf62e3582cafcd7e1935b0efd9529e5529

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a3b536c55802fe42f4b4644d2be4f04bf788506b48de0a0a658cb58f8bce232
MD5 e5814dfce9dec89f017c519aca46c4fc
BLAKE2b-256 6b7abf0829f99d87d25257165e2314d80df1f990568e659b0c72a95a1e8d226c

See more details on using hashes here.

File details

Details for the file tiktoken-0.13.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tiktoken-0.13.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35e1ea1e0631c04f551297284a1ab7e1f65a3c55a9a48728d5e0f66b4527c04a
MD5 f8608f53a44b0b420fb7f4c5cd94b159
BLAKE2b-256 51da1c97d0a8f1e9732eb1303d15df57d1a3d8dd40b3e53466db7e8a1228142d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page