Fix test to match actual config values

This commit is contained in:
Gauri Nagavkar 2026-02-15 07:39:40 -08:00
parent fedd58462b
commit 104c037638
No known key found for this signature in database
GPG key ID: 351370BECEF3E5FF

View file

@ -15,7 +15,7 @@ def test_gpt_5_search_api_config():
assert model['litellm_provider'] == 'openai'
assert model['input_cost_per_token'] == 1.25e-06
assert model['output_cost_per_token'] == 1e-05
assert model['max_input_tokens'] == 400000
assert model['max_input_tokens'] == 272000 # Matches base gpt-5
assert model['max_output_tokens'] == 128000
assert model['mode'] == 'chat'
assert model['supports_function_calling'] == True