Files
wehub-resource-sync fbfefa28d3
CodeQL / Analyze (python) (push) Failing after 0s
Release / Build (push) Failing after 1s
Release / Release (push) Waiting to run
Test Suite / Unit Tests (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:18:10 +08:00

17 lines
341 B
Python

"""
Module for counting tokens and splitting text into chunks
"""
from .tokenizers.tokenizer_openai import num_tokens_openai
def num_tokens_calculus(string: str) -> int:
"""
Returns the number of tokens in a text string.
"""
num_tokens_fn = num_tokens_openai
num_tokens = num_tokens_fn(string)
return num_tokens