test: fix test

This commit is contained in:
Krrish Dholakia 2025-03-12 16:51:01 -07:00
parent d435e466af
commit 2f62ac6992

View file

@ -119,7 +119,7 @@ async def test_supports_tool_choice():
litellm._turn_on_debug()
local_path = "../../model_prices_and_context_window.json"
prod_path = "./model_prices_and_context_window.json"
with open(local_path, "r") as f:
with open(prod_path, "r") as f:
model_prices = json.load(f)
litellm.model_cost = model_prices
config_manager = ProviderConfigManager()