4cd2d4af2b
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Has been cancelled
94 lines
3.4 KiB
Python
94 lines
3.4 KiB
Python
"""
|
|
Custom model pricing for models not available in LiteLLM's pricing data.
|
|
|
|
Prices are per token (not per 1M tokens).
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
# Custom model pricing data
|
|
# Format matches LiteLLM's model_prices_and_context_window.json structure
|
|
CUSTOM_MODEL_PRICING: dict[str, dict[str, Any]] = {
|
|
'bu-1-0': {
|
|
'input_cost_per_token': 0.2 / 1_000_000, # $0.20 per 1M tokens
|
|
'output_cost_per_token': 2.00 / 1_000_000, # $2.00 per 1M tokens
|
|
'cache_read_input_token_cost': 0.02 / 1_000_000, # $0.02 per 1M tokens
|
|
'cache_creation_input_token_cost': None, # Not specified
|
|
'max_tokens': None, # Not specified
|
|
'max_input_tokens': None, # Not specified
|
|
'max_output_tokens': None, # Not specified
|
|
},
|
|
'bu-2-0': {
|
|
'input_cost_per_token': 0.60 / 1_000_000, # $0.60 per 1M tokens
|
|
'output_cost_per_token': 3.50 / 1_000_000, # $3.50 per 1M tokens
|
|
'cache_read_input_token_cost': 0.06 / 1_000_000, # $0.06 per 1M tokens
|
|
'cache_creation_input_token_cost': None, # Not specified
|
|
'max_tokens': None, # Not specified
|
|
'max_input_tokens': None, # Not specified
|
|
'max_output_tokens': None, # Not specified
|
|
},
|
|
'claude-sonnet-4-6': {
|
|
'input_cost_per_token': 3.00 / 1_000_000,
|
|
'output_cost_per_token': 15.00 / 1_000_000,
|
|
'cache_read_input_token_cost': 0.30 / 1_000_000,
|
|
'cache_creation_input_token_cost': 3.75 / 1_000_000,
|
|
'cache_creation_1h_input_token_cost': 6.00 / 1_000_000,
|
|
'max_tokens': None,
|
|
'max_input_tokens': None,
|
|
'max_output_tokens': None,
|
|
},
|
|
'anthropic/claude-sonnet-4.6': {
|
|
'input_cost_per_token': 3.00 / 1_000_000,
|
|
'output_cost_per_token': 15.00 / 1_000_000,
|
|
'cache_read_input_token_cost': 0.30 / 1_000_000,
|
|
'cache_creation_input_token_cost': 3.75 / 1_000_000,
|
|
'cache_creation_1h_input_token_cost': 6.00 / 1_000_000,
|
|
'max_tokens': None,
|
|
'max_input_tokens': None,
|
|
'max_output_tokens': None,
|
|
},
|
|
'claude-opus-4-6': {
|
|
'input_cost_per_token': 5.00 / 1_000_000,
|
|
'output_cost_per_token': 25.00 / 1_000_000,
|
|
'cache_read_input_token_cost': 0.50 / 1_000_000,
|
|
'cache_creation_input_token_cost': 6.25 / 1_000_000,
|
|
'cache_creation_1h_input_token_cost': 10.00 / 1_000_000,
|
|
'max_tokens': None,
|
|
'max_input_tokens': None,
|
|
'max_output_tokens': None,
|
|
},
|
|
'anthropic/claude-opus-4.6': {
|
|
'input_cost_per_token': 5.00 / 1_000_000,
|
|
'output_cost_per_token': 25.00 / 1_000_000,
|
|
'cache_read_input_token_cost': 0.50 / 1_000_000,
|
|
'cache_creation_input_token_cost': 6.25 / 1_000_000,
|
|
'cache_creation_1h_input_token_cost': 10.00 / 1_000_000,
|
|
'max_tokens': None,
|
|
'max_input_tokens': None,
|
|
'max_output_tokens': None,
|
|
},
|
|
'claude-fable-5': {
|
|
'input_cost_per_token': 10.00 / 1_000_000,
|
|
'output_cost_per_token': 50.00 / 1_000_000,
|
|
'cache_read_input_token_cost': 1.00 / 1_000_000,
|
|
'cache_creation_input_token_cost': 12.50 / 1_000_000,
|
|
'cache_creation_1h_input_token_cost': 20.00 / 1_000_000,
|
|
'max_tokens': 1_000_000,
|
|
'max_input_tokens': 1_000_000,
|
|
'max_output_tokens': 128_000,
|
|
},
|
|
'anthropic/claude-fable-5': {
|
|
'input_cost_per_token': 10.00 / 1_000_000,
|
|
'output_cost_per_token': 50.00 / 1_000_000,
|
|
'cache_read_input_token_cost': 1.00 / 1_000_000,
|
|
'cache_creation_input_token_cost': 12.50 / 1_000_000,
|
|
'cache_creation_1h_input_token_cost': 20.00 / 1_000_000,
|
|
'max_tokens': 1_000_000,
|
|
'max_input_tokens': 1_000_000,
|
|
'max_output_tokens': 128_000,
|
|
},
|
|
}
|
|
CUSTOM_MODEL_PRICING['bu-latest'] = CUSTOM_MODEL_PRICING['bu-2-0']
|
|
|
|
CUSTOM_MODEL_PRICING['smart'] = CUSTOM_MODEL_PRICING['bu-2-0']
|