forked from phoenix/litellm-mirror
Merge pull request #4036 from Keywords-AI/main
Fixed openai token counter bug
This commit is contained in:
commit
23b2eb8be2
2 changed files with 11 additions and 0 deletions
|
@ -186,3 +186,13 @@ def test_load_test_token_counter(model):
|
||||||
total_time = end_time - start_time
|
total_time = end_time - start_time
|
||||||
print("model={}, total test time={}".format(model, total_time))
|
print("model={}, total test time={}".format(model, total_time))
|
||||||
assert total_time < 10, f"Total encoding time > 10s, {total_time}"
|
assert total_time < 10, f"Total encoding time > 10s, {total_time}"
|
||||||
|
|
||||||
|
def test_openai_token_with_image_and_text():
|
||||||
|
model = "gpt-4o"
|
||||||
|
full_request = {'model': 'gpt-4o', 'tools': [{'type': 'function', 'function': {'name': 'json', 'parameters': {'type': 'object', 'required': ['clause'], 'properties': {'clause': {'type': 'string'}}}, 'description': 'Respond with a JSON object.'}}], 'logprobs': False, 'messages': [{'role': 'user', 'content': [{'text': '\n Just some long text, long long text, and you know it will be longer than 7 tokens definetly.', 'type': 'text'}]}], 'tool_choice': {'type': 'function', 'function': {'name': 'json'}}, 'exclude_models': [], 'disable_fallback': False, 'exclude_providers': []}
|
||||||
|
messages = full_request.get("messages", [])
|
||||||
|
|
||||||
|
token_count = token_counter(model=model, messages=messages)
|
||||||
|
print(token_count)
|
||||||
|
|
||||||
|
test_openai_token_with_image_and_text()
|
|
@ -4060,6 +4060,7 @@ def openai_token_counter(
|
||||||
for c in value:
|
for c in value:
|
||||||
if c["type"] == "text":
|
if c["type"] == "text":
|
||||||
text += c["text"]
|
text += c["text"]
|
||||||
|
num_tokens += len(encoding.encode(c["text"], disallowed_special=()))
|
||||||
elif c["type"] == "image_url":
|
elif c["type"] == "image_url":
|
||||||
if isinstance(c["image_url"], dict):
|
if isinstance(c["image_url"], dict):
|
||||||
image_url_dict = c["image_url"]
|
image_url_dict = c["image_url"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue