mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-09 21:19:20 +08:00
17 lines
341 B
Python
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
|