Skip to content

Commit e331a96

Browse files
committed
fix: Update expected OpenRouter costs in tests
1 parent 48376e5 commit e331a96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/basic/test_openrouter.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def test_openrouter_get_model_info_from_cache(monkeypatch, tmp_path):
3939
info = manager.get_model_info("openrouter/mistralai/mistral-medium-3")
4040

4141
assert info["max_input_tokens"] == 32768
42-
assert info["input_cost_per_token"] == 0.0001
43-
assert info["output_cost_per_token"] == 0.0002
42+
assert info["input_cost_per_token"] == 100.0
43+
assert info["output_cost_per_token"] == 200.0
4444
assert info["litellm_provider"] == "openrouter"
4545

4646

@@ -56,8 +56,8 @@ def test_model_info_manager_uses_openrouter_manager(monkeypatch):
5656
"max_input_tokens": 512,
5757
"max_tokens": 512,
5858
"max_output_tokens": 512,
59-
"input_cost_per_token": 0.0001,
60-
"output_cost_per_token": 0.0002,
59+
"input_cost_per_token": 100.0,
60+
"output_cost_per_token": 200.0,
6161
"litellm_provider": "openrouter",
6262
}
6363

0 commit comments

Comments
 (0)