Spaces:
Running
Running
File size: 262 Bytes
751936e |
1 2 3 4 5 6 7 8 9 10 |
"""
速度更快
"""
import tiktoken
enc = tiktoken.get_encoding("cl100k_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-4") |