mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
Some checks failed
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
CodSpeed Benchmarks / benchmarks (push) Has been cancelled
Helm unit test / unit-test (push) Has been cancelled
Read Version from pyproject.toml / read-version (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Unit Tests: Caching (Redis) / caching-redis (push) Has been cancelled
Unit Tests: Proxy DB Operations / assert-shard-coverage (push) Has been cancelled
Unit Tests: Security / security (push) Has been cancelled
GitHub Actions Security Analysis / zizmor (push) Has been cancelled
Unit Tests: Proxy DB Operations / auth-checks (push) Has been cancelled
Unit Tests: Proxy DB Operations / budgets (push) Has been cancelled
Unit Tests: Proxy DB Operations / custom-logging (push) Has been cancelled
Unit Tests: Proxy DB Operations / db-and-spend (push) Has been cancelled
Unit Tests: Proxy DB Operations / proxy-runtime (push) Has been cancelled
Unit Tests: Proxy DB Operations / endpoints-and-responses (push) Has been cancelled
Unit Tests: Proxy DB Operations / guardrails-hooks (push) Has been cancelled
Unit Tests: Proxy DB Operations / jwt-and-keys (push) Has been cancelled
Unit Tests: Proxy DB Operations / key-generation (push) Has been cancelled
Unit Tests: Proxy DB Operations / logging-misc (push) Has been cancelled
Unit Tests: Proxy DB Operations / proxy-server-core (push) Has been cancelled
Unit Tests: Proxy DB Operations / schema-migration (push) Has been cancelled
Unit Tests: Proxy DB Operations / proxy-utils (push) Has been cancelled
* default requested_model to empty string on litellm-side rejects * Update litellm/router.py Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * fix: scope key access_group_ids override by team's assigned groups A team member could set any access_group_ids on their key (e.g. a group assigned only to a different team) and override the team's model restriction. Intersect the key's access_group_ids with team_object.access_group_ids in _key_access_group_grants_model so foreign groups are dropped before model expansion. Adds a regression test that asserts expansion is never called for foreign groups. * [Fix] Proxy: Skip Personal Budget Hook When Reservation Covers Counter The reservation path (PR #26845) atomically pre-fills `spend:user:{user_id}` and admits at the strict-`<` boundary. The legacy `_PROXY_MaxBudgetLimiter` pre-call hook re-reads the same counter with `>=`, so a reservation that fills the counter to exactly `max_budget` (e.g. a request without a `max_tokens` cap that falls back to reserving the smallest remaining headroom) is rejected by the hook even though the reservation already admitted it. Skip the hook when the request's active `budget_reservation` covers `spend:user:{user_id}`. The reservation is the source of truth for that counter cross-pod; the legacy `>=` path remains in place for requests without a reservation (e.g. paths that bypass the reservation entirely). Reproduces as `tests/otel_tests/test_prometheus.py::test_user_budget_metrics` on a fresh user with `max_budget=10` calling `fake-openai-endpoint` without `max_tokens`. Adds focused unit coverage in `tests/test_litellm/proxy/hooks/test_max_budget_limiter.py`. * harden bedrock file bucket validation * Fix syntax errors from botched merge in router.py * Fix Vertex batch output edge cases * [Fix] RBAC: Drop management_routes Write Fallback for Admin Viewer Greptile P1: the unsafe-method branch of `_check_proxy_admin_viewer_access` ended with a blanket `if route in management_routes: return`. That set is a mix of reads (info/list — handled via the safe-method GET branch above) and writes. The fallback let Admin Viewer POST to write endpoints not enumerated in `_ADMIN_VIEWER_BLOCKED_WRITE_ROUTES`, including: - /team/block, /team/unblock, /team/permissions_update - /jwt/key/mapping/{new,update,delete} - /key/bulk_update - /key/{key_id}/reset_spend Remove the fallback. The two remaining allow sets (admin_viewer_routes and global_spend_tracking_routes) are both read-only, so removal does not affect the legitimate POST-as-read cases (e.g. /spend/calculate, which is in spend_tracking_routes ⊂ admin_viewer_routes). Tests: - 8 new parametrized cases pinning each previously-leaking management write endpoint to 403 on POST for PROXY_ADMIN_VIEW_ONLY. * fix(tests): anchor VCR redis cassette key to repo root `os.path.relpath` with no `start` arg uses the current working directory, so running pytest from a subdirectory produced a different Redis key than running from the repo root. CI-recorded cassettes and locally-replayed runs would silently miss each other's cache. Anchor the path to the repo root (derived from `__file__`) so the key is stable regardless of CWD. https://claude.ai/code/session_018uCx7pcrkdUJZrCVMaTdPx * fix: gate key access_group override on group's own assignment Replaces the previous intersect-with-team.access_group_ids check, which made the override unreachable in practice (the team-gate fallback already covered every case the intersection allowed). The override now resolves each of the key's access_group_ids via get_access_object and accepts the group only if its assigned_team_ids includes the key's team_id, or its assigned_key_ids includes the key's token. This fulfills the original ask (a key can extend a team's allow-list via a group the admin granted to that team or that specific key) while still rejecting foreign groups referenced by team members of other teams. * [Fix] Proxy/Key Management: Honor team_member_permissions /key/list In /key/list Endpoint When a team grants /key/list via team_member_permissions, non-admin members should see all keys for that team — same as a team admin. Previously the classification in list_keys() only checked admin status, so permitted members fell into the service-account-only path and could not see other members' personal keys. Routes those members into the full-visibility set. * Fix access-group bypass via litellm-model fallback path When _get_all_deployments returns 0 candidates and the litellm-model fallback branch (_get_deployment_by_litellm_model) finds deployments that the access-group filter then empties, _access_group_filter_emptied_candidates remained False (it was captured before that branch ran). The router would then proceed to default fallbacks; the fallback model could have no access_groups and short-circuit the filter, silently serving a caller blocked by access-group restrictions. Update the flag inside the litellm-model branch when filtering empties a non-empty candidate set so the default-fallback guard still triggers. * fix(proxy): redact MCP server URL and headers for non-admin viewers (VERIA-8) Many MCP integrations (Zapier, etc.) embed an upstream API key directly in the server URL, e.g. ``https://actions.zapier.com/mcp/<api-key>/sse``. The list and single-server endpoints were returning the full URL to any authenticated user — `_redact_mcp_credentials` only stripped the explicit ``credentials`` field, and `_sanitize_mcp_server_for_virtual_key` only ran for restricted virtual keys. Non-admin internal users could read the dashboard, click the unmask toggle, and exfiltrate the raw token. Add `_sanitize_mcp_server_for_non_admin` that runs on top of the existing credential redaction and clears the credential-bearing fields: - ``url`` (the primary leak vector) - ``spec_path`` (OpenAPI spec URLs that may carry tokens) - ``static_headers`` / ``extra_headers`` (Authorization) - ``env`` (arbitrary secrets) - ``authorization_url`` / ``token_url`` / ``registration_url`` Identity fields (``server_id``, ``alias``, ``mcp_info``, etc.) are preserved so the UI can still list servers a non-admin's team has access to. Apply the new sanitizer in `fetch_all_mcp_servers` and the per-server fetch path right after the existing virtual-key branch. Update the existing `test_list_mcp_servers_non_admin_user_filtered` assertions that previously checked URL visibility. Frontend defense-in-depth: hide the URL unmask toggle on `mcp_server_view.tsx` unless the viewer is a proxy admin. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * Fix runtime policy attachment initialization Mark runtime-created policies and attachments initialized so global policy attachments created from the policy builder apply immediately without requiring a restart. Co-authored-by: Cursor <cursoragent@cursor.com> * test(router): cover _try_early_resolve_deployments_for_model_not_in_names The router_code_coverage CI check requires every function in router.py to be referenced by at least one test under tests/{local_testing, router_unit_tests,test_litellm} in a file with "router" in its name. The recently-extracted helper had no direct test, so the check failed with "0.45% of functions in router.py are not tested". Add a focused test that exercises the four return paths: model already in self.model_names, no fallback applies, pattern-router match, and default_deployment substitution (also asserting the stored default isn't mutated). https://claude.ai/code/session_019AVp1XL7RT9RxRe4qRLkay * Fix policy registry teardown in tests Reset the policy ID index during policy engine test cleanup so stale policy versions cannot leak between tests. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(batches): count non-chat tokens, validate batch-file model access (VERIA-39) (#27015) * fix(batches): count non-chat tokens and validate every model in batch file Two security control bypasses on POST /v1/batches: 1. `_get_batch_job_input_file_usage` only summed tokens for `body.messages` (chat completions). Embedding (`input`) and text completion (`prompt`) batches reported zero, letting massive non-chat workloads slip past TPM rate limits. Extend the counter to handle string and list shapes for both fields. 2. The batch input file was forwarded to the upstream provider without inspecting the models named inside the JSONL — only the outer `model` query parameter was checked against the caller's allowlist. A caller restricted to gpt-3.5 could submit a batch targeting gpt-4o and the upstream would execute it under the proxy's shared API key. Add `_get_models_from_batch_input_file_content` (returns the distinct `body.model` values) and call it from `_enforce_batch_file_model_access` in the pre-call hook, which runs each model through `can_key_call_model` so the same allowlist semantics (wildcards, access groups, all-proxy-models, team aliases) the proxy enforces on `/chat/completions` apply here too. Any unauthorized model raises a 403 before the file is forwarded. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(batches): count pre-tokenized prompt/input shapes, classify 403 logs Two follow-ups from the Greptile review on the batch validation PR: 1. P1 TPM bypass via integer token arrays. The OpenAI batch schema accepts ``prompt`` and ``input`` as ``list[int]`` (a single pre-tokenized prompt) or ``list[list[int]]`` (multiple) in addition to the string and ``list[str]`` shapes. Pre-fix only the string shapes were counted, so a caller could submit a batch with hundreds of millions of pre-tokenized tokens and the rate limiter would record zero. Extract the per-field logic into ``_count_prompt_or_input_tokens`` and count each int as one token. 2. P2 access-denial logs were indistinguishable from I/O failures. ``count_input_file_usage`` caught every exception under a generic "Error counting input file usage" message, so an intentional 403 from ``_enforce_batch_file_model_access`` looked the same in the logs as a missing file or a Prisma timeout. Catch ``HTTPException`` separately and log 403s at WARNING level with a security-relevant message before re-raising. Tests cover the new shapes: single ``list[int]``, ``list[list[int]]`` (the worst-case bypass vector), and embeddings ``input`` with pre-tokenized arrays. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(proxy): re-validate user_id after /user/info re-parses query (#27009) * fix(proxy): re-validate user_id ownership after /user/info re-parses query The route-level access check in `RouteChecks.non_proxy_admin_allowed_routes_check` reads `request.query_params.get("user_id")`, which decodes literal `+` to spaces. The endpoint then re-parses the raw query string with `urllib.unquote` in `get_user_id_from_request` to preserve `+` characters (so plus-addressed emails work as user_ids). Those two paths produce different ids: a caller who registered a user_id containing a literal space could pass the route check and then read another user's row by sending the encoded `+` form. Add `_enforce_user_info_access` and call it after `_normalize_user_info_user_id` returns the final id. Proxy admin / view-only admin still bypass; everyone else must match the resolved user_id (or have no user_id, which falls back to the caller's own id later in the handler). Tests cover the admin bypass, owner-match path, and the cross-user lookup that this change blocks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(proxy): apply user_info ownership check to PROXY_ADMIN_VIEW_ONLY `_enforce_user_info_access` was bypassing both PROXY_ADMIN and PROXY_ADMIN_VIEW_ONLY, but the upstream route check in `RouteChecks.non_proxy_admin_allowed_routes_check` only treats PROXY_ADMIN as a true admin for the `/user/info` route — view-only admins go through the `user_id == valid_token.user_id` enforcement along with regular users. Mirroring that asymmetry left the same encoded-`+` bypass open for view-only admins whose user_id contains a literal space. Drop the PROXY_ADMIN_VIEW_ONLY exemption so the post-decode re-check matches the upstream rule. Update tests: a view-only admin must now be blocked from cross-user lookups but still allowed to read their own row. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: yuneng-jiang <yuneng@berri.ai> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat(spend-logs): opt-in suppression of stack traces in spend-tracking error logs Adds LITELLM_SUPPRESS_SPEND_LOG_TRACEBACKS env var. When set to true and the proxy log level is INFO or above, spend-tracking error paths emit a single ERROR line without the full traceback. Stack traces are preserved at DEBUG and the Sentry / proxy_logging_obj.failure_handler path is unchanged. The new spend_log_error helper is wired through the spend write hot path: - DBSpendUpdateWriter (update_database, _update_*_db, batch upsert, redis-commit fallbacks) - _ProxyDBLogger._PROXY_track_cost_callback - get_logging_payload exception path - update_spend / update_daily_tag_spend / spend logs queue monitor Resolves LIT-2704. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(spend-logs): preserve no-traceback behavior for update_daily_tag_spend This call site previously logged a single-line error via verbose_proxy_logger.error() with no traceback. Switching it to spend_log_error(..., exc=e) caused a full stack trace to render by default (when LITELLM_SUPPRESS_SPEND_LOG_TRACEBACKS is unset), which contradicts the PR goal of leaving default behavior unchanged. Revert this specific site to the original error log call. * fix(spend-logs): preserve no-traceback behavior for update_daily_tag_spend Bugbot caught a regression: the previous error log here was a single-line verbose_proxy_logger.error(...) with no traceback. spend_log_error attaches the active exception's traceback by default (when the suppression env var is unset), so swapping it in changed default behavior. Revert this one site to its original .error() call to keep the PR strictly opt-in. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * feat(spend-logs): suppress traceback in SpendLogs error_information row Extend LITELLM_SUPPRESS_SPEND_LOG_TRACEBACKS to the failure callback so the per-row Metadata pane in the UI no longer shows the stack trace when the opt-in env var is set, matching the existing console-side suppression. https://claude.ai/code/session_014dztoRbRnRvq54HL9EyHx6 * [Fix] Proxy: Repair Merge Fallout In Router-Override Fallback Auth Conflict resolution for #26968 dropped the `Iterator` typing import (NameError at module load), left a dead `fallback_models = cast(...)` block, and the new tests called `_enforce_key_and_fallback_model_access` without the now-required `request` kwarg. * isolate dual OTEL handlers * harden cloud file compatibility path * harden cloud file compatibility path * [Fix] Proxy/Key Management: Align Key-Org Membership Checks On Generate And Regenerate Mirrors the membership rule on /key/update so that /key/generate and /key/{key}/regenerate apply the same `_validate_caller_can_assign_key_org` gate when the caller specifies an `organization_id`. Proxy admins bypass. The check no-ops when `organization_id` is not being set. * thread trusted params through vertex file content * trust only server legacy file flag * chore(proxy): keep public AI hub unauthenticated * fix(proxy): preserve low-detail readiness status * [Test] Anthropic: Replace Legacy Claude-4-Sonnet Alias With Haiku 4.5 Three live-API tests pinned to claude-4-sonnet-20250514, which is a non-canonical alias of claude-sonnet-4-20250514. Anthropic's main API no longer resolves the legacy form under freshly issued keys, so the tests fail with not_found_error. The token counter test pinned to claude-sonnet-4-20250514 itself (deprecation_date 2026-05-14, two weeks out) was on borrowed time too. Bump all four to claude-haiku-4-5-20251001 — capability superset for what these tests exercise (streaming, parallel tool calling, extended thinking, token counting), no upcoming deprecation, cheaper per-token. * chore(proxy): move URL-valued model/file_id guard from SDK to proxy The previous per-provider guards in HuggingFace, Oobabooga, and Gemini files lived in the SDK layer, breaking SDK callers who legitimately pass URL-valued model identifiers. Move the check to the proxy boundary in add_litellm_data_to_request so SDK users keep working while proxy users default-deny URL-valued model and file_id, with admin opt-in via litellm.provider_url_destination_allowed_hosts. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * [Chore] Proxy/UI: Drop stray _experimental/out/chat/index.html This file is a regenerable UI build artifact that should not be tracked in source. Removing so the merge into litellm_internal_staging stays clean. * [Test] Anthropic Passthrough: Bump Streaming Cost-Injection Test To Haiku 4.5 test_anthropic_messages_streaming_cost_injection hits the proxy's /v1/messages route, which routes via the anthropic/* wildcard to api.anthropic.com. The 404 surfaced in the test was Anthropic's own not_found_error propagated back through the proxy (visible from the x-litellm-model-id hash on the response — the proxy did route). Same root cause as the prior commit: the legacy claude-4-sonnet-20250514 alias is no longer recognized by Anthropic's main API under the new key. Swap to claude-haiku-4-5-20251001 — same routing path, canonical model. * fix(proxy): handle ownership-recording failures after upstream create If record_container_owner raises after the upstream container is created, the user previously got a 500 with no usable container — they were billed for an unreachable resource. Move ownership recording into the create path's exception handling and split the two failure modes: - HTTPException from the recorder (auth conflicts) propagates verbatim so the client sees the real status code, not a generic LLM error. - Unexpected exceptions are logged and swallowed; the response is returned to the caller so they aren't billed for a container they can't address. The DB row stays untracked until an operator reconciles. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(guardrails): close post-call coverage gaps * fix(types): add /team/permissions_bulk_update to management_routes The blocklist check in _check_proxy_admin_viewer_access only fires for routes that match LiteLLMRoutes.management_routes — the bulk-update endpoint was missing from that list, so the test for view-only admins on /team/permissions_bulk_update fell through to "allow." Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * [Test] Anthropic Passthrough: Bump Thinking Tests Off Legacy Sonnet 4 Alias base_anthropic_messages_test.test_anthropic_messages_with_thinking and test_anthropic_streaming_with_thinking still pinned to claude-4-sonnet-20250514 — the same legacy alias Anthropic no longer recognizes under freshly issued keys. The other four tests in this base class already use claude-sonnet-4-5-20250929; these two were missed. Bump to claude-haiku-4-5-20251001 (supports_reasoning=true, no upcoming deprecation). Subclasses including TestAnthropicPassthroughBasic inherit these methods. * fix(guardrails): cover multi-choice output variants * fix(proxy): preserve public ai hub ui setting * fix(scim): cascade FK cleanup on user delete and surface block status in UI SCIM DELETE /Users/{id} previously called litellm_usertable.delete without clearing rows that FK back to the user, so Postgres rejected the delete with LiteLLM_InvitationLink_user_id_fkey and the SCIM caller saw a 500. Add a helper to drop invitation_link, organization_membership, and team_membership rows before the user delete (mirrors /user/delete in internal_user_endpoints). Also add a Status column to the Virtual Keys and Internal Users tables so admins can see at a glance which keys are blocked and which users SCIM has deactivated. SCIM-blocked keys carry a tooltip explaining the origin. Pin the dashboard's Node version to 20 via .nvmrc to match CI. * chore: update Next.js build artifacts (2026-05-02 03:21 UTC, node v20.20.2) * perf(proxy): cache container/skill ownership reads on the hot path Container ownership and skill rows are looked up on every retrieve / delete / list / file-content / chat-completion-with-skill call. The new stores wrapped raw Prisma queries with no cache, putting one DB round-trip on each request. Add an in-process TTL'd cache mirroring the _byok_cred_cache pattern in mcp_server/server.py: per-key (value, monotonic_timestamp), 60s TTL, 10000-entry cap with full-clear on overflow, invalidated by every write. Negative results (`None`) are cached too so untracked-resource checks also skip the DB. Tests cover: cache-after-first-hit, negative caching, write invalidation, no-caching-on-DB-error, TTL expiry, capacity eviction. 56 tests pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: update Next.js build artifacts (2026-05-02 03:39 UTC, node v20.20.2) * fix: remove traceback key instead of it being "" * fix: linting error * fix(scim): preserve scim_active on PUT when client omits the field A SCIM PUT may legally omit `active` (full-replace with the field absent). Pydantic fills the SCIMUser.active default of True, so the PUT handler was overwriting metadata.scim_active with True even when the client never sent it — silently reactivating a previously SCIM-blocked user and unblocking their keys. Use model_fields_set to detect whether the client actually sent `active`. If omitted, preserve the prior scim_active value and skip the cascade to virtual keys. Also drop comments added in this PR that just narrate what the code does; keep only the docstrings and the SQL-NULL pitfall note that explain non-obvious behaviour. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(proxy): use set lookup for permitted agent filters * fix(mcp): redact command fields for non-admin server views * fix(proxy): forward decoded container ids after ownership checks * fix(caching): handle stale isolated Redis semantic index * fix(cloudflare): support response_text in streaming chunk parser Newer Cloudflare Workers AI models (e.g. Nemotron) emit 'response_text' instead of 'response' on streamed chunks. The non-streaming path was already updated to fall back to 'response_text' (#26385), but the streaming chunk parser still only read 'response', which caused streaming requests against those models to silently produce empty content. Mirror the non-streaming fallback in CloudflareChatResponseIterator.chunk_parser and add a streaming test for the response_text shape. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * Fix code qa * Address bugbot: drop dead encode/decode helpers; preserve empty custom_id - Remove unused _encode_gcp_label_value / _decode_gcp_label_value singular helpers; only the _chunks variants are actually called. - Use 'is not None' check for custom_id so empty-string custom_ids are still labeled and round-trip through batch outputs. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * Forward Vertex file content logging context * test vertex file content logging forwarding Co-authored-by: Sameer Kankute <Sameerlite@users.noreply.github.com> * Fix Vertex batch output logging mutation * fix: don't mutate caller's logging_obj in _try_transform_vertex_batch_output_to_openai The method was overwriting logging_obj.optional_params, logging_obj.model, and logging_obj.start_time on the caller's Logging instance. When invoked from llm_http_handler.py's generic framework path, the framework's own logging_obj (which already went through pre_call) had its properties clobbered, causing model and start_time to reflect the last batch line's values rather than the original call context. Fix: create a fresh local Logging instance for the per-line transformation instead of mutating the incoming logging_obj. The caller's object is now left entirely untouched regardless of whether a logging_obj was passed in or not. Regression tests added to verify model, start_time, and optional_params are not mutated on the caller's logging_obj. Co-authored-by: Sameer Kankute <Sameerlite@users.noreply.github.com> * feat: add opt-out flag for Vertex batch output transformation Adds litellm.disable_vertex_batch_output_transformation (default False). When True, afile_content returns raw Vertex predictions.jsonl untouched so users that parse candidates/modelVersion directly are not broken. * fix(anthropic,bedrock): omit thinking/output_config when reasoning_effort="none" Setting reasoning_effort="none" on Anthropic chat models (direct, Bedrock Invoke, Bedrock Converse, Vertex AI Anthropic, Azure AI Anthropic) crashed LiteLLM with: litellm.APIConnectionError: 'NoneType' object has no attribute 'get' Both the Anthropic chat transformation and Bedrock Converse called ``AnthropicConfig._map_reasoning_effort`` and assigned the ``None`` it returns for ``"none"`` directly to ``optional_params["thinking"]``. Downstream ``is_thinking_enabled`` then did ``optional_params["thinking"].get("type")`` and crashed. Pop ``thinking`` (and on Claude 4.6/4.7, ``output_config``) instead of assigning ``None``, restoring the documented contract that ``reasoning_effort="none"`` means "do not enable thinking". This also prevents downstream Anthropic 400s ("thinking: Input should be an object", "output_config.effort: Input should be ...") if the bug were ever masked. Verified end-to-end against the live Anthropic API and Bedrock Converse on claude-opus-4-{5,6,7} and claude-sonnet-4-6, plus Bedrock Invoke for Claude 4.5/4.6. Vertex AI Anthropic and Azure AI Anthropic inherit the fixed ``map_openai_params`` from ``AnthropicConfig`` and need no further changes. * fix(vertex-ai): set response=null on batch error entries per OpenAI spec The Vertex batch output transformer was emitting both a populated 'response' and 'error' for failed batch entries. The OpenAI Batch output spec defines them as mutually exclusive: on error 'response' MUST be null. This broke any consumer using 'result["response"] is None' to detect failures. * test(vertex-ai): cover transformation_error path emits response=null * fix(security): sandbox jinja2 in gitlab/arize/bitbucket prompt managers DotpromptManager was hardened to render through ImmutableSandboxedEnvironment. The three sibling managers (gitlab, arize, bitbucket) were missed and still instantiate plain jinja2.Environment(), leaving the same attribute-traversal SSTI primitive open: a template fetched from a GitLab/BitBucket repo or Arize Phoenix workspace can reach __class__.__init__.__globals__ and execute arbitrary Python on the proxy host. Match the dotprompt pattern by switching all three to ImmutableSandboxedEnvironment. The sandbox blocks the dunder-traversal chain while leaving normal {{ var }} substitution intact, so the template surface is unchanged for legitimate use. Adds tests/test_litellm/integrations/test_prompt_manager_ssti.py (18 cases) verifying each manager's jinja_env is a sandbox, that classic SSTI payloads raise SecurityError, and that ordinary variable rendering still works. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore(proxy): drop client-supplied pricing fields from request bodies The proxy currently forwards request-body pricing parameters (the fields on `CustomPricingLiteLLMParams`, plus `metadata.model_info`) into the core call path. Those fields belong to deployment configuration, not to per-request input — sending them from a client mutates the request's recorded cost and, via `litellm.completion` → `register_model`, the process-wide `litellm.model_cost` map for every later caller in the worker. Strip them at the boundary. The strip set is built from `CustomPricingLiteLLMParams.model_fields` so pricing fields added later are covered automatically. Operators who do want clients to supply per-request pricing can opt back in per key or team via `metadata.allow_client_pricing_override = true`, mirroring the existing `allow_client_mock_response` and `allow_client_message_redaction_opt_out` flags. Tests cover the strip set's coverage, root and metadata strips, the opt-in skip on both key and team metadata, and a regression check that the global `litellm.model_cost` map is unmutated after a stripped request. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore(proxy): log stripped pricing fields at debug for operator visibility Operators upgrading would otherwise see client-supplied pricing overrides silently stop applying with no diagnostic. Emit a debug-level line listing the dropped fields and pointing at the opt-in flag when any are stripped; stay silent on the no-op path so the log isn't filled with noise. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(proxy): move pricing strip below the litellm_metadata JSON-string parse The strip ran before the proxy parses ``litellm_metadata`` from a JSON string into a dict (a path used by multipart/form-data and ``extra_body`` callers), so ``isinstance(metadata, dict)`` was False and ``model_info`` survived the strip. Move the call to the same post-parse position the ``user_api_key_*`` strip already uses for the same reason. Adds a regression test exercising the JSON-string ``litellm_metadata`` path. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * test(responses): replace legacy claude-4-sonnet alias in multiturn tool-call test Anthropic's main API no longer resolves the non-canonical 'claude-4-sonnet-20250514' alias for freshly issued keys, returning 404 not_found_error. PR #27031 already swept three other live tests pinned to this alias to claude-haiku-4-5-20251001 but missed test_multiturn_tool_calls in the responses API suite, which is now failing reliably on PR CI runs (e.g. PR #27074, job 1603363). Bump the two model references in test_multiturn_tool_calls to the same claude-haiku-4-5-20251001 snapshot used by PR #27031 -- it covers everything this test exercises (tool calling, multi-turn) and isn't on a deprecation schedule. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * chore(proxy): close callback-config and observability-credential side channels Two related gaps in the proxy's request bouncer: 1. ``is_request_body_safe`` (auth_utils.py) walked the request-body root and the ``litellm_embedding_config`` nested dict, but not ``metadata`` or ``litellm_metadata``. The same fields it bans at root — Langfuse / Langsmith / Arize / PostHog / Braintrust / Phoenix / W&B Weave / GCS / Humanloop / Lunary credentials and routing — were silently accepted when the caller put them inside metadata, retargeting observability callbacks to a caller-controlled host with caller-supplied creds. Walk both metadata containers (and parse the JSON-string form sent via multipart / ``extra_body``) through the same banned-params helper, so the existing ``allow_client_side_credentials`` opt-in covers both paths consistently. 2. The banned-params list was hand-maintained and lagged the canonical ``_supported_callback_params`` allow-list in ``initialize_dynamic_callback_params``. Derive the observability bans from that allow-list (minus a small ``_SAFE_CLIENT_CALLBACK_PARAMS`` set for informational fields like ``langfuse_prompt_version`` and ``langsmith_sampling_rate``) so future integrations are covered automatically; ``_EXTRA_BANNED_OBSERVABILITY_PARAMS`` carries the handful of fields integrations read but the allow-list hasn't caught up to. A guard test fails CI if a new entry is added to ``_supported_callback_params`` without an explicit safe-list decision. Separately in ``litellm_pre_call_utils.py``: add ``callbacks``, ``service_callback``, ``logger_fn``, and ``litellm_disabled_callbacks`` to ``_UNTRUSTED_ROOT_CONTROL_FIELDS``. The first three are appended to worker-wide ``litellm.{input,success,failure,_async_*,service}_callback`` lists / ``litellm.user_logger_fn`` from inside ``function_setup`` — one request poisons every subsequent caller in that worker. The last is the inverse primitive: the legitimate path reads it from key/team metadata, the request-body version silently disables admin-configured audit / observability for the call. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(auth): per-param allow must continue, not return early A pre-existing logic bug in ``_check_banned_params``: when the deployment-level ``configurable_clientside_auth_params`` permitted one banned field, the loop ``return``-ed on the first match instead of ``continue``-ing, so any other banned param later in the same body or metadata dict was never checked. This PR's metadata walk multiplies the surface where that bypass matters — a body pairing an allowed ``api_base`` with an observability credential like ``langfuse_host`` would silently pass. Proxy-wide ``allow_client_side_credentials`` keeps ``return`` (it's a global opt-in for every banned param). The per-param branch becomes ``continue`` so only the one explicitly-permitted field is skipped. Adds a regression test that exercises the api_base + langfuse_host pair. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(vector_store): resolve embedding config at request time, never persist creds The vector store create/update path previously called ``_resolve_embedding_config`` against the admin-configured router/DB model and persisted the resolved ``litellm_embedding_config`` dict (``api_key`` / ``api_base`` / ``api_version``) into the ``litellm_managedvectorstorestable.litellm_params`` column. Because the resolver expanded ``os.environ/...`` references via ``get_secret``, the DB row carried cleartext provider credentials, and the ``/vector_store/{new,info,update,list}`` responses returned them to any authenticated caller who could supply a known admin model name. Move the auto-resolve out of ``create_vector_store_in_db`` and out of the update path. Persist only the user-supplied ``litellm_embedding_model`` reference. Resolve at request-handling time inside ``_update_request_data_with_litellm_managed_vector_store_registry`` so the resolved config lives in the per-request ``data`` dict and is garbage-collected after the response. Legacy rows that were created by an earlier proxy version and already carry a resolved ``litellm_embedding_config`` skip the re-resolution and pass through unchanged so embedding calls keep working. The ``new_vector_store`` response now also runs the existing ``_redact_sensitive_litellm_params`` masker (already used by ``info``, ``update``, and ``list``), defending against caller-supplied cleartext on the create path and against legacy rows whose persisted credentials are still in the database. Existing tests that asserted the old write-time-resolve behaviour are updated to assert the new persistence shape (no embedding config stored, just the model reference). Two new tests cover the use-time path: one asserting fresh resolution happens when a row carries only the model reference, the other asserting legacy rows with persisted config skip re-resolution and continue to work. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * fix(vector_store): tighten registry-mutation comment and dedupe test helpers * fix(vector_store): cache use-time embedding-config resolution Hold the resolved config in a process-memory TTL cache so the request-handling path doesn't run litellm_proxymodeltable.find_first on every vector-store call. * fix(anthropic,bedrock,vertex): forward output_config.effort + 400 on garbage reasoning_effort Follow-up bugs surfaced by the QA sweep on PR #27039 (https://github.com/BerriAI/litellm/pull/27039#issuecomment-4363363610). 1. Stop stripping output_config.effort on Bedrock + Vertex adaptive routes. - Vertex AI Claude 4.6/4.7 accepts output_config.effort on rawPredict (verified end-to-end against us-east5 / global). The strip helper now no-ops for effort. - Bedrock Converse routes output_config into additionalModelRequestFields for anthropic base models so the requested adaptive tier (low/medium/ high/xhigh/max) actually reaches the wire instead of all collapsing to identical thinking. - Bedrock Invoke chat transformation (AmazonAnthropicClaudeConfig) stops popping output_config from the post-AnthropicConfig request body. - Bedrock Invoke /v1/messages allowlist (BedrockInvokeAnthropicMessagesRequest) now lists output_config so the runtime allowlist filter forwards it. 2. Validate effort across Bedrock Converse so 'disabled' / 'invalid' / '' / unsupported tiers (xhigh/max on Sonnet 4.6 or budget-mode 4.5 models) surface as a clean 400 BadRequestError instead of 500. 3. ValueError -> BadRequestError throughout (AnthropicConfig.map_openai_params, _apply_output_config, AmazonConverseConfig._handle_reasoning_effort_parameter). Empty-string effort is now rejected (was silently passing the 'if effort and ...' short-circuit). 4. Floor reasoning_effort='minimal' at the Anthropic provider minimum (1024 budget_tokens) via new ANTHROPIC_MIN_THINKING_BUDGET_TOKENS so it's a usable tier on direct Anthropic / Azure AI Anthropic / Vertex AI Anthropic / Bedrock Invoke (all of which 400 below 1024). 5. model_prices: dedupe duplicate supports_max_reasoning_effort key on claude-opus-4-7 / claude-opus-4-7-20260416. Adds regression tests across all five affected paths; existing tests asserting the silent-strip behavior were updated to reflect the new pass-through and clean 400 surfaces. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(constants): make ANTHROPIC_MIN_THINKING_BUDGET_TOKENS a plain constant The documentation CI test (tests/documentation_tests/test_env_keys.py) asserts every os.getenv() key in the source has a matching entry in the litellm-docs config_settings.md table. ANTHROPIC_MIN_THINKING_BUDGET_TOKENS tracks Anthropic's published wire-protocol minimum (1024) — it's not a user-tunable, so making it env-overridable was wrong anyway. Drop the os.getenv() wrapper; the value is now a plain literal. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(anthropic,bedrock): correct effort error message and dedupe effort_map - Remove 'none' from the Bedrock _validate_anthropic_adaptive_effort error message; it was listed as a valid value but rejected by the membership check, leaving users in a feedback loop if they tried 'none'. - Hoist the duplicated reasoning_effort -> output_config.effort mapping out of AnthropicConfig.map_openai_params and AmazonConverseConfig._handle_reasoning_effort_parameter into a single AnthropicConfig.REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT class constant so the two routes cannot drift. * fix(anthropic): translate reasoning_effort on /v1/messages route Closes the remaining QA-sweep gap on PR #27074: Bedrock Invoke /v1/messages was silently ignoring ``reasoning_effort`` because the shared param filter only kept native Anthropic keys, so every effort tier collapsed to the same behavior on the wire (27/231 cells failing across opus-4-5 / opus-4-6 / sonnet-4-6). Map ``reasoning_effort`` to native Anthropic ``thinking`` / ``output_config.effort`` at the ``AnthropicMessagesConfig`` layer so all four /v1/messages routes (direct Anthropic, Azure AI, Vertex AI, Bedrock Invoke) inherit the same translation: - Add ``reasoning_effort`` to ``AnthropicMessagesRequestOptionalParams`` so the param filter in ``AnthropicMessagesRequestUtils.get_requested_anthropic_messages_optional_param`` no longer drops it before the transformation runs. - Add ``_translate_reasoning_effort_to_anthropic`` and call it from ``transform_anthropic_messages_request``. Mirrors ``AnthropicConfig.map_openai_params`` on the chat completion path (re-uses ``_map_reasoning_effort`` and ``REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT``) so the two routes cannot drift. Pops ``reasoning_effort`` so it never reaches the wire. - Caller-supplied native ``thinking`` / ``output_config.effort`` always win — same precedence as ``_translate_legacy_thinking_for_adaptive_model``. - Garbage values (``""``, ``"disabled"``, ``"invalid"``) raise ``AnthropicError(status_code=400)`` instead of falling through and surfacing as 500s from the provider. - ``"none"`` clears thinking + output_config so callers can opt out per request. Also restores the non-adaptive-model test coverage on Bedrock Invoke /v1/messages that the previous commit lost when ``test_bedrock_messages_strips_output_config`` was renamed to the ``forwards`` variant on Opus 4.7. Adds a new test file ``test_reasoning_effort_translation.py`` covering the translation at the shared config level (adaptive + non-adaptive models, none, garbage, caller precedence) so all four /v1/messages routes are exercised by a single suite. Adds parametrized + behavioral tests on the Bedrock Invoke /v1/messages suite covering: minimal/low/medium/high/xhigh/max mapping for adaptive models, thinking-budget mapping for non-adaptive Opus 4.5, ``none`` clears both, garbage raises 400, explicit ``output_config`` wins. Refs: https://github.com/BerriAI/litellm/pull/27074 * fix(anthropic,bedrock): reject unmapped reasoning_effort at mapping site Both the chat completion path (AnthropicConfig.map_openai_params) and the Bedrock Converse path (_handle_reasoning_effort_parameter) used REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT.get(value, value) which falls back to the raw input on unmapped keys. Combined with _map_reasoning_effort returning type='adaptive' for any string on Claude 4.6/4.7, garbage values (e.g. 'disabled') could leak into optional_params['output_config']['effort'] unvalidated if map_openai_params ran without the downstream transform_request or _validate_anthropic_adaptive_effort check. Mirror the /v1/messages pattern: use .get(value) (no fallback) and raise BadRequestError immediately when the value is unmapped, co-locating validation with the mapping for defense in depth. * style: black formatting Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * fix(anthropic): stop class-attr leak; gate xhigh/max on every route The reasoning-effort mapping dict was a public class attribute on AnthropicConfig, so BaseConfig.get_config returned it as a request parameter and every Anthropic-backed call (Anthropic / Azure / Vertex / Bedrock Invoke) hit a 400 'REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT: Extra inputs are not permitted' from the provider. Move the mapping to a module-level constant. _supports_effort_level only looked the model up under custom_llm_provider='anthropic', so bedrock-prefixed model ids (e.g. bedrock/invoke/us.anthropic.claude-opus-4-7) returned False for both 'max' and 'xhigh' even when the underlying model entry has the flag set. Strip known provider prefixes and retry the lookup against litellm.model_cost directly so per-model gating works on every route. Mirror the per-model xhigh/max gate from AnthropicConfig._apply_output_config in AnthropicMessagesConfig._translate_reasoning_effort_to_anthropic so the /v1/messages route also raises a clean 400 instead of forwarding the unsupported tier. * feat(anthropic,bedrock): strip output_config under drop_params for non-effort models When a proxy fronts Claude Code (which always sends `output_config.effort`) at a pre-4.5 Anthropic model — haiku-3, sonnet-3.5, opus-3, sonnet-4 — the forwarded knob causes a forced 400 the client can't fix. Gating a strip behind the existing `drop_params` flag lets operators opt into silent fixup once and stop worrying about per-model param hygiene. Default (`drop_params=False`) still forwards and surfaces the provider's error, preserving the strict, debuggable contract from #27074. Per https://platform.claude.com/docs/en/build-with-claude/effort the supporting set is Opus 4.5+, Sonnet 4.6+, and Mythos Preview; everything else is dropped (with a verbose_logger warning so the strip is visible). Recognition uses model-name patterns plus a fallback to any `supports_*_reasoning_effort` flag in the model map for forward compatibility with new entries. https://claude.ai/code/session_01WjHq31rvXT6xYNdVmSJvRp (cherry picked from commit1233943e78) * fix(base_llm): filter all _-prefixed class attrs from get_config The drop_params strip work added `AnthropicConfig._EFFORT_SUPPORTING_MODEL_PATTERNS` as a private class-level lookup tuple. `BaseConfig.get_config()` only filtered the `__`-prefixed names plus `_abc` / `_is_base_class`, so `_EFFORT_SUPPORTING_MODEL_PATTERNS` would have leaked into the request body the same way `REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT` did before the previous commit. Generalize the existing `_abc` / `_is_base_class` carve-outs to skip every `_`-prefixed name. `AmazonConverseConfig.get_config()` overrides the base method, so apply the same change there. Also unblocks future internal helpers from accidentally serialising into the wire body. * fix(anthropic): drive output_config.effort support from model map flags Replace hardcoded _EFFORT_SUPPORTING_MODEL_PATTERNS with a JSON-backed check that uses supports_*_reasoning_effort flags from the model map. Add supports_minimal_reasoning_effort: true to opus-4-5 and mythos-preview entries (which previously only carried supports_reasoning) so the JSON remains the single source of truth for effort capability. * fix(anthropic,bedrock,databricks): four reasoning_effort follow-ups - claude-sonnet-4-6 + reasoning_effort=max no longer 400s. Renamed _is_opus_4_6_model to _is_claude_4_6_model at three sites and added supports_max_reasoning_effort: true to 12 model entries in the JSON cost map (10 sonnet 4.6 ids + OpenRouter opus 4.6/4.7). - _map_reasoning_effort now raises BadRequestError(400) directly with llm_provider, instead of letting Databricks (and similar callers) surface its raw ValueError as a 500. - output_config.effort on Opus 4.5 over Bedrock no longer 400s for missing effort-2025-11-24 beta. Flipped JSON to "effort-2025-11-24" for bedrock + bedrock_converse and added an auto-attach branch in _process_tools_and_beta for non-adaptive Anthropic + output_config on Converse. - reasoning_effort=xhigh / =max on legacy budget-mode models (Haiku 4.5, Sonnet 4.5, Opus 4.5) now map to thinking.budget_tokens 8192 / 16384 instead of returning 400. Added two constants in litellm/constants.py. Tests updated for all four flips. Validated end-to-end via 306-cell live proxy matrix (6 model families x 3 routes x 17 effort cases), all pass. * fix(databricks): validate reasoning_effort and set output_config on adaptive Claude The Databricks path called `AnthropicConfig._map_reasoning_effort` for Claude models but never validated the effort string nor set `output_config.effort` for adaptive models (Claude 4.6/4.7). Since `_map_reasoning_effort` returns `type=adaptive` for ANY non-None / non-"none" string on adaptive models (including "disabled", "invalid", ""), Databricks silently accepted garbage and emitted a request without an `output_config.effort`, collapsing every adaptive tier to identical behavior. Match the Anthropic native, Bedrock Converse, Bedrock Invoke, and /v1/messages paths: when the resolved `thinking` is non-None on a 4.6/4.7 model, look up the value in `REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT` and either raise a clean `BadRequestError` or set `optional_params["output_config"]`. * fix(azure): omit model from image generation and image edit deployment requests Azure OpenAI routes image gen/edit by deployment in the URL; sending the deployment id in model breaks gpt-image-2 (invalid_value). Strip model from JSON for deployments/.../images/generations and from multipart data for .../images/edits. Non-deployment URLs (e.g. Azure AI FLUX) unchanged. Fixes #26316. Co-authored-by: Cursor <cursoragent@cursor.com> * test(azure): exercise image gen JSON filter via HTTP client; dedupe image edit URL - Image generation tests patch HTTPHandler.post / get_async_httpx_client so make_*_azure_httpx_request runs and wire json is asserted on call kwargs. - Azure image edit: strip model in finalize_image_edit_multipart_data using the same URL string the handler passes to POST (no second get_complete_url in transform). BaseImageEditConfig default finalize is a no-op. Co-authored-by: Cursor <cursoragent@cursor.com> * fix(azure_ai/anthropic): promote output_config out of extra_body so validation runs `azure_ai` is registered in `litellm.openai_compatible_providers`, so `add_provider_specific_params_to_optional_params` (litellm/utils.py) auto-stuffs any non-OpenAI kwarg (e.g. `output_config={"effort": "..."}`) into `optional_params["extra_body"]`. `AzureAnthropicConfig.transform_request` then strips `extra_body` entirely on the way out, silently dropping the param — and `AnthropicConfig._apply_output_config` never sees it, so `effort="invalid"` / `effort="xhigh"` on a non-supporting model quietly reaches the model with default behavior instead of returning a clean 400 (as the native `anthropic` provider does). Promote the keys back to top-level `optional_params` (using `setdefault` so explicit top-level values win) before delegating to the parent `AnthropicConfig`. Apply in both `validate_environment` and `transform_request` so flag detection (`is_mcp_server_used`, etc.) and output-config validation both run. Surfaced by the QA matrix expansion on PR #27074: 20 cells where Azure returned 200 while `anthropic` returned 400 — all `output_config` mode across haiku_4_5, sonnet_4_5, opus_4_5, sonnet_4_6, opus_4_6, opus_4_7 families with `effort` in {invalid, xhigh, max, low, medium, high}. Tests: * `test_output_config_promoted_from_extra_body`: valid effort reaches data * `test_invalid_output_config_effort_raises_via_extra_body`: 400 on bad effort * `test_unsupported_effort_xhigh_raises_via_extra_body`: 400 on xhigh-on-Sonnet-4.6 * `test_extra_body_promotion_does_not_clobber_top_level`: setdefault semantics * test(image_gen): expect no model in Azure image edit multipart (#26316) Align test_azure_image_edit_litellm_sdk with deployment-scoped Azure edits. Co-authored-by: Cursor <cursoragent@cursor.com> * refactor(anthropic): extract _validate_effort_for_model to prevent drift The chat completion path (`_apply_output_config`) and the /v1/messages pass-through (`AnthropicMessagesConfig._translate_reasoning_effort_to_anthropic`) both gate `max` / `xhigh` per model. The two sites had diverged from near-identical copies into separately maintained blocks, creating a real drift risk when a new model tier (e.g. Claude 4.8) lands -- a contributor could update one site and miss the other. Centralise the gating in `AnthropicConfig._validate_effort_for_model`, which returns an error message string or `None`. Each call site keeps its own provider-appropriate exception type (`BadRequestError` for the chat path, `AnthropicError` for the /v1/messages pass-through) but the gating decision now comes from one place. Net -11 LOC. Adds a parametrised unit test exercising the helper directly across 4.5 / 4.6 / 4.7 model families and `max` / `xhigh` / lower-effort inputs. Existing tests at both call sites continue to pass unchanged. Addresses Greptile finding on PR #27074. * fix(databricks): narrow reasoning_effort_value to str for mypy `non_default_params.get("reasoning_effort")` returns `Any | None`, but `REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT.get()` expects `str`. Mypy flagged this on the strict pass. Narrow with `isinstance` before the lookup; non-strings fall through to the existing `BadRequestError` below with a clean validation message, so behavior is unchanged. Fixes a regression introduced by1a10746e95in this PR. * feat(proxy): add health_check_reasoning_effort for model health checks Co-authored-by: Cursor <cursoragent@cursor.com> * test(image_gen): align Azure image gen fixture with body omitting model Expected JSON matches deployment-scoped Azure POST (#26316). Co-authored-by: Cursor <cursoragent@cursor.com> * test(anthropic/chat): force PR-local model_cost map via autouse fixture CI runs without LITELLM_LOCAL_MODEL_COST_MAP=True, so litellm.model_cost is loaded from main-branch JSON (default model_cost_map_url) instead of the PR's checked-out model_prices_and_context_window.json. Tests that assert per-model flags added in this PR (supports_max_reasoning_effort, supports_xhigh_reasoning_effort) therefore pass locally but fail in CI with 'AssertionError: assert False is True' on 5 cases: - test_anthropic_model_supports_effort_param_recognizes_supporting_models [anthropic.claude-mythos-preview, bedrock/.../mythos-preview, claude-opus-4-5-20251101] - test_supports_effort_level_handles_provider_prefixes [bedrock/invoke/us.anthropic.claude-sonnet-4-6-max-True, claude-sonnet-4-6-max-True] Add an autouse fixture at tests/test_litellm/llms/anthropic/chat/conftest.py that monkey-patches litellm.model_cost to the PR-local JSON for every test in this directory. The parent conftest already snapshots+restores litellm.model_cost per-function, so the mutation is contained. This is a scoped workaround. The proper fix is to set the env var globally in the test workflow once the ~10 inline self-set test files are audited; tracking that as a follow-up issue. * [Fix] Docker: Pin Wolfi And Uv To Multi-Arch Index Digests The previous pins resolved to single-platform amd64 manifests, so buildx pulled the same amd64 base for both linux/amd64 and linux/arm64 targets. The published OCI index then advertised an arm64 entry whose layers are byte-identical to amd64 -- arm64 users got an amd64 binary. Switch all three Dockerfiles to the multi-arch image-index digests: - cgr.dev/chainguard/wolfi-base (index has linux/amd64 + linux/arm64) - ghcr.io/astral-sh/uv:0.11.7 (index has linux/amd64 + linux/arm64) Resolved with `docker buildx imagetools inspect <ref>` -- that returns the index digest. `docker pull` + `docker inspect` returns the per-host platform digest, which is what slipped in last time. * [Fix] Docker: Pin Uv To Multi-Arch Index Digest In Remaining Dockerfiles Apply the same fix to the three Dockerfiles not in the release pipeline today (alpine, dev, health_check) so they stay correct if/when they're built for arm64 in the future. Wolfi pins are not present in these files; the python:3.11-alpine and python:3.13-slim digests they already use are multi-arch indexes that include arm64/v8, so only the uv pin needed swapping. * fix(xai): fold reasoning_tokens into completion_tokens to satisfy OpenAI invariant xAI's chat completions API accounts reasoning_tokens separately from completion_tokens, but rolls them into total_tokens. This breaks the OpenAI invariant total_tokens == prompt_tokens + completion_tokens that downstream consumers (including litellm's own _usage_format_tests in tests/llm_translation/base_llm_unit_tests.py:58) rely on. Live capture (grok-3-mini-beta, 2026-05-04): prompt=14, completion=10, total=336, reasoning=312 14 + 10 = 24, NOT 336. OpenAI's o1/o3 reasoning models include reasoning_tokens in completion_tokens, leaving the prompt+completion=total invariant intact. xAI deviates. This patch aligns xAI to OpenAI semantics by folding reasoning_tokens into completion_tokens after the parent OpenAI parser runs. The fold is idempotent and defensive: - Only fires when total_tokens == prompt_tokens + completion_tokens + reasoning_tokens (the documented xAI shape). Refuses to fold if the gap doesn't match, guarding against silent corruption when xAI changes accounting. - Skips if completion_tokens already covers the gap (already normalised — e.g. cost calc replays a previously-folded Usage). xai.cost_calculator.cost_per_token already added reasoning_tokens to the visible completion count for billing. Post-fold the Usage block now satisfies that invariant directly, so the cost calc would double-bill. Updated cost_per_token to detect the OpenAI-normalised shape (total == prompt + completion) and skip the reasoning add-on in that case, falling through to the legacy raw-shape behaviour for callers that bypass the transformation (e.g. proxy log replay). Tests: - Adds TestXAIReasoningTokenFolding covering: gap-explained-fold, idempotent-no-double-fold, no-reasoning-skip, gap-mismatch-skip. - Adds test_already_normalised_usage_does_not_double_count_reasoning to lock the cost-calc idempotency. - Updates 7 pre-existing cost-calc tests whose total_tokens was internally inconsistent (used the OpenAI-normalised total but kept reasoning_tokens external) to use the documented xAI raw shape total = prompt + visible completion + reasoning. Pre-existing values masked the missing-fold by accident. Verified end-to-end against the live xAI API: LITELLM_LOCAL_MODEL_COST_MAP=False (CI default) + XAI_API_KEY set + pytest tests/llm_translation/test_xai.py::TestXAIChat::test_prompt_caching -> PASSED in 18.81s (was: AssertionError on usage.total_tokens == usage.prompt_tokens + usage.completion_tokens) 20/20 tests in tests/test_litellm/llms/xai/test_xai_cost_calculator.py and 8/8 in tests/test_litellm/llms/xai/test_xai_chat_transformation.py pass. * refactor(bedrock/converse): delegate effort gating to AnthropicConfig._validate_effort_for_model Removes the duplicated max/xhigh gating logic in _validate_anthropic_adaptive_effort and the now-unused _supports_effort_level_on_bedrock helper. Per-model gating now flows through the centralized AnthropicConfig._validate_effort_for_model (whose _supports_effort_level already strips Bedrock prefixes), so the chat completion, /v1/messages, and Bedrock Converse paths can't drift when a new gated effort tier is added. * Implement normalize_nonempty_secret_str function to trim whitespace from secrets and treat empty values as unset. Update proxy_server to use this function for Grafana credentials. Enhance tests to validate the new normalization behavior. * Fix qdrant semantic cache miss metadata * chore(deps): refresh dependency locks * chore(deps): authorize pytest license * fix: preserve tokenizer decode round trips * refactor(anthropic): drive adaptive-thinking gate via supports_adaptive_thinking flag Three of greptile's open comments on #27074 (P2 converse:512, P1 databricks:361, and the underlying capability-flag policy rule) flagged the same pattern: _is_claude_4_6_model(...) or _is_claude_4_7_model(...) used inline as a runtime 'is this an adaptive-thinking model?' check. That requires a code release each time a new adaptive Claude lands. Consolidate the inline gating to AnthropicModelInfo._is_adaptive_thinking_model, and switch the helper itself to read a new supports_adaptive_thinking flag from `model_prices_and_context_window.json` via `_supports_factory`, falling back to the family pattern only when the model-map entry doesn't carry the flag (preserves OpenRouter / Vercel / Bedrock-prefixed variants that route through the same code path with non-canonical ids). Adds `supports_adaptive_thinking: true` to the four 4.6/4.7 anthropic entries (opus-4-6 + dated, opus-4-7 + dated, sonnet-4-6). Bedrock-prefixed and Vertex-prefixed entries don't need the flag because both fall back through the family pattern (the helper short-circuits early on True from either path) and the bedrock/vertex Claude IDs all match the existing opus-4-{6,7} / sonnet-4-{6,7} pattern. Affected call sites: - `bedrock/chat/converse_transformation.py:_handle_reasoning_effort_parameter` - `anthropic/chat/transformation.py:_map_reasoning_effort` - `anthropic/chat/transformation.py:map_openai_params` (output_config branch) - `databricks/chat/transformation.py:map_openai_params` (output_config branch) The remaining `_is_claude_4_6_model` / `_is_claude_4_7_model` references in `AnthropicConfig._validate_effort_for_model` and `AnthropicConfig.get_supported_openai_params` are intentionally retained: they're per-model gating fallbacks for variants whose model-map entries don't yet carry the `supports_max_reasoning_effort` / `supports_reasoning` flag. Those are documented in-place. Tests: 537 anthropic/bedrock/databricks/vertex/messages tests pass. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * chore(deps): address dependency review notes * test(model_prices): add supports_adaptive_thinking to schema `test_aaamodel_prices_and_context_window_json_is_valid` validates the model-map JSON against an explicit schema with `additionalProperties`, so the new `supports_adaptive_thinking` flag added in98ced0ae43needs a matching schema entry. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * refactor: remove unnecessary comments from #27074 Strip out the explanatory and historical comments that don't carry business-logic justification. Comments that simply narrate what code does — or that explain prior behavior, what was changed, or which PR introduced a fix — are removed. Docstrings are reduced to a one-line summary where the long form repeated information already evident from the code or test data. No code-behavior changes. All 643 affected unit tests still pass. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test: keep decode token test local * chore(deps): align dashboard node engine * feat: selectively apply routing strategy according to model name * style: make _model_supports_effort_param more concise * refactor(anthropic,bedrock): hoist drop_params output_config warning to module constant Three call sites (anthropic chat, bedrock converse, bedrock invoke messages) emitted the same '...Effort is only supported on Opus 4.5+, Sonnet 4.6+, and Mythos Preview' warning verbatim. Extract DROP_UNSUPPORTED_OUTPUT_CONFIG_WARNING in litellm/llms/anthropic/chat/transformation.py and import it from the bedrock sites so future copy edits live in one place. Addresses Michael's review on PR #27074. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * refactor(anthropic,bedrock,databricks): factor BadRequestError for unknown reasoning_effort Three call sites raised the same BadRequestError("Invalid reasoning_effort: ... Must be one of 'minimal', 'low', ...") block when REASONING_EFFORT_TO_OUTPUT_CONFIG_EFFORT returned None: anthropic chat map_openai_params, bedrock converse _handle_reasoning_effort_parameter, and databricks chat reasoning_effort path. Extract AnthropicConfig._raise_invalid_reasoning_effort(model, value, llm_provider) so future copy edits / valid-set changes happen in one place. Typed as NoReturn so type-checkers correctly narrow control flow at call sites. Addresses Michael's review on PR #27074. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * Clean up Redis semantic cache isolation fallback * fix(guardrails): align banned_keywords + azure_content_safety call_type gates with runtime route_type The hooks gated on ``call_type == "completion"`` but the proxy ingress passes ``route_type`` straight through as ``call_type`` — ``"acompletion"`` for /v1/chat/completions and ``"aresponses"`` for /v1/responses. Tests passed because they used the literal sync ``"completion"`` value, masking the gap. Switch both hooks to ``is_text_content_call_type`` (matches the canonical runtime values: completion / acompletion / aresponses) and update existing tests to assert against runtime values, plus parametrize a regression test that pins the gate. * fix: remove unused import * Add semantic cache legacy migration flag * Treat 0 team_member_budget as no cap * chore(caching): annotate qdrant quantization_params dict type Mypy infers the dict's value type from the first branch (Dict[str, bool]) which clashes with the scalar branch's mixed-type inner dict. Explicit Dict[str, Any] annotation lifts the inference. * chore(caching): remove allow_legacy_unscoped_cache_hits opt-in The flag was an opt-in escape hatch for the cross-tenant leak the rest of the patch closes — flipping it on (env var or constructor param) re-enables exactly the VERIA-54 primitive on either backend. There is no operational need that the secure path doesn't already meet: - Qdrant: legacy points without ``litellm_cache_key`` payload are excluded by the must-clause filter and treated as misses; new sets populate the cache key, so cold-start lasts only as long as the natural cache rebuild. - Redis: existing unscoped index can't carry the new schema; the init path falls back to ``{name}_isolated`` (and recreates it on stale schema), leaving the legacy index untouched. Drop the constructor param, env-var fallback, ``_using_legacy_unscoped_index`` flag, the legacy-reuse branch in ``_init_semantic_cache``, and the matching guards in set/get paths. Update tests to drop the legacy-mode cases and assert the secure-only behaviour. * fix(container): keep ownership-filter exceptions out of the LLM-error path filter_container_list_response runs after the upstream call has already succeeded; treating an ownership-lookup failure as an LLM-API error fires post_call_failure_hook for a successful upstream call and returns a misleading provider-shaped error to the client. Run the filter outside the try/except so genuine LLM errors stay scoped to the upstream call. * chore(container,skills): LRU eviction for owner caches; widen file_purpose Literal Two cleanups from the /simplify pass: * ``_CONTAINER_OWNER_CACHE`` and ``_SKILL_CACHE`` now LRU-evict via ``OrderedDict.popitem(last=False)`` instead of full ``clear()`` at capacity. Full clears converted a steady-state cached workload into a periodic full-DB-load oscillation as the cache repopulated from zero and cleared again. Reads now ``move_to_end`` so the just-touched entry survives the next eviction. Mirrors the pre-existing LRU pattern in ``_remember_container_owner``. * ``LiteLLM_ManagedObjectTable.file_purpose`` Literal now includes ``"container"`` so Pydantic validation accepts rows written by the ownership store. * chore(container,skills): drop legacy-access opt-out env vars LITELLM_ALLOW_UNTRACKED_CONTAINER_ACCESS and LITELLM_ALLOW_UNOWNED_SKILL_ACCESS were operator-toggleable opt-outs for the cross-tenant access primitive this PR closes — flipping either on re-enabled exactly the VERIA-20 read path. Default-secure with no escape hatch matches sibling fixes (vector-store cred isolation, semantic cache key isolation, user_config strip): all rejected the opt-out-of-security pattern. Untracked containers and unowned skills (rows that pre-date this enforcement) are admin-only. Non-admin owners need to either re-create via the now-tracked flow or have an admin assign ``created_by`` on the existing row. Update tests to assert the strict-only behaviour. * fix(ownership): reject identity-less callers instead of sharing a sentinel scope UNSCOPED_RESOURCE_OWNER_SCOPE collapsed every caller without an identity field (no user_id / team_id / org_id / api_key / token) into a single shared owner — a cross-tenant access primitive: any two such callers could see and delete each other's containers and skills. Drop the sentinel. ``get_primary_resource_owner_scope`` returns ``None`` and ``get_resource_owner_scopes`` returns ``[]`` for identity-less callers. ``record_container_owner`` and ``LiteLLMSkillsHandler.create_skill`` now reject creates from identity-less callers with a 403 instead of stamping the placeholder. Read paths already deny ``owner is None`` correctly so legacy rows (if any) are admin-only. * fix(proxy): include request-blocked callback params in auth bans * fix: keep skills handler FastAPI-free; fold gcs deny list into the body bouncer Two cleanups: * ``LiteLLMSkillsHandler.create_skill`` raised ``HTTPException`` for identity-less callers, importing FastAPI from a ``litellm/llms/`` module — that violates the project rule that FastAPI lives only under ``proxy/``. Switch to ``ValueError`` (the same shape the rest of the handler uses for not-found/forbidden) and update the test. * The proxy-auth body bouncer derived its observability ban list from ``_supported_callback_params`` only, missing ``_request_blocked_callback_params`` (where ``gcs_bucket_name`` and ``gcs_path_service_account`` live). Two recently-merged sibling PRs (#27019 added the deny list, #27081 added the test asserting these are rejected at the request body root) crossed without folding them together. Union the GCS deny list into the bouncer's derivation so the single source of truth covers both code paths. * fix(proxy): normalize managed resource team owner field * chore: simplify ownership tracking — drop thin stores, in-memory fallback, hand-rolled cache Substantial reduction (~765 LOC) without changing the security boundary: * Drop ContainerOwnershipStore and LiteLLMSkillsStore — both were one-method-per-Prisma-call wrappers. Inline the calls instead, matching the established pattern in vector_store_endpoints, agent_endpoints, and mcp_server/db.py. * Drop the prisma_client is None in-memory fallback. Production deploys always have Prisma; running ownership-critical paths on a process-local dict is a security footgun in the dev-mode case it was meant to support, and complicates every code path with a branch. Fail-secure: skip recording if Prisma is unavailable, and treat reads as "not found" (admin-only). * Drop the hand-rolled module-level cache. Replace with the existing litellm.caching.in_memory_cache.InMemoryCache, which already has TTL + max-size + eviction tested in its own module. Sentinel string for negative caching since InMemoryCache can't disambiguate "miss" from "cached as None". * Tests: drop coverage for removed code paths (in-memory fallback, hand-rolled cache internals). Keep tests for actual behavior (cache hit-rate, negative caching, owner check, list filtering, identity-less reject, admin bypass). * fix(container): cache list-allow-set, track admin-created containers Address Greptile P2 follow-ups from the prior round: * Cache ``_get_allowed_container_ids`` (60s LRU/TTL keyed by sorted owner-scope tuple) so ``GET /v1/containers`` doesn't issue a fresh ``find_many`` against ``litellm_managedobjecttable`` on every list call. Invalidate the caller's own cache entry when they record a new owner so the just-created container shows up on their next list. * Tighten the admin early-return in ``record_container_owner`` to skip ONLY when there's literally no container ID to stamp. An admin with identity (the master-key path populates ``user_id`` + ``api_key``) flows through the normal record path so admin-created containers are tracked like any other caller's. The truly-identity-less admin case still falls through to the 403 below — correct fail-secure default. Skill-cache invalidation gap (also flagged by Greptile) is moot: there is no skill update endpoint exposed; ownership-affecting mutations are only delete (already invalidates) and create (new ID, no cache entry to update). * chore(container): use delete_cache, json-encode scope key, clean test /simplify follow-ups: * Replace the two-``pop`` reach into ``cache_dict``/``ttl_dict`` with the existing public ``InMemoryCache.delete_cache(key)`` — the same idiom used elsewhere in the proxy. Bonus: ``delete_cache`` calls ``_remove_key`` which also handles ``expiration_heap`` consistency the direct pops were silently leaking. * JSON-encode the sorted scope list for the cache key instead of ``"|".join``. ``user_id`` / ``team_id`` / ``org_id`` / ``api_key`` are free-form strings and could contain a literal ``|`` — JSON quoting escapes any in-string separator unambiguously. * Extract ``_allowed_container_ids_cache_key()`` so the read and invalidation sites compute the key the same way. * Fix a placeholder-then-overwrite test construction: the ``__module__.split(".")[0] and "proxy_admin"`` line evaluated to a literal string that was immediately overwritten with the real enum value. Hoist the import and construct directly. * [Fix] Tests: Replace deprecated openrouter/claude-3.7-sonnet with claude-sonnet-4.5 OpenRouter has dropped active endpoints for anthropic/claude-3.7-sonnet, causing test_reasoning_content_completion to fail with a 404 "No endpoints found" error. Switch to anthropic/claude-sonnet-4.5, which is current and supports reasoning streaming. * feat: routing groups ui * fix(security): prevent secret_fields from leaking into spend logs secret_fields (containing raw HTTP headers including Authorization Bearer tokens) was being included in proxy_server_request['body'] because the body snapshot was a copy.copy(data) of the full request dict. This body gets serialized and persisted in the LiteLLM_SpendLogs table, exposing user credentials in the database. Root cause: data['secret_fields'] was set before the body snapshot at data['proxy_server_request']['body'] = copy.copy(data), so the full raw headers (including auth tokens) ended up in the snapshot. Fix (defense in depth): 1. Exclude 'secret_fields' when creating the body snapshot in litellm_pre_call_utils.py (primary fix) 2. Strip 'secret_fields' in _sanitize_request_body_for_spend_logs_payload as a secondary safeguard secret_fields remains available on the live data dict for legitimate downstream consumers (MCP, Responses API). Co-authored-by: Krrish Dholakia <krrish-berri-2@users.noreply.github.com> * chore: update Next.js build artifacts (2026-05-05 02:13 UTC, node v20.20.2) * [Fix] Proxy: Break managed-resources import cycle on Python 3.13 The Python 3.13 CCI smoke matrix surfaces a partially-initialized-module ImportError when loading the managed files hook chain: litellm.proxy.hooks/__init__ (mid-import) -> enterprise.enterprise_hooks -> litellm_enterprise.proxy.hooks.managed_files -> litellm.llms.base_llm.managed_resources.isolation -> litellm.proxy.management_endpoints.common_utils -> litellm.proxy.utils (re-enters litellm.proxy.hooks) The except ImportError block in hooks/__init__.py silently swallowed the failure, leaving managed_files unregistered and POST /files returning 500 "Managed files hook not found". Two-layer fix: - Inline the 3-line _user_has_admin_view check in isolation.py instead of importing it from litellm.proxy.management_endpoints.common_utils. litellm.llms.* should not depend on litellm.proxy.* — removing this layering violation breaks the cycle at its root. - Define PROXY_HOOKS and get_proxy_hook before the conditional enterprise import in litellm/proxy/hooks/__init__.py, so any future re-entry resolves the public names instead of hitting an ImportError on a partially-initialized module. Also fold in two unrelated CCI repairs surfaced in the same staging run: - tests/otel_tests/test_key_logging_callbacks.py: per-key gcs_bucket_name / gcs_path_service_account are now stripped by initialize_dynamic_callback_params, so the GCS client falls through to the env-only branch. Update the assertion to match the new "GCS_BUCKET_NAME is not set" message. - .circleci/config.yml: tests/pass_through_tests now resolves google-auth-library@10.x via the @google-cloud/vertexai 1.12.0 bump, which uses dynamic ESM imports Jest 29 cannot load without --experimental-vm-modules. Pass that flag in the Vertex JS test step. Adds tests/test_litellm/proxy/hooks/test_proxy_hooks_init.py as a regression guard: managed_files / managed_vector_stores must register, and isolation.py must not transitively import litellm.proxy.utils. * [Fix] Proxy: Address Greptile feedback on hook-cycle PR - Move _user_has_admin_view to litellm.proxy._types as user_api_key_has_admin_view (single source of truth). common_utils.py and isolation.py both import from there now, removing the duplicated role-check that could silently diverge if new admin roles are added. - Add pytest.importorskip("litellm_enterprise") to the two regression tests that assert managed_files / managed_vector_stores are registered; those keys come from ENTERPRISE_PROXY_HOOKS so the tests would fail unconditionally in a checkout without the enterprise extra installed. * [Fix] Lint: Mark _user_has_admin_view re-export in common_utils Ruff F401 flagged the aliased import as unused within common_utils.py because the name is consumed only by external modules (~15 callers across guardrails, spend tracking, MCP, agents, management endpoints). Add `# noqa: F401 re-exported` so the alias survives lint while keeping a single source of truth in litellm.proxy._types. * refactor(azure): move image gen JSON helper; rename image edit finalize hook - Add image_generation/http_utils.azure_deployment_image_generation_json_body; call from azure.py (keeps AzureChatCompletion focused on chat). - Rename finalize_image_edit_multipart_data to finalize_image_edit_request_data with docstring covering multipart and JSON POST payloads (review feedback). Co-authored-by: Cursor <cursoragent@cursor.com> * test(proxy): cover health_check_reasoning_effort for completion mode Co-authored-by: Cursor <cursoragent@cursor.com> * [Fix] Tests: Use master key for /otel-spans in test_chat_completion_check_otel_spans /otel-spans now requires proxy admin (returns 401 'Only proxy admin can be used to generate, delete, update info for new keys/users/teams. Route=/otel-spans' for non-admin callers). Switch the GET call to use the master key sk-1234 while keeping the generated key for the chat-completion request that produces the spans. * [Fix] Tests: Pick chat-completion OTEL trace by content, not recency The /otel-spans endpoint returns process-wide spans and tags most_recent_parent by max start_time. After tightening that route to proxy_admin (sk-1234), the GET /otel-spans request itself emits auth spans that beat the chat-completion spans on start_time, so most_recent_parent now points at the request's own auth trace (['postgres', 'postgres']) and the >=5-span assertion fails. Pick the chat-completion trace by content: it is the only trace whose span list is a superset of {postgres, redis, raw_gen_ai_request, batch_write_to_db}. Verified locally end-to-end against otel_test_config.yaml + OTEL_EXPORTER=in_memory: 3/3 runs green. * [Fix] CI: Enable VCR replay for test_azure_o_series The Azure o-series tests were excluded from the conftest's VCR auto-marker because of a respx/vcrpy transport-patching conflict, but the only respx reference in the file was an unused `MockRouter` import. Drop the dead import and remove the file from the conflict set so cassettes record on first run and replay thereafter, eliminating the 60-95s live Azure latency that was crashing xdist workers under --timeout=120 thread-mode timeouts. * [Fix] Tests: Restore /metrics access for prometheus test suite /metrics now requires auth by default; tests/otel_tests/test_prometheus.py makes 4+ unauthenticated GETs against http://0.0.0.0:4000/metrics, so every prometheus test in CI now fails the metric assertion. Set require_auth_for_metrics_endpoint: false in otel_test_config.yaml to opt out for this test job, which scrapes /metrics directly. Verified locally: 8/8 prometheus tests green (one flaky retry on test_proxy_success_metrics that pre-dates this PR). Also drop the -x stop-on-first-failure flag from the otel test command so all failures in the job surface in a single CI run rather than hiding behind whichever one trips first. * [Perf] CI: Skip Redundant Playwright Apt Install in E2E UI Job The cimg/python:3.12-browsers base image already ships every Chromium system dependency Playwright needs (libnss3, libatk-bridge2.0-0, libcups2, etc. — the install log shows them all as "already the newest version"). Passing --with-deps to `npx playwright install` therefore runs an apt-get update + install for nothing, but pays the full cost of hitting Ubuntu mirrors. On a recent run those mirrors stalled hard: apt-get update alone took 6m53s at 81.5 kB/s with several archives returning connection refused. Drop --with-deps and persist ~/.cache/ms-playwright alongside node_modules so the Chromium binary is also reused across runs. Bump the cache key to v2 so the existing v1 entry (which only contained node_modules) is not loaded and skipped over the new browser path. * [Fix] Docker: Remove Hardcoded Prisma Binary Target For Multi-Arch Builds PRISMA_CLI_BINARY_TARGETS="debian-openssl-3.0.x" was hardcoded in docker/Dockerfile.non_root by #17695. On a buildx linux/arm64 leg this forces prisma to download the amd64 schema-engine into an arm64 image, so 'prisma migrate deploy' fails at startup with 'Could not find schema-engine binary'. Removing the env lets prisma auto-detect per build platform: amd64 builds still resolve to debian-openssl-3.0.x (Wolfi falls back to debian, same binary as before), and arm64 builds now correctly fetch linux-arm64-openssl-3.0.x. The offline-cache pre-warm goal of #17695 is preserved — only which binaries fill the cache changes. Fixes #19458 * [Fix] UI: Clear Admin Session Cookies Before Establishing Invited User's Session (#27227) The invite-signup form was writing the new user's token via raw `document.cookie` at `path=/`, while the rest of the auth surface uses `storeLoginToken` (which writes at `path=/ui` and mirrors to sessionStorage). After signup the inviter's `path=/ui` cookie kept winning path-specificity matching, and sessionStorage still held the inviter's token, so the dashboard rendered as the inviter rather than the newly created user. Treat invite signup as a principal-change boundary — clear prior session cookies first, then store the new token via the canonical helper. * test: add 24hr Redis-backed VCR cache to additional test suites (#27159) * test: add 24hr Redis-backed VCR cache to additional test suites Extracts the existing llm_translation VCR plumbing into a reusable helper (tests/_vcr_conftest_common.py) and wires it into the conftest.py files of the test directories listed in LIT-2787: audio_tests, batches_tests, guardrails_tests, image_gen_tests, litellm_utils_tests, local_testing, logging_callback_tests, pass_through_unit_tests, router_unit_tests, unified_google_tests The same helper is also adopted by the pre-existing llm_translation and llm_responses_api_testing conftests to remove the copy-pasted VCR setup. Each consuming conftest: - registers the Redis persister via pytest_recording_configure - auto-marks collected tests with pytest.mark.vcr (skipping respx-using files where applicable, since respx and vcrpy both patch httpx) - gates cassette writes on test success via _vcr_outcome_gate The cache is opt-in via CASSETTE_REDIS_URL; when unset, VCR is disabled and tests hit live providers as before. LITELLM_VCR_DISABLE=1 still forces a bypass for ad-hoc local runs. Test directories that run LiteLLM proxy in Docker (build_and_test, proxy_logging_guardrails_model_info_tests, proxy_store_model_in_db_tests) are intentionally not included: VCR.py patches the in-process httpx transport and cannot intercept calls made from inside a Docker container. The installing_litellm_on_python* jobs make no LLM calls and don't benefit from caching. https://linear.app/litellm-ai/issue/LIT-2787/add-24hr-caching-to-additional-test-suites * test(vcr): add safe-body matcher to handle JSONL and binary request bodies vcrpy's stock body matcher inspects Content-Type and unconditionally runs json.loads on application/json bodies. JSON Lines payloads (used by the Bedrock batch S3 PUT and other upload paths) crash that with json.JSONDecodeError: Extra data, before the matcher can return 'not a match'. This was the root cause of the batches_testing CI job failing on test_async_create_file once VCR auto-marking was applied to the batches_tests directory. Add a conservative byte-equality body matcher and use it in place of 'body' in the shared match_on tuple. The matcher is strictly more conservative than vcrpy's default — the only thing it gives up is 'different JSON key order is treated as the same body', which doesn't apply to deterministic litellm-built request payloads. It can never produce a false positive that the default would have rejected, so there is no cross-contamination risk. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): exclude tests that VCR replay actively breaks A few tests are incompatible with cassette replay and were failing on the latest CI run after VCR auto-marking was extended to local_testing and logging_callback_tests: - test_amazing_s3_logs.py (logging_callback_tests): the test asserts on a per-run response_id that should round-trip through a real S3 PUT/LIST. vcrpy's boto3 stub intercepts the PUT and the LIST replays stale keys, so the freshly-generated id is never found. - test_async_embedding_azure (logging_callback_tests) and test_amazing_sync_embedding (local_testing): the failure branches deliberately pass api_key='my-bad-key' to assert that the failure callback fires. We scrub auth headers from cassettes (so the bad-key request matches the prior good-key request), and vcrpy replays the recorded 200 — the failure callback never fires. - test_assistants.py (local_testing): the OpenAI Assistants polling APIs mint fresh thread/run IDs every recording session and then poll until status=='completed'. Replays of those polled GETs can never match a freshly-generated run id, so every CI run effectively re-records and the suite blows past the 15m no_output_timeout. Skip these from VCR auto-marking so they continue to hit live providers as they did before this change. The remaining tests in each directory still get cached. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): expand skip lists for second batch of incompatible tests Followup to the previous commit. After re-running CI on the rebuilt branch, three more tests surfaced as VCR-replay-incompatible: - litellm_utils_testing :: test_get_valid_models_from_dynamic_api_key Calls GET /v1/models with api_key='123' to assert the result is empty. We scrub auth headers, so the bad-key request matches the prior good-key cassette and replays the recorded model list. - litellm_utils_testing :: test_litellm_overhead.py Measures litellm_overhead_time_ms as a percentage of total wall-clock time. With cached responses the upstream 'network' time collapses to microseconds, blowing past the 40%% threshold the test asserts on. Skip the whole file (every parametrization is at risk). - local_testing_part1 :: test_async_custom_handler_completion and test_async_custom_handler_embedding Same bad-key failure-callback pattern as the already-skipped test_amazing_sync_embedding. - litellm_router_testing :: test_router_caching.py Asserts on litellm's own router-level response cache by comparing response1.id to response2.id across repeat upstream calls (test bypasses litellm cache via ttl=0 and expects upstream to return a *new* id). With VCR replay both upstream calls return the same cassette body, so the ids are identical. Skip the whole file. - logging_callback_tests :: test_async_chat_azure (preemptive) Same shape as already-skipped test_async_embedding_azure; was masked by upstream OpenAI rate-limit failures on baseline. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): use item.path and tighten matcher docstring - Replace pytest's deprecated item.fspath with item.path in apply_vcr_auto_marker_to_items so we don't emit deprecation warnings under pytest 8. - Clarify _safe_body_matcher docstring to reflect actual behavior (direct == first, then UTF-8 bytes comparison, no repr fallback). Addresses Greptile review feedback on PR #27159. * test(vcr): swallow all RedisError on cassette save/load Cassette persistence is strictly best-effort: any Redis-side failure (connection blip, timeout, OutOfMemoryError when the maxmemory cap is hit, READONLY replicas, etc.) should degrade to 'test passed but cassette not cached' rather than fail the test on teardown. Previously the persister only caught ConnectionError and TimeoutError, so OutOfMemoryError — which Redis Cloud raises when the cassette cache hits its memory cap and there are no evictable keys — propagated out of vcrpy's autouse fixture and ERRORed otherwise-passing tests on teardown. This caused the litellm_utils_testing CircleCI job to fail on the latest commit's run, even though the underlying test was a unit test that used mock_response and produced no real upstream traffic (the cassette was dirtied by a background langfuse callback). The rerun only succeeded because Redis evictions happened to free enough room before the SET — i.e. it was timing-dependent flakiness. Catch redis.exceptions.RedisError (the common base of all server- and client-side Redis exceptions) on both save and load, and parametrize the regression tests across ConnectionError, TimeoutError, and OutOfMemoryError to pin the new behavior. * test(vcr): surface cassette-cache failures with warnings + session banner When the persister silently swallows a Redis OOM (or any RedisError) on save/load there is otherwise no visible signal that the cache is degraded — tests pass, the cassette just isn't persisted, and the next session still hits the same Redis at the same near-cap memory. Add three layers of observability so that failure mode is loud: 1. Per-process health counters ("save_failures", "load_failures", and the last error string for each), exposed via cassette_cache_health() and reset via reset_cassette_cache_health(). The persister increments these in addition to logging. 2. VCRCassetteCacheWarning (UserWarning subclass) emitted via warnings.warn() inside the persister's except block. Pytest's built-in warnings summary at session end automatically lists every such warning, so the failure is visible in CI logs without any conftest-level wiring. 3. Session-end banner via emit_cassette_cache_session_banner() and a stderr-fallback atexit handler registered from register_persister_if_enabled(). Two states: - red "VCR CASSETTE CACHE DEGRADED" when save_failures or load_failures > 0 - yellow "VCR CASSETTE CACHE NEAR CAPACITY" (no failures, but used_memory >= 85% of maxmemory) so the next session knows the Redis is approaching OOM before any SET actually fails Capacity comes from a best-effort INFO memory probe (cassette_cache_capacity_snapshot) that returns None on any failure or when maxmemory is uncapped. The atexit handler skips xdist workers so only the controller emits. Tests: parametrize the existing save/load swallow-error tests across ConnectionError/TimeoutError/OutOfMemoryError, add direct tests for the health counters and warning emission, and a new test_vcr_conftest_common_banner.py covering banner output for every state (silent/red/yellow/disabled/xdist-worker). * test(vcr): bucket cassettes by API key fingerprint, drop bad-key skips Tests that deliberately call an LLM API with a bad key (e.g. to assert that the failure callback fires, or that check_valid_key returns False) were being silently served the prior good-key cassette: we scrub the real Authorization / x-api-key header from the cassette before storing it, so a follow-up bad-key call is byte-identical to the good-key call under the existing match_on tuple. Add a 'key_fingerprint' custom matcher that distinguishes requests by the SHA-256 of their API-key headers. The fingerprint is stamped into a synthetic 'x-litellm-key-fp' header by a new before_record_request hook, which then strips the real auth headers (we have to do the scrubbing here instead of via vcrpy's filter_headers knob, because filter_headers runs *first* and would erase the value we want to hash). Bad-key requests now get a different cassette bucket than good-key requests, so vcrpy will not replay a recorded 200 in place of the expected 401. The fingerprint is a one-way hash of the secret, so cassettes never contain the key. This permanently removes the 'bad-key' category of skips: - tests/local_testing: dropped ::test_amazing_sync_embedding, ::test_async_custom_handler_completion, ::test_async_custom_handler_embedding - tests/logging_callback_tests: dropped ::test_async_chat_azure, ::test_async_embedding_azure - tests/litellm_utils_tests: dropped ::test_get_valid_models_from_dynamic_api_key Coverage: 7 new unit tests in tests/test_litellm/test_vcr_safe_body_matcher.py covering header stripping, fingerprint determinism, no-auth bucketing, good-vs-bad key discrimination, x-api-key (Anthropic/Azure) discrimination, and idempotence under replay. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): drop redundant comments and docstrings Trim narration of code that is already self-evident from function and variable names. Keep the two genuinely non-obvious bits: - ordering constraint between filter_headers and before_record_request, which would invite a maintainer to re-introduce the bug if removed - the per-directory _VCR_INCOMPATIBLE_FILES rationale, since 'why exactly is this skipped' is not knowable from the test name alone Also drop the 40-line commented-out drop-in conftest snippet at the bottom of _vcr_conftest_common.py — the consuming conftests are the canonical reference. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): make _before_record_request idempotent vcrpy invokes before_record_request more than once per request: can_play_response_for calls it, then __contains__ / _responses (reached via play_response) call it again on the result. The second invocation sees a request whose auth headers we already stripped, so a naive recompute yields "no-key" and overwrites the real fingerprint stored in the header. This makes can_play_response_for and play_response disagree on matchability — the former says "yes, we have a stored response for this" (matching no-key to no-key) and the latter throws UnhandledHTTPRequestError because it computes a fresh real fingerprint that doesn't match the stored no-key. In CI this manifested as ~30 failing tests across guardrails_testing, audio_testing, batches_testing, image_gen_testing, llm_responses_api, litellm_router_unit_testing, etc. Skip the recompute when the header is already set, so re-applying the hook is a no-op. Adds a regression test that fires the hook twice on the same dict and asserts the fingerprint stays put. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * test(vcr): drop more redundant docstrings and headers * test(vcr): enable 24hr cache for ocr_tests and search_tests These two directories were the only non-dockerized test suites in the build_and_test workflow that make live LLM/provider API calls but were not VCR-enabled by this PR. Together they account for 96 tests: - tests/ocr_tests/ (31): Mistral OCR, Azure AI OCR, Azure Document Intelligence, Vertex AI OCR. Pure-unit tests inside the same files (e.g. TestAzureDocumentIntelligencePagesParam) make no HTTP calls and become benign VCR NOOPs. - tests/search_tests/ (65): Brave, DataForSEO, DuckDuckGo, Exa, Firecrawl, Google PSE, Linkup, Parallel.ai, Perplexity, SearchAPI, Searxng, Serper, Tavily. Both directories use the canonical minimal conftest pattern from tests/audio_tests/conftest.py with no skip lists. None of the test files use respx, none assert on per-call upstream non-determinism (no response1.id != response2.id, no overhead-as-fraction-of-total, no live polling), so the default match_on tuple should cache cleanly. If a flake surfaces during the first cassette-recording CI run, we can add a targeted skip the same way we did for the other dirs. Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> * [Fix] Team UI: handle legacy dict shape for metadata.guardrails (#27224) * [Fix] Team UI: handle legacy dict shape for metadata.guardrails A team can have metadata.guardrails stored as {"modify_guardrails": bool} (the permission-flag shape introduced in PR #4810) rather than the expected string[]. The opt-out logic added in PR #25575 calls .filter() on this field, which throws TypeError on a dict and crashes the team detail page. Add a safeGuardrailsList helper that returns [] when the field is not an array, and route the three read sites through it. * [Fix] Team UI: inline Array.isArray guards for guardrails metadata Replace the safeGuardrailsList helper with inline Array.isArray checks at each call site, and apply the same guard to opted_out_global_guardrails for consistency. No known legacy dict rows for opted_out_global_guardrails, but the unguarded `|| []` pattern is the same shape risk. Six call sites now defended directly: three for metadata.guardrails and three for metadata.opted_out_global_guardrails. * chore: update Next.js build artifacts (2026-05-05 22:45 UTC, node v20.20.2) (#27240) * [Infra] Bump deps (#27157) * bump: version 0.4.70 → 0.4.71 * bump: version 0.1.39 → 0.1.40 * uv lock --------- Co-authored-by: Michael Riad Zaky <michaelr@Mac.localdomain> Co-authored-by: Mateo Wang <277851410+mateo-berri@users.noreply.github.com> Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> Co-authored-by: ryan-crabbe-berri <ryan@berri.ai> Co-authored-by: user <70670632+stuxf@users.noreply.github.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: shivam <shivam@berri.ai> Co-authored-by: Mateo Wang <mateo-berri@users.noreply.github.com> Co-authored-by: Yassin Kortam <yassin@berri.ai> Co-authored-by: Krrish Dholakia <krrish+github@berri.ai> Co-authored-by: shin-berri <shin-laptop@berri.ai> Co-authored-by: Sameer Kankute <sameer@berri.ai> Co-authored-by: Sameer Kankute <Sameerlite@users.noreply.github.com> Co-authored-by: Michael-RZ-Berri <michael@berri.ai> Co-authored-by: harish-berri <harish@berri.ai> Co-authored-by: Yassin Kortam <yassinkortam@g.ucla.edu> Co-authored-by: Michael Riad Zaky <michaelr@Michaels-MacBook-Air.local> Co-authored-by: Krrish Dholakia <krrish-berri-2@users.noreply.github.com>
39972 lines
1.4 MiB
39972 lines
1.4 MiB
{
|
|
"sample_spec": {
|
|
"code_interpreter_cost_per_session": 0.0,
|
|
"computer_use_input_cost_per_1k_tokens": 0.0,
|
|
"computer_use_output_cost_per_1k_tokens": 0.0,
|
|
"deprecation_date": "date when the model becomes deprecated in the format YYYY-MM-DD",
|
|
"file_search_cost_per_1k_calls": 0.0,
|
|
"file_search_cost_per_gb_per_day": 0.0,
|
|
"input_cost_per_audio_token": 0.0,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "one of https://docs.litellm.ai/docs/providers",
|
|
"max_input_tokens": "max input tokens, if the provider specifies it. if not default to max_tokens",
|
|
"max_output_tokens": "max output tokens, if the provider specifies it. if not default to max_tokens",
|
|
"max_tokens": "LEGACY parameter. set to max_output_tokens if provider specifies it. IF not set to max_input_tokens, if provider specifies it.",
|
|
"mode": "one of: chat, embedding, completion, image_generation, audio_transcription, audio_speech, image_generation, moderation, rerank, search",
|
|
"output_cost_per_reasoning_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.0,
|
|
"search_context_size_low": 0.0,
|
|
"search_context_size_medium": 0.0
|
|
},
|
|
"supported_regions": [
|
|
"global",
|
|
"us-west-2",
|
|
"eu-west-1",
|
|
"ap-southeast-1",
|
|
"ap-northeast-1"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"vector_store_cost_per_gb_per_day": 0.0
|
|
},
|
|
"1024-x-1024/50-steps/bedrock/amazon.nova-canvas-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 2600,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06
|
|
},
|
|
"1024-x-1024/50-steps/stability.stable-diffusion-xl-v1": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04
|
|
},
|
|
"1024-x-1024/dall-e-2": {
|
|
"input_cost_per_pixel": 1.9e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"1024-x-1024/max-steps/stability.stable-diffusion-xl-v1": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.08
|
|
},
|
|
"256-x-256/dall-e-2": {
|
|
"input_cost_per_pixel": 2.4414e-07,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"512-x-512/50-steps/stability.stable-diffusion-xl-v0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.018
|
|
},
|
|
"512-x-512/dall-e-2": {
|
|
"input_cost_per_pixel": 6.86e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"512-x-512/max-steps/stability.stable-diffusion-xl-v0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.036
|
|
},
|
|
"ai21.j2-mid-v1": {
|
|
"input_cost_per_token": 1.25e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8191,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-05
|
|
},
|
|
"ai21.j2-ultra-v1": {
|
|
"input_cost_per_token": 1.88e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8191,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.88e-05
|
|
},
|
|
"ai21.jamba-1-5-large-v1:0": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06
|
|
},
|
|
"ai21.jamba-1-5-mini-v1:0": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07
|
|
},
|
|
"ai21.jamba-instruct-v1:0": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 70000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"supports_system_messages": true
|
|
},
|
|
"aiml/dall-e-2": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "DALL-E 2 via AI/ML API - Reliable text-to-image generation"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.026,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/dall-e-3": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "DALL-E 3 via AI/ML API - High-quality text-to-image generation"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.052,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux-pro": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Flux Dev - Development version optimized for experimentation"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.065,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux-pro/v1.1": {
|
|
"litellm_provider": "aiml",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.052,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux-pro/v1.1-ultra": {
|
|
"litellm_provider": "aiml",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.063,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux-realism": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Flux Pro - Professional-grade image generation model"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.046,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux/dev": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Flux Dev - Development version optimized for experimentation"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.033,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux/kontext-max/text-to-image": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Flux Pro v1.1 - Enhanced version with improved capabilities and 6x faster inference speed"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.104,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux/kontext-pro/text-to-image": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Flux Pro v1.1 - Enhanced version with improved capabilities and 6x faster inference speed"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.052,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/flux/schnell": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Flux Schnell - Fast generation model optimized for speed"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.004,
|
|
"source": "https://docs.aimlapi.com/",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/google/imagen-4.0-ultra-generate-001": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Imagen 4.0 Ultra Generate API - Photorealistic image generation with precise text rendering"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.078,
|
|
"source": "https://docs.aimlapi.com/api-references/image-models/google/imagen-4-ultra-generate",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"aiml/google/nano-banana-pro": {
|
|
"litellm_provider": "aiml",
|
|
"metadata": {
|
|
"notes": "Gemini 3 Pro Image (Nano Banana Pro) - Advanced text-to-image generation with reasoning and 4K resolution support"
|
|
},
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.195,
|
|
"source": "https://docs.aimlapi.com/api-references/image-models/google/gemini-3-pro-image-preview",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"amazon.nova-canvas-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 2600,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"supports_nova_canvas_image_edit": true
|
|
},
|
|
"us.amazon.nova-canvas-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 2600,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"supports_nova_canvas_image_edit": true
|
|
},
|
|
"us.writer.palmyra-x4-v1:0": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"us.writer.palmyra-x5-v1:0": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"writer.palmyra-x4-v1:0": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"writer.palmyra-x5-v1:0": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"amazon.nova-lite-v1:0": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"amazon.nova-2-lite-v1:0": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"amazon.nova-2-pro-preview-20251202-v1:0": {
|
|
"cache_read_input_token_cost": 5.46875e-07,
|
|
"input_cost_per_token": 2.1875e-06,
|
|
"input_cost_per_image_token": 2.1875e-06,
|
|
"input_cost_per_audio_token": 2.1875e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.75e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"apac.amazon.nova-2-lite-v1:0": {
|
|
"cache_read_input_token_cost": 8.25e-08,
|
|
"input_cost_per_token": 3.3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"apac.amazon.nova-2-pro-preview-20251202-v1:0": {
|
|
"cache_read_input_token_cost": 5.46875e-07,
|
|
"input_cost_per_token": 2.1875e-06,
|
|
"input_cost_per_image_token": 2.1875e-06,
|
|
"input_cost_per_audio_token": 2.1875e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.75e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"eu.amazon.nova-2-lite-v1:0": {
|
|
"cache_read_input_token_cost": 8.25e-08,
|
|
"input_cost_per_token": 3.3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"eu.amazon.nova-2-pro-preview-20251202-v1:0": {
|
|
"cache_read_input_token_cost": 5.46875e-07,
|
|
"input_cost_per_token": 2.1875e-06,
|
|
"input_cost_per_image_token": 2.1875e-06,
|
|
"input_cost_per_audio_token": 2.1875e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.75e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.amazon.nova-2-lite-v1:0": {
|
|
"cache_read_input_token_cost": 8.25e-08,
|
|
"input_cost_per_token": 3.3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.amazon.nova-2-pro-preview-20251202-v1:0": {
|
|
"cache_read_input_token_cost": 5.46875e-07,
|
|
"input_cost_per_token": 2.1875e-06,
|
|
"input_cost_per_image_token": 2.1875e-06,
|
|
"input_cost_per_audio_token": 2.1875e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.75e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"amazon.nova-2-multimodal-embeddings-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8172,
|
|
"max_tokens": 8172,
|
|
"mode": "embedding",
|
|
"input_cost_per_token": 1.35e-07,
|
|
"input_cost_per_image": 6e-05,
|
|
"input_cost_per_video_per_second": 0.0007,
|
|
"input_cost_per_audio_per_second": 0.00014,
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/model-catalog/serverless/amazon.nova-2-multimodal-embeddings-v1:0",
|
|
"supports_embedding_image_input": true,
|
|
"supports_image_input": true,
|
|
"supports_video_input": true,
|
|
"supports_audio_input": true
|
|
},
|
|
"amazon.nova-micro-v1:0": {
|
|
"input_cost_per_token": 3.5e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"amazon.nova-pro-v1:0": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"amazon.rerank-v1:0": {
|
|
"input_cost_per_query": 0.001,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "bedrock",
|
|
"max_document_chunks_per_query": 100,
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_query_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"max_tokens_per_document_chunk": 512,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"amazon.titan-embed-image-v1": {
|
|
"input_cost_per_image": 6e-05,
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128,
|
|
"max_tokens": 128,
|
|
"metadata": {
|
|
"notes": "'supports_image_input' is a deprecated field. Use 'supports_embedding_image_input' instead."
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/providers?model=amazon.titan-image-generator-v1",
|
|
"supports_embedding_image_input": true,
|
|
"supports_image_input": true
|
|
},
|
|
"amazon.titan-embed-text-v1": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536
|
|
},
|
|
"amazon.titan-embed-text-v2:0": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024
|
|
},
|
|
"amazon.titan-image-generator-v1": {
|
|
"input_cost_per_image": 0.0,
|
|
"output_cost_per_image": 0.008,
|
|
"output_cost_per_image_premium_image": 0.01,
|
|
"output_cost_per_image_above_512_and_512_pixels": 0.01,
|
|
"output_cost_per_image_above_512_and_512_pixels_and_premium_image": 0.012,
|
|
"litellm_provider": "bedrock",
|
|
"mode": "image_generation"
|
|
},
|
|
"amazon.titan-image-generator-v2": {
|
|
"input_cost_per_image": 0.0,
|
|
"output_cost_per_image": 0.008,
|
|
"output_cost_per_image_premium_image": 0.01,
|
|
"output_cost_per_image_above_1024_and_1024_pixels": 0.01,
|
|
"output_cost_per_image_above_1024_and_1024_pixels_and_premium_image": 0.012,
|
|
"litellm_provider": "bedrock",
|
|
"mode": "image_generation"
|
|
},
|
|
"amazon.titan-image-generator-v2:0": {
|
|
"input_cost_per_image": 0.0,
|
|
"output_cost_per_image": 0.008,
|
|
"output_cost_per_image_premium_image": 0.01,
|
|
"output_cost_per_image_above_1024_and_1024_pixels": 0.01,
|
|
"output_cost_per_image_above_1024_and_1024_pixels_and_premium_image": 0.012,
|
|
"litellm_provider": "bedrock",
|
|
"mode": "image_generation"
|
|
},
|
|
"twelvelabs.marengo-embed-2-7-v1:0": {
|
|
"input_cost_per_token": 7e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"supports_embedding_image_input": true,
|
|
"supports_image_input": true
|
|
},
|
|
"us.twelvelabs.marengo-embed-2-7-v1:0": {
|
|
"input_cost_per_token": 7e-05,
|
|
"input_cost_per_video_per_second": 0.0007,
|
|
"input_cost_per_audio_per_second": 0.00014,
|
|
"input_cost_per_image": 0.0001,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"supports_embedding_image_input": true,
|
|
"supports_image_input": true
|
|
},
|
|
"eu.twelvelabs.marengo-embed-2-7-v1:0": {
|
|
"input_cost_per_token": 7e-05,
|
|
"input_cost_per_video_per_second": 0.0007,
|
|
"input_cost_per_audio_per_second": 0.00014,
|
|
"input_cost_per_image": 0.0001,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"supports_embedding_image_input": true,
|
|
"supports_image_input": true
|
|
},
|
|
"twelvelabs.pegasus-1-2-v1:0": {
|
|
"input_cost_per_video_per_second": 0.00049,
|
|
"output_cost_per_token": 7.5e-06,
|
|
"litellm_provider": "bedrock",
|
|
"mode": "chat",
|
|
"supports_video_input": true
|
|
},
|
|
"us.twelvelabs.pegasus-1-2-v1:0": {
|
|
"input_cost_per_video_per_second": 0.00049,
|
|
"output_cost_per_token": 7.5e-06,
|
|
"litellm_provider": "bedrock",
|
|
"mode": "chat",
|
|
"supports_video_input": true
|
|
},
|
|
"eu.twelvelabs.pegasus-1-2-v1:0": {
|
|
"input_cost_per_video_per_second": 0.00049,
|
|
"output_cost_per_token": 7.5e-06,
|
|
"litellm_provider": "bedrock",
|
|
"mode": "chat",
|
|
"supports_video_input": true
|
|
},
|
|
"amazon.titan-text-express-v1": {
|
|
"input_cost_per_token": 1.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.7e-06
|
|
},
|
|
"amazon.titan-text-lite-v1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07
|
|
},
|
|
"amazon.titan-text-premier-v1:0": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06
|
|
},
|
|
"anthropic.claude-3-5-haiku-20241022-v1:0": {
|
|
"cache_creation_input_token_cost": 1e-06,
|
|
"cache_read_input_token_cost": 8e-08,
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"anthropic.claude-haiku-4-5@20251001": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_streaming": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 3e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"cache_creation_input_token_cost_above_1hr": 7.5e-06,
|
|
"cache_creation_input_token_cost_above_1hr_above_200k_tokens": 1.5e-05,
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07
|
|
},
|
|
"anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 3e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"cache_creation_input_token_cost_above_1hr": 7.5e-06,
|
|
"cache_creation_input_token_cost_above_1hr_above_200k_tokens": 1.5e-05
|
|
},
|
|
"anthropic.claude-3-7-sonnet-20240620-v1:0": {
|
|
"cache_creation_input_token_cost": 4.5e-06,
|
|
"cache_read_input_token_cost": 3.6e-07,
|
|
"input_cost_per_token": 3.6e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"anthropic.claude-3-haiku-20240307-v1:0": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_creation_input_token_cost": 3.125e-07
|
|
},
|
|
"anthropic.claude-3-opus-20240229-v1:0": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"cache_creation_input_token_cost": 1.875e-05
|
|
},
|
|
"anthropic.claude-3-sonnet-20240229-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"anthropic.claude-instant-v1": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"anthropic.claude-opus-4-1-20250805-v1:0": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"anthropic.claude-opus-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"anthropic.claude-opus-4-6-v1": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"global.anthropic.claude-opus-4-6-v1": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"us.anthropic.claude-opus-4-6-v1": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1.1e-05,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"eu.anthropic.claude-opus-4-6-v1": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"au.anthropic.claude-opus-4-6-v1": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"anthropic.claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"anthropic.claude-mythos-preview": {
|
|
"input_cost_per_token": 0,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"global.anthropic.claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"us.anthropic.claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1.1e-05,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"eu.anthropic.claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"au.anthropic.claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"anthropic.claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"global.anthropic.claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"us.anthropic.claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6.6e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"eu.anthropic.claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"au.anthropic.claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_creation_input_token_cost_above_1hr_above_200k_tokens": 1.2e-05,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"anthropic.claude-v1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05
|
|
},
|
|
"anthropic.claude-v2:1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"anyscale/HuggingFaceH4/zephyr-7b-beta": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07
|
|
},
|
|
"anyscale/codellama/CodeLlama-34b-Instruct-hf": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06
|
|
},
|
|
"anyscale/codellama/CodeLlama-70b-Instruct-hf": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/codellama-CodeLlama-70b-Instruct-hf"
|
|
},
|
|
"anyscale/google/gemma-7b-it": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/google-gemma-7b-it"
|
|
},
|
|
"anyscale/meta-llama/Llama-2-13b-chat-hf": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07
|
|
},
|
|
"anyscale/meta-llama/Llama-2-70b-chat-hf": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06
|
|
},
|
|
"anyscale/meta-llama/Llama-2-7b-chat-hf": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07
|
|
},
|
|
"anyscale/meta-llama/Meta-Llama-3-70B-Instruct": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/meta-llama-Meta-Llama-3-70B-Instruct"
|
|
},
|
|
"anyscale/meta-llama/Meta-Llama-3-8B-Instruct": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/meta-llama-Meta-Llama-3-8B-Instruct"
|
|
},
|
|
"anyscale/mistralai/Mistral-7B-Instruct-v0.1": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/mistralai-Mistral-7B-Instruct-v0.1",
|
|
"supports_function_calling": true
|
|
},
|
|
"anyscale/mistralai/Mixtral-8x22B-Instruct-v0.1": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/mistralai-Mixtral-8x22B-Instruct-v0.1",
|
|
"supports_function_calling": true
|
|
},
|
|
"anyscale/mistralai/Mixtral-8x7B-Instruct-v0.1": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "anyscale",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://docs.anyscale.com/preview/endpoints/text-generation/supported-models/mistralai-Mixtral-8x7B-Instruct-v0.1",
|
|
"supports_function_calling": true
|
|
},
|
|
"apac.amazon.nova-lite-v1:0": {
|
|
"input_cost_per_token": 6.3e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.52e-07,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"apac.amazon.nova-micro-v1:0": {
|
|
"input_cost_per_token": 3.7e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.48e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"apac.amazon.nova-pro-v1:0": {
|
|
"input_cost_per_token": 8.4e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.36e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"apac.anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"apac.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"apac.anthropic.claude-3-haiku-20240307-v1:0": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_creation_input_token_cost": 3.125e-07
|
|
},
|
|
"apac.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.375e-06,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"apac.anthropic.claude-3-sonnet-20240229-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"apac.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"assemblyai/best": {
|
|
"input_cost_per_second": 3.333e-05,
|
|
"litellm_provider": "assemblyai",
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0
|
|
},
|
|
"assemblyai/nano": {
|
|
"input_cost_per_second": 0.00010278,
|
|
"litellm_provider": "assemblyai",
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0
|
|
},
|
|
"au.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6.6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.475e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 8.25e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6.6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"azure/ada": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/codex-mini": {
|
|
"cache_read_input_token_cost": 3.75e-07,
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/command-r-plus": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"azure_ai/claude-haiku-4-5": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/claude-opus-4-5": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/claude-opus-4-6": {
|
|
"input_cost_per_token": 5e-06,
|
|
"output_cost_per_token": 2.5e-05,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"azure_ai/claude-opus-4-7": {
|
|
"input_cost_per_token": 5e-06,
|
|
"output_cost_per_token": 2.5e-05,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"azure_ai/claude-opus-4-1": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_creation_input_token_cost_above_1hr": 3e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/claude-sonnet-4-5": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"azure/computer-use-preview": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/container": {
|
|
"code_interpreter_cost_per_session": 0.03,
|
|
"litellm_provider": "azure",
|
|
"mode": "chat"
|
|
},
|
|
"azure_ai/gpt-oss-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/cognitive-services/openai-service/",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/model_router": {
|
|
"input_cost_per_token": 1.4e-07,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "azure_ai",
|
|
"mode": "chat",
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-services/",
|
|
"comment": "Flat cost of $0.14 per M input tokens for Azure AI Foundry Model Router infrastructure. Use pattern: azure_ai/model_router/<deployment-name> where deployment-name is your Azure deployment (e.g., azure-model-router)"
|
|
},
|
|
"azure/eu/gpt-4o-2024-08-06": {
|
|
"deprecation_date": "2026-02-27",
|
|
"cache_read_input_token_cost": 1.375e-06,
|
|
"input_cost_per_token": 2.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-4o-2024-11-20": {
|
|
"deprecation_date": "2026-03-01",
|
|
"cache_creation_input_token_cost": 1.38e-06,
|
|
"input_cost_per_token": 2.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-4o-mini-2024-07-18": {
|
|
"cache_read_input_token_cost": 8.3e-08,
|
|
"input_cost_per_token": 1.65e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-4o-mini-realtime-preview-2024-12-17": {
|
|
"cache_creation_input_audio_token_cost": 3.3e-07,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_audio_token": 1.1e-05,
|
|
"input_cost_per_token": 6.6e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2.2e-05,
|
|
"output_cost_per_token": 2.64e-06,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/eu/gpt-4o-realtime-preview-2024-10-01": {
|
|
"cache_creation_input_audio_token_cost": 2.2e-05,
|
|
"cache_read_input_token_cost": 2.75e-06,
|
|
"input_cost_per_audio_token": 0.00011,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 0.00022,
|
|
"output_cost_per_token": 2.2e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/eu/gpt-4o-realtime-preview-2024-12-17": {
|
|
"cache_read_input_audio_token_cost": 2.5e-06,
|
|
"cache_read_input_token_cost": 2.75e-06,
|
|
"input_cost_per_audio_token": 4.4e-05,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 2.2e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/eu/gpt-5-2025-08-07": {
|
|
"cache_read_input_token_cost": 1.375e-07,
|
|
"input_cost_per_token": 1.375e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-5-mini-2025-08-07": {
|
|
"cache_read_input_token_cost": 2.75e-08,
|
|
"input_cost_per_token": 2.75e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-5.1": {
|
|
"cache_read_input_token_cost": 1.4e-07,
|
|
"input_cost_per_token": 1.38e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/eu/gpt-5.1-chat": {
|
|
"cache_read_input_token_cost": 1.4e-07,
|
|
"input_cost_per_token": 1.38e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/eu/gpt-5.1-codex": {
|
|
"cache_read_input_token_cost": 1.4e-07,
|
|
"input_cost_per_token": 1.38e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-5.1-codex-mini": {
|
|
"cache_read_input_token_cost": 2.8e-08,
|
|
"input_cost_per_token": 2.75e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/gpt-5-nano-2025-08-07": {
|
|
"cache_read_input_token_cost": 5.5e-09,
|
|
"input_cost_per_token": 5.5e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/o1-2024-12-17": {
|
|
"cache_read_input_token_cost": 8.25e-06,
|
|
"input_cost_per_token": 1.65e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/eu/o1-mini-2024-09-12": {
|
|
"cache_read_input_token_cost": 6.05e-07,
|
|
"input_cost_per_token": 1.21e-06,
|
|
"input_cost_per_token_batches": 6.05e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.84e-06,
|
|
"output_cost_per_token_batches": 2.42e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/eu/o1-preview-2024-09-12": {
|
|
"cache_read_input_token_cost": 8.25e-06,
|
|
"input_cost_per_token": 1.65e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/eu/o3-mini-2025-01-31": {
|
|
"cache_read_input_token_cost": 6.05e-07,
|
|
"input_cost_per_token": 1.21e-06,
|
|
"input_cost_per_token_batches": 6.05e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.84e-06,
|
|
"output_cost_per_token_batches": 2.42e-06,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/global-standard/gpt-4o-2024-08-06": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"deprecation_date": "2026-02-27",
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/global-standard/gpt-4o-2024-11-20": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"deprecation_date": "2026-03-01",
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/global-standard/gpt-4o-mini": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/global/gpt-4o-2024-08-06": {
|
|
"deprecation_date": "2026-02-27",
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/global/gpt-4o-2024-11-20": {
|
|
"deprecation_date": "2026-03-01",
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/global/gpt-5.1": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/global/gpt-5.1-chat": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/global/gpt-5.1-codex": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/global/gpt-5.1-codex-mini": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-3.5-turbo": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 4097,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-3.5-turbo-0125": {
|
|
"deprecation_date": "2025-03-31",
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-3.5-turbo-instruct-0914": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "azure_text",
|
|
"max_input_tokens": 4097,
|
|
"max_tokens": 4097,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"azure/gpt-35-turbo": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 4097,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-35-turbo-0125": {
|
|
"deprecation_date": "2025-05-31",
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-35-turbo-1106": {
|
|
"deprecation_date": "2025-03-31",
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-35-turbo-16k": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-35-turbo-16k-0613": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-35-turbo-instruct": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "azure_text",
|
|
"max_input_tokens": 4097,
|
|
"max_tokens": 4097,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"azure/gpt-35-turbo-instruct-0914": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "azure_text",
|
|
"max_input_tokens": 4097,
|
|
"max_tokens": 4097,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"azure/gpt-4": {
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-0125-preview": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-0613": {
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-1106-preview": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-32k": {
|
|
"input_cost_per_token": 6e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.00012,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-32k-0613": {
|
|
"input_cost_per_token": 6e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.00012,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-turbo": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4-turbo-2024-04-09": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4-turbo-vision-preview": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4.1": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_batches": 4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false
|
|
},
|
|
"azure/gpt-4.1-2025-04-14": {
|
|
"deprecation_date": "2026-11-04",
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_batches": 4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false
|
|
},
|
|
"azure/gpt-4.1-mini": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 4e-07,
|
|
"input_cost_per_token_batches": 2e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token_batches": 8e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false
|
|
},
|
|
"azure/gpt-4.1-mini-2025-04-14": {
|
|
"deprecation_date": "2026-11-04",
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 4e-07,
|
|
"input_cost_per_token_batches": 2e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token_batches": 8e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false
|
|
},
|
|
"azure/gpt-4.1-nano": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"input_cost_per_token_batches": 5e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"output_cost_per_token_batches": 2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4.1-nano-2025-04-14": {
|
|
"deprecation_date": "2026-11-04",
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"input_cost_per_token_batches": 5e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"output_cost_per_token_batches": 2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4.5-preview": {
|
|
"cache_read_input_token_cost": 3.75e-05,
|
|
"input_cost_per_token": 7.5e-05,
|
|
"input_cost_per_token_batches": 3.75e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.00015,
|
|
"output_cost_per_token_batches": 7.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4o": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4o-2024-05-13": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4o-2024-08-06": {
|
|
"deprecation_date": "2026-02-27",
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4o-2024-11-20": {
|
|
"deprecation_date": "2026-03-01",
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-audio-2025-08-28": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/gpt-audio-1.5-2026-02-23": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/gpt-audio-mini-2025-10-06": {
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/gpt-4o-audio-preview-2024-12-17": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/gpt-4o-mini": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.65e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4o-mini-2024-07-18": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.65e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-4o-mini-audio-preview-2024-12-17": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/gpt-4o-mini-realtime-preview-2024-12-17": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-realtime-2025-08-28": {
|
|
"cache_creation_input_audio_token_cost": 4e-06,
|
|
"cache_read_input_token_cost": 4e-06,
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_image": 5e-06,
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-realtime-1.5-2026-02-23": {
|
|
"cache_creation_input_audio_token_cost": 4e-06,
|
|
"cache_read_input_token_cost": 4e-06,
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_image": 5e-06,
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-realtime-mini-2025-10-06": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 6e-08,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_image": 8e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4o-mini-transcribe": {
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 5e-06,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"azure/gpt-4o-mini-tts": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "audio_speech",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_second": 0.00025,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
]
|
|
},
|
|
"azure/gpt-4o-realtime-preview-2024-10-01": {
|
|
"cache_creation_input_audio_token_cost": 2e-05,
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_audio_token": 0.0001,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 0.0002,
|
|
"output_cost_per_token": 2e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4o-realtime-preview-2024-12-17": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 2e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/gpt-4o-transcribe": {
|
|
"input_cost_per_audio_token": 6e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"azure/gpt-4o-transcribe-diarize": {
|
|
"input_cost_per_audio_token": 6e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"azure/gpt-5.1-2025-11-13": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"azure/gpt-5.1-chat-2025-11-13": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/gpt-5.1-codex-2025-11-13": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.1-codex-mini-2025-11-13": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_priority": 4.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"input_cost_per_token_priority": 4.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 2e-06,
|
|
"output_cost_per_token_priority": 3.6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-2025-08-07": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-chat": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"source": "https://azure.microsoft.com/en-us/blog/gpt-5-in-azure-ai-foundry-the-future-of-ai-apps-and-agents-starts-here/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-chat-latest": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-codex": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-mini": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-mini-2025-08-07": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-nano": {
|
|
"cache_read_input_token_cost": 5e-09,
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-nano-2025-08-07": {
|
|
"cache_read_input_token_cost": 5e-09,
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5-pro": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00012,
|
|
"source": "https://learn.microsoft.com/en-us/azure/ai-foundry/foundry-models/concepts/models-sold-directly-by-azure?pivots=azure-openai&tabs=global-standard-aoai%2Cstandard-chat-completions%2Cglobal-standard#gpt-5",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.1": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/gpt-5.1-chat": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/gpt-5.1-codex": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.1-codex-max": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.1-codex-mini": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.2": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.2-2025-12-11": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.2-chat": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.2-chat-2025-12-11": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.2-codex": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.3-chat": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.3-codex": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.2-pro": {
|
|
"input_cost_per_token": 2.1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.000168,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/gpt-5.2-pro-2025-12-11": {
|
|
"input_cost_per_token": 2.1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.000168,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/gpt-5.4": {
|
|
"cache_read_input_token_cost": 2.5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 5e-07,
|
|
"cache_read_input_token_cost_priority": 5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens_priority": 1e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 5e-06,
|
|
"input_cost_per_token_priority": 5e-06,
|
|
"input_cost_per_token_above_272k_tokens_priority": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_272k_tokens": 2.25e-05,
|
|
"output_cost_per_token_priority": 3e-05,
|
|
"output_cost_per_token_above_272k_tokens_priority": 4.5e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.4-2026-03-05": {
|
|
"cache_read_input_token_cost": 2.5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 5e-07,
|
|
"cache_read_input_token_cost_priority": 5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens_priority": 1e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 5e-06,
|
|
"input_cost_per_token_priority": 5e-06,
|
|
"input_cost_per_token_above_272k_tokens_priority": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_272k_tokens": 2.25e-05,
|
|
"output_cost_per_token_priority": 3e-05,
|
|
"output_cost_per_token_above_272k_tokens_priority": 4.5e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/gpt-5.4-pro": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/gpt-5.4-pro-2026-03-05": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/gpt-5.5": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 1e-06,
|
|
"cache_read_input_token_cost_priority": 1e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens_priority": 2e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 1e-05,
|
|
"input_cost_per_token_priority": 1e-05,
|
|
"input_cost_per_token_above_272k_tokens_priority": 2e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"output_cost_per_token_above_272k_tokens": 4.5e-05,
|
|
"output_cost_per_token_priority": 6e-05,
|
|
"output_cost_per_token_above_272k_tokens_priority": 9e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"azure/gpt-5.5-2026-04-23": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 1e-06,
|
|
"cache_read_input_token_cost_priority": 1e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens_priority": 2e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 1e-05,
|
|
"input_cost_per_token_priority": 1e-05,
|
|
"input_cost_per_token_above_272k_tokens_priority": 2e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"output_cost_per_token_above_272k_tokens": 4.5e-05,
|
|
"output_cost_per_token_priority": 6e-05,
|
|
"output_cost_per_token_above_272k_tokens_priority": 9e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/gpt-5.5-pro": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false,
|
|
"supports_low_reasoning_effort": false
|
|
},
|
|
"azure/gpt-5.5-pro-2026-04-23": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/gpt-5.4-mini": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.5e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false
|
|
},
|
|
"azure/gpt-5.4-mini-2026-03-17": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.5e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false
|
|
},
|
|
"azure/gpt-5.4-nano": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false
|
|
},
|
|
"azure/gpt-5.4-nano-2026-03-17": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false
|
|
},
|
|
"azure/gpt-image-1": {
|
|
"cache_read_input_image_token_cost": 2.5e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_image_token": 1e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"azure/hd/1024-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 7.629e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/hd/1024-x-1792/dall-e-3": {
|
|
"input_cost_per_pixel": 6.539e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/hd/1792-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 6.539e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/high/1024-x-1024/gpt-image-1": {
|
|
"input_cost_per_pixel": 1.59263611e-07,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/high/1024-x-1536/gpt-image-1": {
|
|
"input_cost_per_pixel": 1.58945719e-07,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/high/1536-x-1024/gpt-image-1": {
|
|
"input_cost_per_pixel": 1.58945719e-07,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/low/1024-x-1024/gpt-image-1": {
|
|
"input_cost_per_pixel": 1.0490417e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/low/1024-x-1536/gpt-image-1": {
|
|
"input_cost_per_pixel": 1.0172526e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/low/1536-x-1024/gpt-image-1": {
|
|
"input_cost_per_pixel": 1.0172526e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/medium/1024-x-1024/gpt-image-1": {
|
|
"input_cost_per_pixel": 4.0054321e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/medium/1024-x-1536/gpt-image-1": {
|
|
"input_cost_per_pixel": 4.0054321e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/medium/1536-x-1024/gpt-image-1": {
|
|
"input_cost_per_pixel": 4.0054321e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/gpt-image-1-mini": {
|
|
"cache_read_input_image_token_cost": 2.5e-07,
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_image_token": 2.5e-06,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"azure/gpt-image-1.5": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 3.2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"azure/gpt-image-1.5-2025-12-16": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 3.2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"azure/gpt-image-2": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"azure/gpt-image-2-2026-04-21": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"azure/low/1024-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 2.0751953125e-09,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/low/1024-x-1536/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 2.0751953125e-09,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/low/1536-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 2.0345052083e-09,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/medium/1024-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 8.056640625e-09,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/medium/1024-x-1536/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 8.056640625e-09,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/medium/1536-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 7.9752604167e-09,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/high/1024-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 3.173828125e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/high/1024-x-1536/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 3.173828125e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/high/1536-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_pixel": 3.1575520833e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure/mistral-large-2402": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"azure/mistral-large-latest": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"azure/o1": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o1-2024-12-17": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o1-mini": {
|
|
"cache_read_input_token_cost": 6.05e-07,
|
|
"input_cost_per_token": 1.21e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.84e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/o1-mini-2024-09-12": {
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/o1-preview": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/o1-preview-2024-09-12": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/o3": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o3-2025-04-16": {
|
|
"deprecation_date": "2026-04-16",
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o3-deep-research": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure/o3-mini": {
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/o3-mini-2025-01-31": {
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/o3-pro": {
|
|
"input_cost_per_token": 2e-05,
|
|
"input_cost_per_token_batches": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 8e-05,
|
|
"output_cost_per_token_batches": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o3-pro-2025-06-10": {
|
|
"input_cost_per_token": 2e-05,
|
|
"input_cost_per_token_batches": 1e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 8e-05,
|
|
"output_cost_per_token_batches": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o4-mini": {
|
|
"cache_read_input_token_cost": 2.75e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/o4-mini-2025-04-16": {
|
|
"cache_read_input_token_cost": 2.75e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/standard/1024-x-1024/dall-e-2": {
|
|
"input_cost_per_pixel": 0.0,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/standard/1024-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 3.81469e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/standard/1024-x-1792/dall-e-3": {
|
|
"input_cost_per_pixel": 4.359e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/standard/1792-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 4.359e-08,
|
|
"litellm_provider": "azure",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/text-embedding-3-large": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/text-embedding-3-small": {
|
|
"deprecation_date": "2026-04-30",
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/text-embedding-ada-002": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure/speech/azure-tts": {
|
|
"input_cost_per_character": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"mode": "audio_speech",
|
|
"source": "https://azure.microsoft.com/en-us/pricing/calculator/"
|
|
},
|
|
"azure/speech/azure-tts-hd": {
|
|
"input_cost_per_character": 3e-05,
|
|
"litellm_provider": "azure",
|
|
"mode": "audio_speech",
|
|
"source": "https://azure.microsoft.com/en-us/pricing/calculator/"
|
|
},
|
|
"azure/tts-1": {
|
|
"input_cost_per_character": 1.5e-05,
|
|
"litellm_provider": "azure",
|
|
"mode": "audio_speech"
|
|
},
|
|
"azure/tts-1-hd": {
|
|
"input_cost_per_character": 3e-05,
|
|
"litellm_provider": "azure",
|
|
"mode": "audio_speech"
|
|
},
|
|
"azure/us/gpt-4.1-2025-04-14": {
|
|
"deprecation_date": "2026-11-04",
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 2.2e-06,
|
|
"input_cost_per_token_batches": 1.1e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-06,
|
|
"output_cost_per_token_batches": 4.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false
|
|
},
|
|
"azure/us/gpt-4.1-mini-2025-04-14": {
|
|
"deprecation_date": "2026-11-04",
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 4.4e-07,
|
|
"input_cost_per_token_batches": 2.2e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.76e-06,
|
|
"output_cost_per_token_batches": 8.8e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false
|
|
},
|
|
"azure/us/gpt-4.1-nano-2025-04-14": {
|
|
"deprecation_date": "2026-11-04",
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 1.1e-07,
|
|
"input_cost_per_token_batches": 6e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-07,
|
|
"output_cost_per_token_batches": 2.2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-4o-2024-08-06": {
|
|
"deprecation_date": "2026-02-27",
|
|
"cache_read_input_token_cost": 1.375e-06,
|
|
"input_cost_per_token": 2.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-4o-2024-11-20": {
|
|
"deprecation_date": "2026-03-01",
|
|
"cache_creation_input_token_cost": 1.38e-06,
|
|
"input_cost_per_token": 2.75e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-4o-mini-2024-07-18": {
|
|
"cache_read_input_token_cost": 8.3e-08,
|
|
"input_cost_per_token": 1.65e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-4o-mini-realtime-preview-2024-12-17": {
|
|
"cache_creation_input_audio_token_cost": 3.3e-07,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_audio_token": 1.1e-05,
|
|
"input_cost_per_token": 6.6e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2.2e-05,
|
|
"output_cost_per_token": 2.64e-06,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/us/gpt-4o-realtime-preview-2024-10-01": {
|
|
"cache_creation_input_audio_token_cost": 2.2e-05,
|
|
"cache_read_input_token_cost": 2.75e-06,
|
|
"input_cost_per_audio_token": 0.00011,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 0.00022,
|
|
"output_cost_per_token": 2.2e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/us/gpt-4o-realtime-preview-2024-12-17": {
|
|
"cache_read_input_audio_token_cost": 2.5e-06,
|
|
"cache_read_input_token_cost": 2.75e-06,
|
|
"input_cost_per_audio_token": 4.4e-05,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 2.2e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure/us/gpt-5-2025-08-07": {
|
|
"cache_read_input_token_cost": 1.375e-07,
|
|
"input_cost_per_token": 1.375e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-5-mini-2025-08-07": {
|
|
"cache_read_input_token_cost": 2.75e-08,
|
|
"input_cost_per_token": 2.75e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-5-nano-2025-08-07": {
|
|
"cache_read_input_token_cost": 5.5e-09,
|
|
"input_cost_per_token": 5.5e-08,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-5.1": {
|
|
"cache_read_input_token_cost": 1.4e-07,
|
|
"input_cost_per_token": 1.38e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/us/gpt-5.1-chat": {
|
|
"cache_read_input_token_cost": 1.4e-07,
|
|
"input_cost_per_token": 1.38e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true
|
|
},
|
|
"azure/us/gpt-5.1-codex": {
|
|
"cache_read_input_token_cost": 1.4e-07,
|
|
"input_cost_per_token": 1.38e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1.1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/gpt-5.1-codex-mini": {
|
|
"cache_read_input_token_cost": 2.8e-08,
|
|
"input_cost_per_token": 2.75e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/o1-2024-12-17": {
|
|
"cache_read_input_token_cost": 8.25e-06,
|
|
"input_cost_per_token": 1.65e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/o1-mini-2024-09-12": {
|
|
"cache_read_input_token_cost": 6.05e-07,
|
|
"input_cost_per_token": 1.21e-06,
|
|
"input_cost_per_token_batches": 6.05e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.84e-06,
|
|
"output_cost_per_token_batches": 2.42e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/us/o1-preview-2024-09-12": {
|
|
"cache_read_input_token_cost": 8.25e-06,
|
|
"input_cost_per_token": 1.65e-05,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/us/o3-2025-04-16": {
|
|
"deprecation_date": "2026-04-16",
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 2.2e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/us/o3-mini-2025-01-31": {
|
|
"cache_read_input_token_cost": 6.05e-07,
|
|
"input_cost_per_token": 1.21e-06,
|
|
"input_cost_per_token_batches": 6.05e-07,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.84e-06,
|
|
"output_cost_per_token_batches": 2.42e-06,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure/us/o4-mini-2025-04-16": {
|
|
"cache_read_input_token_cost": 3.1e-07,
|
|
"input_cost_per_token": 1.21e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.84e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure/whisper-1": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "azure",
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0001
|
|
},
|
|
"azure_ai/Cohere-embed-v3-english": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://azuremarketplace.microsoft.com/en-us/marketplace/apps/cohere.cohere-embed-v3-english-offer?tab=PlansAndPrice",
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"azure_ai/Cohere-embed-v3-multilingual": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://azuremarketplace.microsoft.com/en-us/marketplace/apps/cohere.cohere-embed-v3-english-offer?tab=PlansAndPrice",
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"azure_ai/FLUX-1.1-pro": {
|
|
"litellm_provider": "azure_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/black-forest-labs-flux-1-kontext-pro-and-flux1-1-pro-now-available-in-azure-ai-f/4434659",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure_ai/FLUX.1-Kontext-pro": {
|
|
"litellm_provider": "azure_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://azuremarketplace.microsoft.com/pt-br/marketplace/apps/cohere.cohere-embed-4-offer?tab=PlansAndPrice",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure_ai/flux.2-pro": {
|
|
"litellm_provider": "azure_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://ai.azure.com/explore/models/flux.2-pro/version/1/registry/azureml-blackforestlabs",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"azure_ai/Llama-3.2-11B-Vision-Instruct": {
|
|
"input_cost_per_token": 3.7e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.7e-07,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/metagenai.meta-llama-3-2-11b-vision-instruct-offer?tab=Overview",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/Llama-3.2-90B-Vision-Instruct": {
|
|
"input_cost_per_token": 2.04e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.04e-06,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/metagenai.meta-llama-3-2-90b-vision-instruct-offer?tab=Overview",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/Llama-3.3-70B-Instruct": {
|
|
"input_cost_per_token": 7.1e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.1e-07,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/metagenai.llama-3-3-70b-instruct-offer?tab=Overview",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/Llama-4-Maverick-17B-128E-Instruct-FP8": {
|
|
"input_cost_per_token": 1.41e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-07,
|
|
"source": "https://azure.microsoft.com/en-us/blog/introducing-the-llama-4-herd-in-azure-ai-foundry-and-azure-databricks/",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/Llama-4-Scout-17B-16E-Instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 10000000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.8e-07,
|
|
"source": "https://azure.microsoft.com/en-us/blog/introducing-the-llama-4-herd-in-azure-ai-foundry-and-azure-databricks/",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/Meta-Llama-3-70B-Instruct": {
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.7e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/Meta-Llama-3.1-405B-Instruct": {
|
|
"input_cost_per_token": 5.33e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-05,
|
|
"source": "https://azuremarketplace.microsoft.com/en-us/marketplace/apps/metagenai.meta-llama-3-1-405b-instruct-offer?tab=PlansAndPrice",
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/Meta-Llama-3.1-70B-Instruct": {
|
|
"input_cost_per_token": 2.68e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.54e-06,
|
|
"source": "https://azuremarketplace.microsoft.com/en-us/marketplace/apps/metagenai.meta-llama-3-1-70b-instruct-offer?tab=PlansAndPrice",
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/Meta-Llama-3.1-8B-Instruct": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.1e-07,
|
|
"source": "https://azuremarketplace.microsoft.com/en-us/marketplace/apps/metagenai.meta-llama-3-1-8b-instruct-offer?tab=PlansAndPrice",
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/Phi-3-medium-128k-instruct": {
|
|
"input_cost_per_token": 1.7e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.8e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3-medium-4k-instruct": {
|
|
"input_cost_per_token": 1.7e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.8e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3-mini-128k-instruct": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.2e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3-mini-4k-instruct": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.2e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3-small-128k-instruct": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3-small-8k-instruct": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3.5-MoE-instruct": {
|
|
"input_cost_per_token": 1.6e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.4e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3.5-mini-instruct": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.2e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-3.5-vision-instruct": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.2e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/phi-3/",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/Phi-4": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://techcommunity.microsoft.com/blog/machinelearningblog/affordable-innovation-unveiling-the-pricing-of-phi-3-slms-on-models-as-a-service/4156495",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"azure_ai/Phi-4-mini-instruct": {
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://techcommunity.microsoft.com/blog/Azure-AI-Services-blog/announcing-new-phi-pricing-empowering-your-business-with-small-language-models/4395112",
|
|
"supports_function_calling": true
|
|
},
|
|
"azure_ai/Phi-4-multimodal-instruct": {
|
|
"input_cost_per_audio_token": 4e-06,
|
|
"input_cost_per_token": 8e-08,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-07,
|
|
"source": "https://techcommunity.microsoft.com/blog/Azure-AI-Services-blog/announcing-new-phi-pricing-empowering-your-business-with-small-language-models/4395112",
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/Phi-4-mini-reasoning": {
|
|
"input_cost_per_token": 8e-08,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/microsoft/",
|
|
"supports_function_calling": true
|
|
},
|
|
"azure_ai/Phi-4-reasoning": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/microsoft/",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"azure_ai/mistral-document-ai-2505": {
|
|
"litellm_provider": "azure_ai",
|
|
"ocr_cost_per_page": 0.003,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://devblogs.microsoft.com/foundry/whats-new-in-azure-ai-foundry-august-2025/#mistral-document-ai-(ocr)-%E2%80%94-serverless-in-foundry"
|
|
},
|
|
"azure_ai/mistral-document-ai-2512": {
|
|
"litellm_provider": "azure_ai",
|
|
"ocr_cost_per_page": 0.003,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/"
|
|
},
|
|
"azure_ai/doc-intelligence/prebuilt-read": {
|
|
"litellm_provider": "azure_ai",
|
|
"ocr_cost_per_page": 0.0015,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-document-intelligence/"
|
|
},
|
|
"azure_ai/doc-intelligence/prebuilt-layout": {
|
|
"litellm_provider": "azure_ai",
|
|
"ocr_cost_per_page": 0.01,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-document-intelligence/"
|
|
},
|
|
"azure_ai/doc-intelligence/prebuilt-document": {
|
|
"litellm_provider": "azure_ai",
|
|
"ocr_cost_per_page": 0.01,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-document-intelligence/"
|
|
},
|
|
"azure_ai/MAI-DS-R1": {
|
|
"input_cost_per_token": 1.35e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.4e-06,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/microsoft/",
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/cohere-rerank-v3-english": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure_ai/cohere-rerank-v3-multilingual": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure_ai/cohere-rerank-v3.5": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"azure_ai/cohere-rerank-v4.0-pro": {
|
|
"input_cost_per_query": 0.0025,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_query_tokens": 4096,
|
|
"max_tokens": 32768,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/introducing-cohere-rerank-4-0-in-microsoft-foundry/4477076"
|
|
},
|
|
"azure_ai/cohere-rerank-v4.0-fast": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_query_tokens": 4096,
|
|
"max_tokens": 32768,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/introducing-cohere-rerank-4-0-in-microsoft-foundry/4477076"
|
|
},
|
|
"azure_ai/deepseek-v3.2": {
|
|
"input_cost_per_token": 5.8e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"source": "https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/introducing-deepseek-v3-2-and-deepseek-v3-2-speciale-in-microsoft-foundry/4477549",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/deepseek-v3.2-speciale": {
|
|
"input_cost_per_token": 5.8e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"source": "https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/introducing-deepseek-v3-2-and-deepseek-v3-2-speciale-in-microsoft-foundry/4477549",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/deepseek-r1": {
|
|
"input_cost_per_token": 1.35e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.4e-06,
|
|
"source": "https://techcommunity.microsoft.com/blog/machinelearningblog/deepseek-r1-improved-performance-higher-limits-and-transparent-pricing/4386367",
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/deepseek-v3": {
|
|
"input_cost_per_token": 1.14e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.56e-06,
|
|
"source": "https://techcommunity.microsoft.com/blog/machinelearningblog/announcing-deepseek-v3-on-azure-ai-foundry-and-github/4390438",
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/deepseek-v3-0324": {
|
|
"input_cost_per_token": 1.14e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.56e-06,
|
|
"source": "https://techcommunity.microsoft.com/blog/machinelearningblog/announcing-deepseek-v3-on-azure-ai-foundry-and-github/4390438",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/embed-v-4-0": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://azuremarketplace.microsoft.com/pt-br/marketplace/apps/cohere.cohere-embed-4-offer?tab=PlansAndPrice",
|
|
"supported_endpoints": [
|
|
"/v1/embeddings"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"azure_ai/global/grok-3": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://devblogs.microsoft.com/foundry/announcing-grok-3-and-grok-3-mini-on-azure-ai-foundry/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/global/grok-3-mini": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.27e-06,
|
|
"source": "https://devblogs.microsoft.com/foundry/announcing-grok-3-and-grok-3-mini-on-azure-ai-foundry/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-3": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/grok/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-3-mini": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.27e-06,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/grok/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-4": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/grok/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-4-fast-non-reasoning": {
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-4-fast-reasoning": {
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/grok/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-4-1-fast-non-reasoning": {
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"source": "https://techcommunity.microsoft.com/t5/Azure-AI-Foundry-Blog/Grok-4-0-Goes-GA-in-Microsoft-Foundry-and-Grok-4-1-Fast-Arrives/ba-p/4497964",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-4-1-fast-reasoning": {
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"source": "https://techcommunity.microsoft.com/t5/Azure-AI-Foundry-Blog/Grok-4-0-Goes-GA-in-Microsoft-Foundry-and-Grok-4-1-Fast-Arrives/ba-p/4497964",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/grok-code-fast-1": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://azure.microsoft.com/en-us/pricing/details/ai-foundry-models/grok/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"azure_ai/jais-30b-chat": {
|
|
"input_cost_per_token": 0.0032,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.00971,
|
|
"source": "https://azure.microsoft.com/en-us/products/ai-services/ai-foundry/models/jais-30b-chat"
|
|
},
|
|
"azure_ai/jamba-instruct": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 70000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/kimi-k2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://techcommunity.microsoft.com/blog/azure-ai-foundry-blog/kimi-k2-5-now-in-microsoft-foundry/4492321",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/ministral-3b": {
|
|
"input_cost_per_token": 4e-08,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-08,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/000-000.ministral-3b-2410-offer?tab=Overview",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/mistral-large": {
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/mistral-large-2407": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/000-000.mistral-ai-large-2407-offer?tab=Overview",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/mistral-large-latest": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/000-000.mistral-ai-large-2407-offer?tab=Overview",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/mistral-large-3": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://azure.microsoft.com/en-us/blog/introducing-mistral-large-3-in-microsoft-foundry-open-capable-and-ready-for-production-workloads/",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"azure_ai/mistral-medium-2505": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/mistral-nemo": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://azuremarketplace.microsoft.com/en/marketplace/apps/000-000.mistral-nemo-12b-2407?tab=PlansAndPrice",
|
|
"supports_function_calling": true
|
|
},
|
|
"azure_ai/mistral-small": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"azure_ai/mistral-small-2503": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "azure_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"babbage-002": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "text-completion-openai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 4e-07
|
|
},
|
|
"bedrock/*/1-month-commitment/cohere.command-light-text-v14": {
|
|
"input_cost_per_second": 0.001902,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.001902,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/*/1-month-commitment/cohere.command-text-v14": {
|
|
"input_cost_per_second": 0.011,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.011,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/*/6-month-commitment/cohere.command-light-text-v14": {
|
|
"input_cost_per_second": 0.0011416,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0011416,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/*/6-month-commitment/cohere.command-text-v14": {
|
|
"input_cost_per_second": 0.0066027,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0066027,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/1-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.01475,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.01475,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/1-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.0455,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0455
|
|
},
|
|
"bedrock/ap-northeast-1/1-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.0455,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0455,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/6-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.008194,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.008194,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/6-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.02527,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.02527
|
|
},
|
|
"bedrock/ap-northeast-1/6-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.02527,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.02527,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/anthropic.claude-instant-v1": {
|
|
"input_cost_per_token": 2.23e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.55e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/anthropic.claude-v1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/anthropic.claude-v2:1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/ap-northeast-1/deepseek.v3.2": {
|
|
"input_cost_per_token": 7.4e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.22e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-northeast-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-northeast-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/ap-northeast-1/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 7.3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.03e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/ap-northeast-1/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-northeast-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 7.3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.03e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.03e-06,
|
|
"source": "https://platform.moonshot.ai/docs/guide/kimi-k2-5-quickstart",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"bedrock/ap-south-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.18e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.2e-06
|
|
},
|
|
"bedrock/ap-south-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07
|
|
},
|
|
"bedrock/ap-south-1/deepseek.v3.2": {
|
|
"input_cost_per_token": 7.4e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.22e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-south-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-south-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/ap-south-1/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 7.1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.94e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/ap-south-1/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-south-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-southeast-2/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.09e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.236e-06
|
|
},
|
|
"bedrock/ap-southeast-3/deepseek.v3.2": {
|
|
"input_cost_per_token": 7.4e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.22e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-southeast-3/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-southeast-3/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/ap-southeast-3/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ap-southeast-3/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/ca-central-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.05e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.03e-06
|
|
},
|
|
"bedrock/ca-central-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.9e-07
|
|
},
|
|
"bedrock/eu-north-1/deepseek.v3.2": {
|
|
"input_cost_per_token": 7.4e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.22e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-north-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-north-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/eu-north-1/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-central-1/1-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.01635,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.01635,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-central-1/1-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.0415,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0415
|
|
},
|
|
"bedrock/eu-central-1/1-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.0415,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0415,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-central-1/6-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.009083,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.009083,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-central-1/6-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.02305,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.02305
|
|
},
|
|
"bedrock/eu-central-1/6-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.02305,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.02305,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-central-1/anthropic.claude-instant-v1": {
|
|
"input_cost_per_token": 2.48e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.38e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-central-1/anthropic.claude-v1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05
|
|
},
|
|
"bedrock/eu-central-1/anthropic.claude-v2:1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-central-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-central-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/eu-central-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-west-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.86e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.78e-06
|
|
},
|
|
"bedrock/eu-west-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.5e-07
|
|
},
|
|
"bedrock/eu-west-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-west-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/eu-west-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-west-2/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.45e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.55e-06
|
|
},
|
|
"bedrock/eu-west-2/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.9e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.8e-07
|
|
},
|
|
"bedrock/eu-west-2/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 4.7e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.86e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-west-2/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 4.7e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.86e-06
|
|
},
|
|
"bedrock/eu-west-2/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 7.8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.86e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-west-3/mistral.mistral-7b-instruct-v0:2": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.6e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-west-3/mistral.mistral-large-2402-v1:0": {
|
|
"input_cost_per_token": 1.04e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.12e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"bedrock/eu-west-3/mistral.mixtral-8x7b-instruct-v0:1": {
|
|
"input_cost_per_token": 5.9e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.1e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/eu-south-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/eu-south-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/eu-south-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/invoke/anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Anthropic via Invoke route does not currently support pdf input."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"bedrock/sa-east-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 4.45e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.88e-06
|
|
},
|
|
"bedrock/sa-east-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.01e-06
|
|
},
|
|
"bedrock/sa-east-1/deepseek.v3.2": {
|
|
"input_cost_per_token": 7.4e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.22e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/sa-east-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/sa-east-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.44e-06
|
|
},
|
|
"bedrock/sa-east-1/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 7.3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.03e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/sa-east-1/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/sa-east-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.44e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-1/1-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.011,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.011,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/1-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.0175,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0175
|
|
},
|
|
"bedrock/us-east-1/1-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.0175,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0175,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/6-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.00611,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.00611,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/6-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.00972,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.00972
|
|
},
|
|
"bedrock/us-east-1/6-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.00972,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.00972,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/anthropic.claude-instant-v1": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/anthropic.claude-v1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/anthropic.claude-v2:1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.65e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-06
|
|
},
|
|
"bedrock/us-east-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07
|
|
},
|
|
"bedrock/us-east-1/mistral.mistral-7b-instruct-v0:2": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/mistral.mistral-large-2402-v1:0": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"bedrock/us-east-1/mistral.mixtral-8x7b-instruct-v0:1": {
|
|
"input_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-east-1/deepseek.v3.2": {
|
|
"input_cost_per_token": 6.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.85e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-1/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"bedrock/us-east-1/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/us-east-1/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-1/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-2/deepseek.v3.2": {
|
|
"input_cost_per_token": 6.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.85e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-2/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-2/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"bedrock/us-east-2/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/us-east-2/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-2/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-gov-east-1/amazon.nova-pro-v1:0": {
|
|
"input_cost_per_token": 9.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.84e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"bedrock/us-gov-east-1/amazon.titan-embed-text-v1": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536
|
|
},
|
|
"bedrock/us-gov-east-1/amazon.titan-embed-text-v2:0": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024
|
|
},
|
|
"bedrock/us-gov-east-1/amazon.titan-text-express-v1": {
|
|
"input_cost_per_token": 1.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.7e-06
|
|
},
|
|
"bedrock/us-gov-east-1/amazon.titan-text-lite-v1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07
|
|
},
|
|
"bedrock/us-gov-east-1/amazon.titan-text-premier-v1:0": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06
|
|
},
|
|
"bedrock/us-gov-east-1/anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3.6e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3.6e-07,
|
|
"cache_creation_input_token_cost": 4.5e-06
|
|
},
|
|
"bedrock/us-gov-east-1/anthropic.claude-3-haiku-20240307-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07
|
|
},
|
|
"bedrock/us-gov-east-1/anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"bedrock/us-gov-east-1/claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"bedrock/us-gov-east-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.65e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-06,
|
|
"supports_pdf_input": true
|
|
},
|
|
"bedrock/us-gov-east-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.65e-06,
|
|
"supports_pdf_input": true
|
|
},
|
|
"bedrock/us-gov-west-1/amazon.nova-pro-v1:0": {
|
|
"input_cost_per_token": 9.6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.84e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"bedrock/us-gov-west-1/amazon.titan-embed-text-v1": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536
|
|
},
|
|
"bedrock/us-gov-west-1/amazon.titan-embed-text-v2:0": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024
|
|
},
|
|
"bedrock/us-gov-west-1/amazon.titan-text-express-v1": {
|
|
"input_cost_per_token": 1.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.7e-06
|
|
},
|
|
"bedrock/us-gov-west-1/amazon.titan-text-lite-v1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07
|
|
},
|
|
"bedrock/us-gov-west-1/amazon.titan-text-premier-v1:0": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 42000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06
|
|
},
|
|
"bedrock/us-gov-west-1/anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
"cache_creation_input_token_cost": 4.5e-06,
|
|
"cache_read_input_token_cost": 3.6e-07,
|
|
"input_cost_per_token": 3.6e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"bedrock/us-gov-west-1/anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3.6e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3.6e-07,
|
|
"cache_creation_input_token_cost": 4.5e-06
|
|
},
|
|
"bedrock/us-gov-west-1/anthropic.claude-3-haiku-20240307-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07
|
|
},
|
|
"bedrock/us-gov-west-1/anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"bedrock/us-gov-west-1/claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"bedrock/us-gov-west-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.65e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-06,
|
|
"supports_pdf_input": true
|
|
},
|
|
"bedrock/us-gov-west-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.65e-06,
|
|
"supports_pdf_input": true
|
|
},
|
|
"bedrock/us-west-1/meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.65e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-06
|
|
},
|
|
"bedrock/us-west-1/meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07
|
|
},
|
|
"bedrock/us-west-2/1-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.011,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.011,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/1-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.0175,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0175
|
|
},
|
|
"bedrock/us-west-2/1-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.0175,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.0175,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/6-month-commitment/anthropic.claude-instant-v1": {
|
|
"input_cost_per_second": 0.00611,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.00611,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/6-month-commitment/anthropic.claude-v1": {
|
|
"input_cost_per_second": 0.00972,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.00972
|
|
},
|
|
"bedrock/us-west-2/6-month-commitment/anthropic.claude-v2:1": {
|
|
"input_cost_per_second": 0.00972,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_second": 0.00972,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/anthropic.claude-instant-v1": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/anthropic.claude-v1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/anthropic.claude-v2:1": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/mistral.mistral-7b-instruct-v0:2": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/mistral.mistral-large-2402-v1:0": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"bedrock/us-west-2/mistral.mixtral-8x7b-instruct-v0:1": {
|
|
"input_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock/us-west-2/deepseek.v3.2": {
|
|
"input_cost_per_token": 6.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.85e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-west-2/minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-west-2/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"bedrock/us-west-2/moonshotai.kimi-k2-thinking": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"bedrock/us-west-2/moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-west-2/qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us.anthropic.claude-3-5-haiku-20241022-v1:0": {
|
|
"cache_creation_input_token_cost": 1e-06,
|
|
"cache_read_input_token_cost": 8e-08,
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"black_forest_labs/flux-kontext-pro": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/edits",
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-kontext-max": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.08,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/edits",
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-pro-1.0-fill": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.05,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-pro-1.0-expand": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.05,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-pro-1.1": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-pro-1.1-ultra": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-dev": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.025,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"black_forest_labs/flux-pro": {
|
|
"litellm_provider": "black_forest_labs",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.05,
|
|
"source": "https://bfl.ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"cerebras/llama-3.3-70b": {
|
|
"input_cost_per_token": 8.5e-07,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cerebras/llama3.1-70b": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cerebras/llama3.1-8b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cerebras/gpt-oss-120b": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-07,
|
|
"source": "https://www.cerebras.ai/blog/openai-gpt-oss-120b-runs-fastest-on-cerebras",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cerebras/qwen-3-32b": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"source": "https://inference-docs.cerebras.ai/support/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cerebras/zai-glm-4.6": {
|
|
"deprecation_date": "2026-01-20",
|
|
"input_cost_per_token": 2.25e-06,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"source": "https://www.cerebras.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cerebras/zai-glm-4.7": {
|
|
"input_cost_per_token": 2.25e-06,
|
|
"litellm_provider": "cerebras",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"source": "https://www.cerebras.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"chatdolphin": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "nlp_cloud",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07
|
|
},
|
|
"chatgpt-4o-latest": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-transcribe-diarize": {
|
|
"input_cost_per_audio_token": 6e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"claude-haiku-4-5-20251001": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_computer_use": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"claude-haiku-4-5": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_computer_use": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"claude-3-7-sonnet-20250219": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"deprecation_date": "2026-02-19",
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-3-haiku-20240307": {
|
|
"cache_creation_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 264
|
|
},
|
|
"claude-3-opus-20240229": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"deprecation_date": "2026-05-01",
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 395
|
|
},
|
|
"claude-4-opus-20250514": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-4-sonnet-20250514": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-sonnet-4-5": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346
|
|
},
|
|
"claude-sonnet-4-5-20250929": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tool_use_system_prompt_tokens": 346
|
|
},
|
|
"claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_adaptive_thinking": true,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-opus-4-1": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_creation_input_token_cost_above_1hr": 3e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-opus-4-1-20250805": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_creation_input_token_cost_above_1hr": 3e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"deprecation_date": "2026-08-05",
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-opus-4-20250514": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_creation_input_token_cost_above_1hr": 3e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"deprecation_date": "2026-05-14",
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-opus-4-5-20251101": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-opus-4-5": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"claude-opus-4-6": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_adaptive_thinking": true,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"provider_specific_entry": {
|
|
"us": 1.1,
|
|
"fast": 6.0
|
|
},
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"claude-opus-4-6-20260205": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_adaptive_thinking": true,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"provider_specific_entry": {
|
|
"us": 1.1,
|
|
"fast": 6.0
|
|
},
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_adaptive_thinking": true,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"provider_specific_entry": {
|
|
"us": 1.1,
|
|
"fast": 6.0
|
|
},
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"claude-opus-4-7-20260416": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_adaptive_thinking": true,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"provider_specific_entry": {
|
|
"us": 1.1,
|
|
"fast": 6.0
|
|
},
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"claude-sonnet-4-20250514": {
|
|
"deprecation_date": "2026-05-14",
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "anthropic",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"cloudflare/@cf/meta/llama-2-7b-chat-fp16": {
|
|
"input_cost_per_token": 1.923e-06,
|
|
"litellm_provider": "cloudflare",
|
|
"max_input_tokens": 3072,
|
|
"max_output_tokens": 3072,
|
|
"max_tokens": 3072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.923e-06
|
|
},
|
|
"cloudflare/@cf/meta/llama-2-7b-chat-int8": {
|
|
"input_cost_per_token": 1.923e-06,
|
|
"litellm_provider": "cloudflare",
|
|
"max_input_tokens": 2048,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.923e-06
|
|
},
|
|
"cloudflare/@cf/mistral/mistral-7b-instruct-v0.1": {
|
|
"input_cost_per_token": 1.923e-06,
|
|
"litellm_provider": "cloudflare",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.923e-06
|
|
},
|
|
"cloudflare/@hf/thebloke/codellama-7b-instruct-awq": {
|
|
"input_cost_per_token": 1.923e-06,
|
|
"litellm_provider": "cloudflare",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.923e-06
|
|
},
|
|
"codestral/codestral-2405": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "codestral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://docs.mistral.ai/capabilities/code_generation/",
|
|
"supports_assistant_prefill": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"codestral/codestral-latest": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "codestral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://docs.mistral.ai/capabilities/code_generation/",
|
|
"supports_assistant_prefill": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"codex-mini-latest": {
|
|
"cache_read_input_token_cost": 3.75e-07,
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"cohere.command-light-text-v14": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cohere.command-r-plus-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cohere.command-r-v1:0": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cohere.command-text-v14": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"cohere.embed-english-v3": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"cohere.embed-multilingual-v3": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"cohere.embed-v4:0": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536,
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"cohere/embed-v4.0": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536,
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"cohere.rerank-v3-5:0": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "bedrock",
|
|
"max_document_chunks_per_query": 100,
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_query_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"max_tokens_per_document_chunk": 512,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"command": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"command-a-03-2025": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"command-light": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"command-nightly": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"command-r": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"command-r-08-2024": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"command-r-plus": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"command-r-plus-08-2024": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"command-r7b-12-2024": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "cohere_chat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.75e-08,
|
|
"source": "https://docs.cohere.com/v2/docs/command-r7b",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"computer-use-preview": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "azure",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"dall-e-2": {
|
|
"input_cost_per_image": 0.02,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits",
|
|
"/v1/images/variations"
|
|
]
|
|
},
|
|
"dall-e-3": {
|
|
"input_cost_per_image": 0.04,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"deepseek-chat": {
|
|
"cache_read_input_token_cost": 2.8e-08,
|
|
"input_cost_per_token": 2.8e-07,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.2e-07,
|
|
"source": "https://api-docs.deepseek.com/quick_start/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepseek-reasoner": {
|
|
"cache_read_input_token_cost": 2.8e-08,
|
|
"input_cost_per_token": 2.8e-07,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.2e-07,
|
|
"source": "https://api-docs.deepseek.com/quick_start/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"dashscope/qwen-coder": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-flash": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 4e-07,
|
|
"range": [
|
|
0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 2e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen-flash-2025-07-28": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 4e-07,
|
|
"range": [
|
|
0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 2e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen-max": {
|
|
"input_cost_per_token": 1.6e-06,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 30720,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.4e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-plus": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 129024,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-plus-2025-01-25": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 129024,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-plus-2025-04-28": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 129024,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-plus-2025-07-14": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 129024,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-plus-2025-07-28": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_reasoning_token": 4e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"range": [
|
|
0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_reasoning_token": 1.2e-05,
|
|
"output_cost_per_token": 3.6e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen-plus-2025-09-11": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_reasoning_token": 4e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"range": [
|
|
0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_reasoning_token": 1.2e-05,
|
|
"output_cost_per_token": 3.6e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen-plus-latest": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_reasoning_token": 4e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"range": [
|
|
0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_reasoning_token": 1.2e-05,
|
|
"output_cost_per_token": 3.6e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen-turbo": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 129024,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 5e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-turbo-2024-11-01": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-turbo-2025-04-28": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 5e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-turbo-latest": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 5e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen3-30b-a3b": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 129024,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen3-coder-flash": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"cache_read_input_token_cost": 8e-08,
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"cache_read_input_token_cost": 1.2e-07,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 8e-07,
|
|
"output_cost_per_token": 4e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"cache_read_input_token_cost": 4e-07,
|
|
"input_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token": 9.6e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-coder-flash-2025-07-28": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 8e-07,
|
|
"output_cost_per_token": 4e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token": 9.6e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-coder-plus": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 5e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"cache_read_input_token_cost": 1.8e-07,
|
|
"input_cost_per_token": 1.8e-06,
|
|
"output_cost_per_token": 9e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"cache_read_input_token_cost": 6e-07,
|
|
"input_cost_per_token": 6e-06,
|
|
"output_cost_per_token": 6e-05,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-coder-plus-2025-07-22": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 5e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.8e-06,
|
|
"output_cost_per_token": 9e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 6e-06,
|
|
"output_cost_per_token": 6e-05,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-max-preview": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 258048,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 6e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 2.4e-06,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"range": [
|
|
128000.0,
|
|
252000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-max": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 258048,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 6e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 2.4e-06,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"range": [
|
|
128000.0,
|
|
252000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-max-2026-01-23": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 258048,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 6e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 2.4e-06,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"range": [
|
|
128000.0,
|
|
252000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3-next-80b-a3b-instruct": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/model-pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen3-next-80b-a3b-thinking": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/model-pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen3-vl-235b-a22b-instruct": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/model-pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"dashscope/qwen3-vl-235b-a22b-thinking": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/model-pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"dashscope/qwen3-vl-32b-instruct": {
|
|
"input_cost_per_token": 1.6e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.4e-07,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/model-pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"dashscope/qwen3-vl-32b-thinking": {
|
|
"input_cost_per_token": 1.6e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.87e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/model-pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"dashscope/qwen3-vl-plus": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 260096,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 1.6e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 4.8e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwen3.5-plus": {
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 991808,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"range": [
|
|
0,
|
|
256000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 3e-06,
|
|
"range": [
|
|
256000.0,
|
|
1000000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"dashscope/qwq-plus": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "dashscope",
|
|
"max_input_tokens": 98304,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-06,
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"dashscope/qwen-image-2.0": {
|
|
"litellm_provider": "dashscope",
|
|
"mode": "image_generation",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"dashscope/qwen-image-2.0-pro": {
|
|
"litellm_provider": "dashscope",
|
|
"mode": "image_generation",
|
|
"source": "https://www.alibabacloud.com/help/en/model-studio/models",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"databricks/databricks-bge-large-en": {
|
|
"input_cost_per_token": 1.0003e-07,
|
|
"input_dbu_cost_per_token": 1.429e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_dbu_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving"
|
|
},
|
|
"databricks/databricks-claude-3-7-sonnet": {
|
|
"input_cost_per_token": 2.9999900000000002e-06,
|
|
"input_dbu_cost_per_token": 4.2857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000020000000002e-05,
|
|
"output_dbu_cost_per_token": 0.000214286,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-haiku-4-5": {
|
|
"input_cost_per_token": 1.00002e-06,
|
|
"input_dbu_cost_per_token": 1.4286e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.00003e-06,
|
|
"output_dbu_cost_per_token": 7.1429e-05,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-opus-4": {
|
|
"input_cost_per_token": 1.5000020000000002e-05,
|
|
"input_dbu_cost_per_token": 0.000214286,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.500003000000001e-05,
|
|
"output_dbu_cost_per_token": 0.001071429,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-opus-4-1": {
|
|
"input_cost_per_token": 1.5000020000000002e-05,
|
|
"input_dbu_cost_per_token": 0.000214286,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.500003000000001e-05,
|
|
"output_dbu_cost_per_token": 0.001071429,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-opus-4-5": {
|
|
"input_cost_per_token": 5.00003e-06,
|
|
"input_dbu_cost_per_token": 7.1429e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5000010000000002e-05,
|
|
"output_dbu_cost_per_token": 0.000357143,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-sonnet-4": {
|
|
"input_cost_per_token": 2.9999900000000002e-06,
|
|
"input_dbu_cost_per_token": 4.2857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000020000000002e-05,
|
|
"output_dbu_cost_per_token": 0.000214286,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-sonnet-4-1": {
|
|
"input_cost_per_token": 2.9999900000000002e-06,
|
|
"input_dbu_cost_per_token": 4.2857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000020000000002e-05,
|
|
"output_dbu_cost_per_token": 0.000214286,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-claude-sonnet-4-5": {
|
|
"input_cost_per_token": 2.9999900000000002e-06,
|
|
"input_dbu_cost_per_token": 4.2857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000020000000002e-05,
|
|
"output_dbu_cost_per_token": 0.000214286,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-gemini-2-5-flash": {
|
|
"input_cost_per_token": 3.0001999999999996e-07,
|
|
"input_dbu_cost_per_token": 4.285999999999999e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_tokens": 65535,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.49998e-06,
|
|
"output_dbu_cost_per_token": 3.5714e-05,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-gemini-2-5-pro": {
|
|
"input_cost_per_token": 1.24999e-06,
|
|
"input_dbu_cost_per_token": 1.7857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.999990000000002e-06,
|
|
"output_dbu_cost_per_token": 0.000142857,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-gemma-3-12b": {
|
|
"input_cost_per_token": 1.5000999999999998e-07,
|
|
"input_dbu_cost_per_token": 2.1429999999999996e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.0001e-07,
|
|
"output_dbu_cost_per_token": 7.143e-06,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gpt-5": {
|
|
"input_cost_per_token": 1.24999e-06,
|
|
"input_dbu_cost_per_token": 1.7857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.999990000000002e-06,
|
|
"output_dbu_cost_per_token": 0.000142857,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gpt-5-1": {
|
|
"input_cost_per_token": 1.24999e-06,
|
|
"input_dbu_cost_per_token": 1.7857e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.999990000000002e-06,
|
|
"output_dbu_cost_per_token": 0.000142857,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gpt-5-mini": {
|
|
"input_cost_per_token": 2.4997000000000006e-07,
|
|
"input_dbu_cost_per_token": 3.571e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.9999700000000004e-06,
|
|
"output_dbu_cost_per_token": 2.8571e-05,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gpt-5-nano": {
|
|
"input_cost_per_token": 4.998e-08,
|
|
"input_dbu_cost_per_token": 7.14e-07,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.9998000000000007e-07,
|
|
"output_dbu_cost_per_token": 5.714000000000001e-06,
|
|
"source": "https://www.databricks.com/product/pricing/proprietary-foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gpt-oss-120b": {
|
|
"input_cost_per_token": 1.5000999999999998e-07,
|
|
"input_dbu_cost_per_token": 2.1429999999999996e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.9997e-07,
|
|
"output_dbu_cost_per_token": 8.571e-06,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gpt-oss-20b": {
|
|
"input_cost_per_token": 7e-08,
|
|
"input_dbu_cost_per_token": 1e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.0001999999999996e-07,
|
|
"output_dbu_cost_per_token": 4.285999999999999e-06,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving"
|
|
},
|
|
"databricks/databricks-gte-large-en": {
|
|
"input_cost_per_token": 1.2999000000000001e-07,
|
|
"input_dbu_cost_per_token": 1.857e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_dbu_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving"
|
|
},
|
|
"databricks/databricks-llama-2-70b-chat": {
|
|
"input_cost_per_token": 5.0001e-07,
|
|
"input_dbu_cost_per_token": 7.143e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000300000000002e-06,
|
|
"output_dbu_cost_per_token": 2.1429e-05,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-llama-4-maverick": {
|
|
"input_cost_per_token": 5.0001e-07,
|
|
"input_dbu_cost_per_token": 7.143e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Databricks documentation now provides both DBU costs (_dbu_cost_per_token) and dollar costs(_cost_per_token)."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000300000000002e-06,
|
|
"output_dbu_cost_per_token": 2.1429e-05,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-meta-llama-3-1-405b-instruct": {
|
|
"input_cost_per_token": 5.00003e-06,
|
|
"input_dbu_cost_per_token": 7.1429e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000020000000002e-05,
|
|
"output_dbu_cost_per_token": 0.000214286,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-meta-llama-3-1-8b-instruct": {
|
|
"input_cost_per_token": 1.5000999999999998e-07,
|
|
"input_dbu_cost_per_token": 2.1429999999999996e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.5003000000000007e-07,
|
|
"output_dbu_cost_per_token": 6.429000000000001e-06,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving"
|
|
},
|
|
"databricks/databricks-meta-llama-3-3-70b-instruct": {
|
|
"input_cost_per_token": 5.0001e-07,
|
|
"input_dbu_cost_per_token": 7.143e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5000300000000002e-06,
|
|
"output_dbu_cost_per_token": 2.1429e-05,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-meta-llama-3-70b-instruct": {
|
|
"input_cost_per_token": 1.00002e-06,
|
|
"input_dbu_cost_per_token": 1.4286e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.9999900000000002e-06,
|
|
"output_dbu_cost_per_token": 4.2857e-05,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-mixtral-8x7b-instruct": {
|
|
"input_cost_per_token": 5.0001e-07,
|
|
"input_dbu_cost_per_token": 7.143e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.00002e-06,
|
|
"output_dbu_cost_per_token": 1.4286e-05,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-mpt-30b-instruct": {
|
|
"input_cost_per_token": 1.00002e-06,
|
|
"input_dbu_cost_per_token": 1.4286e-05,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.00002e-06,
|
|
"output_dbu_cost_per_token": 1.4286e-05,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"databricks/databricks-mpt-7b-instruct": {
|
|
"input_cost_per_token": 5.0001e-07,
|
|
"input_dbu_cost_per_token": 7.143e-06,
|
|
"litellm_provider": "databricks",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"metadata": {
|
|
"notes": "Input/output cost per token is dbu cost * $0.070, based on databricks Llama 3.1 70B conversion. Number provided for reference, '*_dbu_cost_per_token' used in actual calculation."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"output_dbu_cost_per_token": 0.0,
|
|
"source": "https://www.databricks.com/product/pricing/foundation-model-serving",
|
|
"supports_tool_choice": true
|
|
},
|
|
"dataforseo/search": {
|
|
"input_cost_per_query": 0.003,
|
|
"litellm_provider": "dataforseo",
|
|
"mode": "search"
|
|
},
|
|
"davinci-002": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "text-completion-openai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"deepgram/base": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-conversationalai": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-finance": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-general": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-meeting": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-phonecall": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-video": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/base-voicemail": {
|
|
"input_cost_per_second": 0.00020833,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0125/60 seconds = $0.00020833 per second",
|
|
"original_pricing_per_minute": 0.0125
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/enhanced": {
|
|
"input_cost_per_second": 0.00024167,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0145/60 seconds = $0.00024167 per second",
|
|
"original_pricing_per_minute": 0.0145
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/enhanced-finance": {
|
|
"input_cost_per_second": 0.00024167,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0145/60 seconds = $0.00024167 per second",
|
|
"original_pricing_per_minute": 0.0145
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/enhanced-general": {
|
|
"input_cost_per_second": 0.00024167,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0145/60 seconds = $0.00024167 per second",
|
|
"original_pricing_per_minute": 0.0145
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/enhanced-meeting": {
|
|
"input_cost_per_second": 0.00024167,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0145/60 seconds = $0.00024167 per second",
|
|
"original_pricing_per_minute": 0.0145
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/enhanced-phonecall": {
|
|
"input_cost_per_second": 0.00024167,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0145/60 seconds = $0.00024167 per second",
|
|
"original_pricing_per_minute": 0.0145
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-atc": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-automotive": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-conversationalai": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-drivethru": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-finance": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-general": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-meeting": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-phonecall": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-video": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-2-voicemail": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-3": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-3-general": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-3-medical": {
|
|
"input_cost_per_second": 8.667e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0052/60 seconds = $0.00008667 per second (multilingual)",
|
|
"original_pricing_per_minute": 0.0052
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-general": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/nova-phonecall": {
|
|
"input_cost_per_second": 7.167e-05,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"calculation": "$0.0043/60 seconds = $0.00007167 per second",
|
|
"original_pricing_per_minute": 0.0043
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/whisper": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"notes": "Deepgram's hosted OpenAI Whisper models - pricing may differ from native Deepgram models"
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/whisper-base": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"notes": "Deepgram's hosted OpenAI Whisper models - pricing may differ from native Deepgram models"
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/whisper-large": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"notes": "Deepgram's hosted OpenAI Whisper models - pricing may differ from native Deepgram models"
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/whisper-medium": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"notes": "Deepgram's hosted OpenAI Whisper models - pricing may differ from native Deepgram models"
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/whisper-small": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"notes": "Deepgram's hosted OpenAI Whisper models - pricing may differ from native Deepgram models"
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepgram/whisper-tiny": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "deepgram",
|
|
"metadata": {
|
|
"notes": "Deepgram's hosted OpenAI Whisper models - pricing may differ from native Deepgram models"
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://deepgram.com/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"deepinfra/Gryphe/MythoMax-L2-13b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 9e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/NousResearch/Hermes-3-Llama-3.1-405B": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 1e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/NousResearch/Hermes-3-Llama-3.1-70B": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/Qwen/QwQ-32B": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen2.5-72B-Instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1.2e-07,
|
|
"output_cost_per_token": 3.9e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen2.5-7B-Instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/Qwen/Qwen2.5-VL-32B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-14B": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 2.4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-235B-A22B": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 1.8e-07,
|
|
"output_cost_per_token": 5.4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-235B-A22B-Instruct-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-235B-A22B-Thinking-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 2.9e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-30B-A3B": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 2.9e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-32B": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 2.8e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 1.6e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2.9e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-Next-80B-A3B-Instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 1.4e-07,
|
|
"output_cost_per_token": 1.4e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Qwen/Qwen3-Next-80B-A3B-Thinking": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 1.4e-07,
|
|
"output_cost_per_token": 1.4e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/Sao10K/L3-8B-Lunaris-v1-Turbo": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/Sao10K/L3.1-70B-Euryale-v2.2": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 6.5e-07,
|
|
"output_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/Sao10K/L3.3-70B-Euryale-v2.3": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 6.5e-07,
|
|
"output_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/allenai/olmOCR-7B-0725-FP8": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/anthropic/claude-3-7-sonnet-latest": {
|
|
"max_tokens": 200000,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"output_cost_per_token": 1.65e-05,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/anthropic/claude-4-opus": {
|
|
"max_tokens": 200000,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"input_cost_per_token": 1.65e-05,
|
|
"output_cost_per_token": 8.25e-05,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/anthropic/claude-4-sonnet": {
|
|
"max_tokens": 200000,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"output_cost_per_token": 1.65e-05,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-R1": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 7e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-R1-0528": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 2.15e-06,
|
|
"cache_read_input_token_cost": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-R1-0528-Turbo": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-R1-Distill-Llama-70B": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 2.7e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-R1-Turbo": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-V3": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 3.8e-07,
|
|
"output_cost_per_token": 8.9e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-V3-0324": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-V3.1": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1e-06,
|
|
"cache_read_input_token_cost": 2.16e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/deepseek-ai/DeepSeek-V3.1-Terminus": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1e-06,
|
|
"cache_read_input_token_cost": 2.16e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/google/gemini-2.0-flash-001": {
|
|
"deprecation_date": "2026-06-01",
|
|
"max_tokens": 1000000,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 1000000,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/google/gemini-2.5-flash": {
|
|
"max_tokens": 1000000,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 1000000,
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/google/gemini-2.5-pro": {
|
|
"max_tokens": 1000000,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 1000000,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"output_cost_per_token": 1e-05,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/google/gemma-3-12b-it": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/google/gemma-3-27b-it": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 1.6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/google/gemma-3-4b-it": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 8e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Llama-3.2-11B-Vision-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 4.9e-08,
|
|
"output_cost_per_token": 4.9e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/meta-llama/Llama-3.2-3B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 2e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Llama-3.3-70B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2.3e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Llama-3.3-70B-Instruct-Turbo": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 3.9e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepinfra/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8": {
|
|
"max_tokens": 1048576,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 1048576,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Llama-4-Scout-17B-16E-Instruct": {
|
|
"max_tokens": 327680,
|
|
"max_input_tokens": 327680,
|
|
"max_output_tokens": 327680,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Llama-Guard-3-8B": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 5.5e-08,
|
|
"output_cost_per_token": 5.5e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/meta-llama/Llama-Guard-4-12B": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 1.8e-07,
|
|
"output_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/meta-llama/Meta-Llama-3-8B-Instruct": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 6e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 2.8e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 3e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/microsoft/WizardLM-2-8x22B": {
|
|
"max_tokens": 65536,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"input_cost_per_token": 4.8e-07,
|
|
"output_cost_per_token": 4.8e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepinfra/microsoft/phi-4": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 1.4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/mistralai/Mistral-Nemo-Instruct-2407": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 4e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/mistralai/Mistral-Small-24B-Instruct-2501": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 8e-08,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/mistralai/Mistral-Small-3.2-24B-Instruct-2506": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/mistralai/Mixtral-8x7B-Instruct-v0.1": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/moonshotai/Kimi-K2-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 2e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/moonshotai/Kimi-K2-Instruct-0905": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 2e-06,
|
|
"cache_read_input_token_cost": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/nvidia/Llama-3.1-Nemotron-70B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/nvidia/Llama-3.3-Nemotron-Super-49B-v1.5": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/nvidia/NVIDIA-Nemotron-Nano-9B-v2": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1.6e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/openai/gpt-oss-120b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/openai/gpt-oss-20b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepinfra/zai-org/GLM-4.5": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 1.6e-06,
|
|
"litellm_provider": "deepinfra",
|
|
"mode": "chat",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"deepseek/deepseek-chat": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 2.8e-08,
|
|
"input_cost_per_token": 2.8e-07,
|
|
"input_cost_per_token_cache_hit": 2.8e-08,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.2e-07,
|
|
"source": "https://api-docs.deepseek.com/quick_start/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepseek/deepseek-coder": {
|
|
"input_cost_per_token": 1.4e-07,
|
|
"input_cost_per_token_cache_hit": 1.4e-08,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepseek/deepseek-r1": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"input_cost_per_token_cache_hit": 1.4e-07,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.19e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepseek/deepseek-reasoner": {
|
|
"cache_read_input_token_cost": 2.8e-08,
|
|
"input_cost_per_token": 2.8e-07,
|
|
"input_cost_per_token_cache_hit": 2.8e-08,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.2e-07,
|
|
"source": "https://api-docs.deepseek.com/quick_start/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": false,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"deepseek/deepseek-v3": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 7e-08,
|
|
"input_cost_per_token": 2.7e-07,
|
|
"input_cost_per_token_cache_hit": 7e-08,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepseek/deepseek-v3.2": {
|
|
"input_cost_per_token": 2.8e-07,
|
|
"input_cost_per_token_cache_hit": 2.8e-08,
|
|
"litellm_provider": "deepseek",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"deepseek.v3-v1:0": {
|
|
"input_cost_per_token": 5.8e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 81920,
|
|
"max_tokens": 81920,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"deepseek.v3.2": {
|
|
"input_cost_per_token": 6.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.85e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"dolphin": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "nlp_cloud",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 5e-07
|
|
},
|
|
"deepseek-v3-2-251201": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 98304,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"glm-4-7-251222": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"kimi-k2-thinking-251104": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 229376,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"doubao-embedding": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Volcengine Doubao embedding model - standard version with 2560 dimensions"
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 2560
|
|
},
|
|
"doubao-embedding-large": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Volcengine Doubao embedding model - large version with 2048 dimensions"
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 2048
|
|
},
|
|
"doubao-embedding-large-text-240915": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Volcengine Doubao embedding model - text-240915 version with 4096 dimensions"
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 4096
|
|
},
|
|
"doubao-embedding-large-text-250515": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Volcengine Doubao embedding model - text-250515 version with 2048 dimensions"
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 2048
|
|
},
|
|
"doubao-embedding-text-240715": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"metadata": {
|
|
"notes": "Volcengine Doubao embedding model - text-240715 version with 2560 dimensions"
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 2560
|
|
},
|
|
"exa_ai/search": {
|
|
"litellm_provider": "exa_ai",
|
|
"mode": "search",
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_query": 0.005,
|
|
"max_results_range": [
|
|
0,
|
|
25
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.025,
|
|
"max_results_range": [
|
|
26,
|
|
100
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"firecrawl/search": {
|
|
"litellm_provider": "firecrawl",
|
|
"mode": "search",
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_query": 0.00166,
|
|
"max_results_range": [
|
|
1,
|
|
10
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.00332,
|
|
"max_results_range": [
|
|
11,
|
|
20
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.00498,
|
|
"max_results_range": [
|
|
21,
|
|
30
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.00664,
|
|
"max_results_range": [
|
|
31,
|
|
40
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.0083,
|
|
"max_results_range": [
|
|
41,
|
|
50
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.00996,
|
|
"max_results_range": [
|
|
51,
|
|
60
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.01162,
|
|
"max_results_range": [
|
|
61,
|
|
70
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.01328,
|
|
"max_results_range": [
|
|
71,
|
|
80
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.01494,
|
|
"max_results_range": [
|
|
81,
|
|
90
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_query": 0.0166,
|
|
"max_results_range": [
|
|
91,
|
|
100
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"notes": "Firecrawl search pricing: $83 for 100,000 credits, 2 credits per 10 results. Cost = ceiling(limit/10) * 2 * $0.00083"
|
|
}
|
|
},
|
|
"perplexity/search": {
|
|
"input_cost_per_query": 0.005,
|
|
"litellm_provider": "perplexity",
|
|
"mode": "search"
|
|
},
|
|
"searxng/search": {
|
|
"litellm_provider": "searxng",
|
|
"mode": "search",
|
|
"input_cost_per_query": 0.0,
|
|
"metadata": {
|
|
"notes": "SearXNG is an open-source metasearch engine. Free to use when self-hosted or using public instances."
|
|
}
|
|
},
|
|
"serper/search": {
|
|
"input_cost_per_query": 0.001,
|
|
"litellm_provider": "serper",
|
|
"mode": "search",
|
|
"metadata": {
|
|
"notes": "Serper Google Search API. Pricing: $1.00/1k queries (Starter), $0.75/1k (Standard), $0.50/1k (Scale), $0.30/1k (Ultimate)."
|
|
}
|
|
},
|
|
"elevenlabs/scribe_v1": {
|
|
"input_cost_per_second": 6.11e-05,
|
|
"litellm_provider": "elevenlabs",
|
|
"metadata": {
|
|
"calculation": "$0.22/hour = $0.00366/minute = $0.0000611 per second (enterprise pricing)",
|
|
"notes": "ElevenLabs Scribe v1 - state-of-the-art speech recognition model with 99 language support",
|
|
"original_pricing_per_hour": 0.22
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://elevenlabs.io/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"elevenlabs/scribe_v1_experimental": {
|
|
"input_cost_per_second": 6.11e-05,
|
|
"litellm_provider": "elevenlabs",
|
|
"metadata": {
|
|
"calculation": "$0.22/hour = $0.00366/minute = $0.0000611 per second (enterprise pricing)",
|
|
"notes": "ElevenLabs Scribe v1 experimental - enhanced version of the main Scribe model",
|
|
"original_pricing_per_hour": 0.22
|
|
},
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0,
|
|
"source": "https://elevenlabs.io/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"elevenlabs/eleven_v3": {
|
|
"input_cost_per_character": 0.00018,
|
|
"litellm_provider": "elevenlabs",
|
|
"metadata": {
|
|
"calculation": "$0.18/1000 characters (Scale plan pricing, 1 credit per character)",
|
|
"notes": "ElevenLabs Eleven v3 - most expressive TTS model with 70+ languages and audio tags support"
|
|
},
|
|
"mode": "audio_speech",
|
|
"source": "https://elevenlabs.io/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"elevenlabs/eleven_multilingual_v2": {
|
|
"input_cost_per_character": 0.00018,
|
|
"litellm_provider": "elevenlabs",
|
|
"metadata": {
|
|
"calculation": "$0.18/1000 characters (Scale plan pricing, 1 credit per character)",
|
|
"notes": "ElevenLabs Eleven Multilingual v2 - default TTS model with 29 languages support"
|
|
},
|
|
"mode": "audio_speech",
|
|
"source": "https://elevenlabs.io/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"embed-english-light-v2.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"embed-english-light-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"embed-english-v2.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"embed-english-v3.0": {
|
|
"input_cost_per_image": 0.0001,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"metadata": {
|
|
"notes": "'supports_image_input' is a deprecated field. Use 'supports_embedding_image_input' instead."
|
|
},
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_embedding_image_input": true,
|
|
"supports_image_input": true
|
|
},
|
|
"embed-multilingual-v2.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 768,
|
|
"max_tokens": 768,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"embed-multilingual-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"embed-multilingual-light-v3.0": {
|
|
"input_cost_per_token": 0.0001,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"eu.amazon.nova-lite-v1:0": {
|
|
"input_cost_per_token": 7.8e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.12e-07,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"eu.amazon.nova-micro-v1:0": {
|
|
"input_cost_per_token": 4.6e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.84e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"eu.amazon.nova-pro-v1:0": {
|
|
"input_cost_per_token": 1.05e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.2e-06,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"eu.anthropic.claude-3-5-haiku-20241022-v1:0": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_creation_input_token_cost": 3.125e-07
|
|
},
|
|
"eu.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.375e-06,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"deprecation_date": "2026-10-15",
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"eu.anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"eu.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"eu.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"eu.anthropic.claude-3-haiku-20240307-v1:0": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_creation_input_token_cost": 3.125e-07
|
|
},
|
|
"eu.anthropic.claude-3-opus-20240229-v1:0": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"cache_creation_input_token_cost": 1.875e-05
|
|
},
|
|
"eu.anthropic.claude-3-sonnet-20240229-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"eu.anthropic.claude-opus-4-1-20250805-v1:0": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"eu.anthropic.claude-opus-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"eu.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"eu.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6.6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.475e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 8.25e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6.6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"eu.meta.llama3-2-1b-instruct-v1:0": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"eu.meta.llama3-2-3b-instruct-v1:0": {
|
|
"input_cost_per_token": 1.9e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"eu.mistral.pixtral-large-2502-v1:0": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fal_ai/bria/text-to-image/3.2": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.0398,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/flux-pro/v1.1": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/flux-pro/v1.1-ultra": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/flux/schnell": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.003,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/bytedance/seedream/v3/text-to-image": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.03,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/bytedance/dreamina/v3.1/text-to-image": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.03,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/ideogram/v3": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/imagen4/preview": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.0398,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/imagen4/preview/fast": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.02,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/imagen4/preview/ultra": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/recraft/v3/text-to-image": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.0398,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"fal_ai/fal-ai/stable-diffusion-v35-medium": {
|
|
"litellm_provider": "fal_ai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.0398,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"featherless_ai/featherless-ai/Qwerky-72B": {
|
|
"litellm_provider": "featherless_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat"
|
|
},
|
|
"featherless_ai/featherless-ai/Qwerky-QwQ-32B": {
|
|
"litellm_provider": "featherless_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat"
|
|
},
|
|
"fireworks-ai-4.1b-to-16b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"output_cost_per_token": 2e-07
|
|
},
|
|
"fireworks-ai-56b-to-176b": {
|
|
"input_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"fireworks-ai-above-16b": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"output_cost_per_token": 9e-07
|
|
},
|
|
"fireworks-ai-default": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"fireworks-ai-embedding-150m-to-350m": {
|
|
"input_cost_per_token": 1.6e-08,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"fireworks-ai-embedding-up-to-150m": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"fireworks-ai-moe-up-to-56b": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"output_cost_per_token": 5e-07
|
|
},
|
|
"fireworks-ai-up-to-4b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"output_cost_per_token": 2e-07
|
|
},
|
|
"fireworks_ai/WhereIsAI/UAE-Large-V1": {
|
|
"input_cost_per_token": 1.6e-08,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://fireworks.ai/pricing"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-v2-instruct": {
|
|
"input_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 20480,
|
|
"max_tokens": 20480,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-0528": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 160000,
|
|
"max_output_tokens": 160000,
|
|
"max_tokens": 160000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-basic": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 20480,
|
|
"max_tokens": 20480,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.19e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v3": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v3-0324": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://fireworks.ai/models/fireworks/deepseek-v3-0324",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v3p1": {
|
|
"input_cost_per_token": 5.6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v3p1-terminus": {
|
|
"input_cost_per_token": 5.6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v3p2": {
|
|
"input_cost_per_token": 5.6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/deepseek-v3p2",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/firefunction-v2": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/glm-4p5": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 96000,
|
|
"max_tokens": 96000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.19e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/glm-4p5",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/glm-4p5-air": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 96000,
|
|
"max_tokens": 96000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-07,
|
|
"source": "https://artificialanalysis.ai/models/glm-4-5-air",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/glm-4p6": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"output_cost_per_token": 2.19e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 202800,
|
|
"max_output_tokens": 202800,
|
|
"max_tokens": 202800,
|
|
"mode": "chat",
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/glm-4p7": {
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 202800,
|
|
"max_output_tokens": 202800,
|
|
"max_tokens": 202800,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/glm-4p7",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gpt-oss-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gpt-oss-20b": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kimi-k2-instruct": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/kimi-k2-instruct",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kimi-k2-instruct-0905": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://app.fireworks.ai/models/fireworks/kimi-k2-instruct-0905",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kimi-k2-thinking": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kimi-k2p5": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p1-405b-instruct": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p1-8b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p2-11b-vision-instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p2-1b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p2-3b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p2-90b-vision-instruct": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama4-maverick-instruct-basic": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama4-scout-instruct-basic": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/minimax-m2p1": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 204800,
|
|
"max_tokens": 204800,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/minimax-m2p1",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mixtral-8x22b-instruct-hf": {
|
|
"input_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2-72b-instruct": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/yi-large": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"fireworks_ai/glm-4p7": {
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 202800,
|
|
"max_output_tokens": 202800,
|
|
"max_tokens": 202800,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/glm-4p7",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/kimi-k2p5": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://fireworks.ai/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/minimax-m2p1": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 204800,
|
|
"max_tokens": 204800,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://fireworks.ai/models/fireworks/minimax-m2p1",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"fireworks_ai/nomic-ai/nomic-embed-text-v1": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://fireworks.ai/pricing"
|
|
},
|
|
"fireworks_ai/nomic-ai/nomic-embed-text-v1.5": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://fireworks.ai/pricing"
|
|
},
|
|
"fireworks_ai/thenlper/gte-base": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://fireworks.ai/pricing"
|
|
},
|
|
"fireworks_ai/thenlper/gte-large": {
|
|
"input_cost_per_token": 1.6e-08,
|
|
"litellm_provider": "fireworks_ai-embedding-models",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://fireworks.ai/pricing"
|
|
},
|
|
"friendliai/meta-llama-3.1-70b-instruct": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "friendliai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"friendliai/meta-llama-3.1-8b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "friendliai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:babbage-002": {
|
|
"input_cost_per_token": 1.6e-06,
|
|
"input_cost_per_token_batches": 2e-07,
|
|
"litellm_provider": "text-completion-openai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token_batches": 2e-07
|
|
},
|
|
"ft:davinci-002": {
|
|
"input_cost_per_token": 1.2e-05,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "text-completion-openai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_batches": 1e-06
|
|
},
|
|
"ft:gpt-3.5-turbo": {
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_batches": 1.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"output_cost_per_token_batches": 3e-06,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-3.5-turbo-0125": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-3.5-turbo-0613": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-3.5-turbo-1106": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-4-0613": {
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"source": "OpenAI needs to add pricing for this ft model, will be updated when added by OpenAI. Defaulting to base model pricing",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-4o-2024-08-06": {
|
|
"cache_read_input_token_cost": 1.875e-06,
|
|
"input_cost_per_token": 3.75e-06,
|
|
"input_cost_per_token_batches": 1.875e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_batches": 7.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"ft:gpt-4o-2024-11-20": {
|
|
"cache_creation_input_token_cost": 1.875e-06,
|
|
"input_cost_per_token": 3.75e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-4o-mini-2024-07-18": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 3e-07,
|
|
"input_cost_per_token_batches": 1.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token_batches": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-4.1-2025-04-14": {
|
|
"cache_read_input_token_cost": 7.5e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_batches": 1.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-4.1-mini-2025-04-14": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 8e-07,
|
|
"input_cost_per_token_batches": 4e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"output_cost_per_token_batches": 1.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:gpt-4.1-nano-2025-04-14": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_batches": 1e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"output_cost_per_token_batches": 4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ft:o4-mini-2025-04-16": {
|
|
"cache_read_input_token_cost": 1e-06,
|
|
"input_cost_per_token": 4e-06,
|
|
"input_cost_per_token_batches": 2e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-05,
|
|
"output_cost_per_token_batches": 8e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gemini-2.0-flash": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"source": "https://ai.google.dev/pricing#2_0flash",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.0-flash-001": {
|
|
"cache_read_input_token_cost": 3.75e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.0-flash-lite": {
|
|
"cache_read_input_token_cost": 1.875e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7.5e-08,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 50,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#gemini-2.0-flash",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.0-flash-lite-001": {
|
|
"cache_read_input_token_cost": 1.875e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7.5e-08,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 50,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#gemini-2.0-flash",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.5-flash": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
},
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini-2.5-flash-image": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"max_pdf_size_mb": 30,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.039,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 100000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-flash-image",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false,
|
|
"tpm": 8000000,
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini-3-pro-image-preview": {
|
|
"input_cost_per_image": 0.0011,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.134,
|
|
"output_cost_per_image_token": 0.00012,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query",
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini-3.1-flash-image-preview": {
|
|
"input_cost_per_image": 0.00056,
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.0672,
|
|
"output_cost_per_image_token": 6e-05,
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini-3.1-flash-lite-preview": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_per_audio_token": 5e-08,
|
|
"input_cost_per_audio_token": 5e-07,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 1.5e-06,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": false,
|
|
"supports_code_execution": true,
|
|
"supports_file_search": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query",
|
|
"supports_service_tier": true
|
|
},
|
|
"deep-research-pro-preview-12-2025": {
|
|
"input_cost_per_image": 0.0011,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.134,
|
|
"output_cost_per_image_token": 0.00012,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gemini-2.5-flash-lite": {
|
|
"cache_read_input_token_cost": 1e-08,
|
|
"input_cost_per_audio_token": 3e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
},
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini-2.5-flash-lite-preview-09-2025": {
|
|
"cache_read_input_token_cost": 1e-08,
|
|
"input_cost_per_audio_token": 3e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"source": "https://developers.googleblog.com/en/continuing-to-bring-you-our-latest-models-with-an-improved-gemini-2-5-flash-and-flash-lite-release/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.5-flash-preview-09-2025": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://developers.googleblog.com/en/continuing-to-bring-you-our-latest-models-with-an-improved-gemini-2-5-flash-and-flash-lite-release/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-live-2.5-flash-preview-native-audio-09-2025": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "realtime",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/vertex_ai/live"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-live-2.5-flash-preview-native-audio-09-2025": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "realtime",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_token": 2e-06,
|
|
"rpm": 100000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 8000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.5-flash-lite-preview-06-17": {
|
|
"deprecation_date": "2025-11-18",
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_audio_token": 5e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.5-pro": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
},
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini-3-pro-preview": {
|
|
"deprecation_date": "2026-03-26",
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini-3.1-pro-preview": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"output_cost_per_image": 0.00012,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_url_context": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini-3.1-pro-preview-customtools": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"output_cost_per_image": 0.00012,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_url_context": true,
|
|
"supports_native_streaming": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"vertex_ai/gemini-3-pro-preview": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"vertex_ai/gemini-3-flash-preview": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 5e-07,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 9e-07,
|
|
"input_cost_per_audio_token_priority": 1.8e-06,
|
|
"output_cost_per_token_priority": 5.4e-06,
|
|
"cache_read_input_token_cost_priority": 9e-08,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"vertex_ai/gemini-3.1-pro-preview": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"output_cost_per_image": 0.00012,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_url_context": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"vertex_ai/gemini-3.1-pro-preview-customtools": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"output_cost_per_image": 0.00012,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_url_context": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini-2.5-pro-preview-tts": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-pro-preview",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-robotics-er-1.5-preview": {
|
|
"cache_read_input_token_cost": 0,
|
|
"input_cost_per_token": 3e-07,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_tokens": 65535,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-robotics-er-1-5-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"video",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true
|
|
},
|
|
"gemini/gemini-robotics-er-1.5-preview": {
|
|
"cache_read_input_token_cost": 0,
|
|
"input_cost_per_token": 3e-07,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_tokens": 65535,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-robotics-er-1-5-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"video",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"rpm": 10,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.5-computer-use-preview-10-2025": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/computer-use",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gemini-embedding-001": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models"
|
|
},
|
|
"gemini-embedding-2-preview": {
|
|
"input_cost_per_audio_per_second": 0.00016,
|
|
"input_cost_per_image": 0.00012,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_video_per_second": 0.00079,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"uses_embed_content": true
|
|
},
|
|
"gemini-embedding-2": {
|
|
"input_cost_per_audio_per_second": 0.00016,
|
|
"input_cost_per_image": 0.00012,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_video_per_second": 0.00079,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supports_multimodal": true,
|
|
"uses_embed_content": true
|
|
},
|
|
"vertex_ai/gemini-embedding-2-preview": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://ai.google.dev/gemini-api/docs/embeddings#multimodal",
|
|
"supports_multimodal": true,
|
|
"uses_embed_content": true
|
|
},
|
|
"vertex_ai/gemini-embedding-2": {
|
|
"input_cost_per_audio_per_second": 0.00016,
|
|
"input_cost_per_image": 0.00012,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_video_per_second": 0.00079,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://ai.google.dev/gemini-api/docs/embeddings#multimodal",
|
|
"supports_multimodal": true,
|
|
"uses_embed_content": true
|
|
},
|
|
"gemini-flash-experimental": {
|
|
"input_cost_per_character": 0,
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"uses_embed_content": true
|
|
},
|
|
"gemini/gemini-embedding-001": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/embeddings#model-versions",
|
|
"tpm": 10000000
|
|
},
|
|
"gemini/gemini-embedding-2-preview": {
|
|
"input_cost_per_audio_per_second": 0.00016,
|
|
"input_cost_per_image": 0.00012,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_video_per_second": 0.00079,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supports_multimodal": true,
|
|
"tpm": 10000000
|
|
},
|
|
"gemini/gemini-embedding-2": {
|
|
"input_cost_per_audio_per_second": 0.00016,
|
|
"input_cost_per_image": 0.00012,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_video_per_second": 0.00079,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supports_multimodal": true,
|
|
"tpm": 10000000
|
|
},
|
|
"gemini/gemini-1.5-flash": {
|
|
"deprecation_date": "2025-09-29",
|
|
"input_cost_per_token": 7.5e-08,
|
|
"input_cost_per_token_above_128k_tokens": 1.5e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/embeddings#multimodal",
|
|
"supports_multimodal": true,
|
|
"tpm": 10000000
|
|
},
|
|
"gemini/gemini-2.0-flash": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/pricing#2_0flash",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 10000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.0-flash-001": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/pricing#2_0flash",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 10000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.0-flash-lite": {
|
|
"cache_read_input_token_cost": 1.875e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7.5e-08,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 50,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"rpm": 4000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.0-flash-lite",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 4000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.5-flash": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 100000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 8000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
},
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini/gemini-2.5-flash-image": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"supports_reasoning": false,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"max_pdf_size_mb": 30,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.039,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 100000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-flash-image",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 8000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
},
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini/gemini-3-pro-image-preview": {
|
|
"input_cost_per_image": 0.0011,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.134,
|
|
"output_cost_per_image_token": 0.00012,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"rpm": 1000,
|
|
"tpm": 4000000,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query",
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini/gemini-3.1-flash-image-preview": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"input_cost_per_token_batches": 1.25e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.045,
|
|
"output_cost_per_image_token": 6e-05,
|
|
"output_cost_per_image_token_batches": 3e-05,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"output_cost_per_token_batches": 7.5e-07,
|
|
"rpm": 1000,
|
|
"tpm": 4000000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-3.1-flash-image-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini/deep-research-pro-preview-12-2025": {
|
|
"input_cost_per_image": 0.0011,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.134,
|
|
"output_cost_per_image_token": 0.00012,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"rpm": 1000,
|
|
"tpm": 4000000,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.5-flash-lite": {
|
|
"cache_read_input_token_cost": 1e-08,
|
|
"input_cost_per_audio_token": 3e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-lite",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
},
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini/gemini-2.5-flash-lite-preview-09-2025": {
|
|
"cache_read_input_token_cost": 1e-08,
|
|
"input_cost_per_audio_token": 3e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 15,
|
|
"source": "https://developers.googleblog.com/en/continuing-to-bring-you-our-latest-models-with-an-improved-gemini-2-5-flash-and-flash-lite-release/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.5-flash-preview-09-2025": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 15,
|
|
"source": "https://developers.googleblog.com/en/continuing-to-bring-you-our-latest-models-with-an-improved-gemini-2-5-flash-and-flash-lite-release/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-flash-latest": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 15,
|
|
"source": "https://developers.googleblog.com/en/continuing-to-bring-you-our-latest-models-with-an-improved-gemini-2-5-flash-and-flash-lite-release/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-flash-lite-latest": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_audio_token": 3e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 15,
|
|
"source": "https://developers.googleblog.com/en/continuing-to-bring-you-our-latest-models-with-an-improved-gemini-2-5-flash-and-flash-lite-release/",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.5-flash-lite-preview-06-17": {
|
|
"deprecation_date": "2025-11-18",
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_audio_token": 5e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-lite",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.5-flash-preview-tts": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"mode": "audio_speech",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"tpm": 4000000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemini-2.5-pro": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"input_cost_per_token_priority": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 2.5e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"output_cost_per_token_priority": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 1.5e-05,
|
|
"rpm": 2000,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supports_service_tier": true,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 800000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-2.5-computer-use-preview-10-2025": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"rpm": 2000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/computer-use",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tpm": 800000
|
|
},
|
|
"gemini/gemini-3-pro-preview": {
|
|
"deprecation_date": "2026-03-09",
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"rpm": 2000,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 800000,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini/gemini-3.1-flash-lite-preview": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_per_audio_token": 5e-08,
|
|
"input_cost_per_audio_token": 5e-07,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 1.5e-06,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"rpm": 15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": false,
|
|
"supports_code_execution": true,
|
|
"supports_file_search": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query",
|
|
"supports_service_tier": true
|
|
},
|
|
"gemini/gemini-3-flash-preview": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 3e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"rpm": 2000,
|
|
"source": "https://ai.google.dev/pricing/gemini-3",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"tpm": 800000,
|
|
"input_cost_per_token_priority": 9e-07,
|
|
"input_cost_per_audio_token_priority": 1.8e-06,
|
|
"output_cost_per_token_priority": 5.4e-06,
|
|
"cache_read_input_token_cost_priority": 9e-08,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini/gemini-3.1-pro-preview": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"rpm": 2000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-3.1-pro-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_url_context": true,
|
|
"supports_native_streaming": true,
|
|
"tpm": 800000,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini/gemini-3.1-pro-preview-customtools": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"rpm": 2000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-3.1-pro-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_url_context": true,
|
|
"supports_native_streaming": true,
|
|
"tpm": 800000,
|
|
"input_cost_per_token_priority": 3.6e-06,
|
|
"input_cost_per_token_above_200k_tokens_priority": 7.2e-06,
|
|
"output_cost_per_token_priority": 2.16e-05,
|
|
"output_cost_per_token_above_200k_tokens_priority": 3.24e-05,
|
|
"cache_read_input_token_cost_priority": 3.6e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens_priority": 7.2e-07,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini-3-flash-preview": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 3e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://ai.google.dev/pricing/gemini-3",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"input_cost_per_token_priority": 9e-07,
|
|
"input_cost_per_audio_token_priority": 1.8e-06,
|
|
"output_cost_per_token_priority": 5.4e-06,
|
|
"cache_read_input_token_cost_priority": 9e-08,
|
|
"supports_service_tier": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"gemini/gemini-2.5-pro-preview-tts": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"rpm": 10000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-pro-preview",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 10000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-exp-1114": {
|
|
"input_cost_per_token": 0,
|
|
"input_cost_per_token_above_128k_tokens": 0,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"metadata": {
|
|
"notes": "Rate limits not documented for gemini-exp-1114. Assuming same as gemini-1.5-pro.",
|
|
"supports_tool_choice": true
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"output_cost_per_token_above_128k_tokens": 0,
|
|
"rpm": 1000,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tpm": 4000000
|
|
},
|
|
"gemini/gemini-exp-1206": {
|
|
"input_cost_per_token": 0,
|
|
"input_cost_per_token_above_128k_tokens": 0,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 2097152,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"metadata": {
|
|
"notes": "Rate limits not documented for gemini-exp-1206. Assuming same as gemini-1.5-pro.",
|
|
"supports_tool_choice": true
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"output_cost_per_token_above_128k_tokens": 0,
|
|
"rpm": 1000,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tpm": 4000000
|
|
},
|
|
"gemini/gemini-gemma-2-27b-it": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.05e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemini-gemma-2-9b-it": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.05e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemma-3-27b-it": {
|
|
"input_cost_per_audio_per_second": 0,
|
|
"input_cost_per_audio_per_second_above_128k_tokens": 0,
|
|
"input_cost_per_character": 0,
|
|
"input_cost_per_character_above_128k_tokens": 0,
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_image_above_128k_tokens": 0,
|
|
"input_cost_per_token": 0,
|
|
"input_cost_per_token_above_128k_tokens": 0,
|
|
"input_cost_per_video_per_second": 0,
|
|
"input_cost_per_video_per_second_above_128k_tokens": 0,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_character": 0,
|
|
"output_cost_per_character_above_128k_tokens": 0,
|
|
"output_cost_per_token": 0,
|
|
"output_cost_per_token_above_128k_tokens": 0,
|
|
"source": "https://aistudio.google.com",
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gemini/imagen-3.0-fast-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.02,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"gemini/imagen-3.0-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"gemini/imagen-3.0-generate-002": {
|
|
"deprecation_date": "2025-11-10",
|
|
"litellm_provider": "gemini",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"gemini/imagen-4.0-fast-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.02,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"gemini/imagen-4.0-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"gemini/imagen-4.0-ultra-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"gemini/learnlm-1.5-pro-experimental": {
|
|
"input_cost_per_audio_per_second": 0,
|
|
"input_cost_per_audio_per_second_above_128k_tokens": 0,
|
|
"input_cost_per_character": 0,
|
|
"input_cost_per_character_above_128k_tokens": 0,
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_image_above_128k_tokens": 0,
|
|
"input_cost_per_token": 0,
|
|
"input_cost_per_token_above_128k_tokens": 0,
|
|
"input_cost_per_video_per_second": 0,
|
|
"input_cost_per_video_per_second_above_128k_tokens": 0,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 32767,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_character": 0,
|
|
"output_cost_per_character_above_128k_tokens": 0,
|
|
"output_cost_per_token": 0,
|
|
"output_cost_per_token_above_128k_tokens": 0,
|
|
"source": "https://aistudio.google.com",
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gemini/lyria-3-clip-preview": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_image": 0.04,
|
|
"output_cost_per_token": 0,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
],
|
|
"supports_audio_input": false,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": false,
|
|
"supports_vision": false,
|
|
"supports_web_search": false
|
|
},
|
|
"gemini/lyria-3-pro-preview": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
],
|
|
"supports_audio_input": false,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": false,
|
|
"supports_prompt_caching": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": false,
|
|
"supports_vision": false,
|
|
"supports_web_search": false
|
|
},
|
|
"gemini/veo-2.0-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.35,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"gemini/veo-3.1-fast-generate-preview": {
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"gemini/veo-3.1-generate-preview": {
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.4,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"gemini/veo-3.1-lite-generate-preview": {
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.05,
|
|
"output_cost_per_second_1080p": 0.08,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"gemini/veo-3.1-fast-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"gemini/veo-3.1-generate-001": {
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.4,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"github_copilot/claude-haiku-4.5": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/claude-opus-4.5": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"github_copilot/claude-opus-4.6-fast": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/claude-opus-41": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 80000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/claude-sonnet-4": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/claude-sonnet-4.5": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gemini-2.5-pro": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gemini-3-pro-preview": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-3.5-turbo": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true
|
|
},
|
|
"github_copilot/gpt-3.5-turbo-0613": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true
|
|
},
|
|
"github_copilot/gpt-4": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true
|
|
},
|
|
"github_copilot/gpt-4-0613": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true
|
|
},
|
|
"github_copilot/gpt-4-o-preview": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true
|
|
},
|
|
"github_copilot/gpt-4.1": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-4.1-2025-04-14": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-41-copilot": {
|
|
"litellm_provider": "github_copilot",
|
|
"mode": "completion"
|
|
},
|
|
"github_copilot/gpt-4o": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-4o-2024-05-13": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-4o-2024-08-06": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true
|
|
},
|
|
"github_copilot/gpt-4o-2024-11-20": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-4o-mini": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true
|
|
},
|
|
"github_copilot/gpt-4o-mini-2024-07-18": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true
|
|
},
|
|
"github_copilot/gpt-5": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-5-mini": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-5.1": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-5.1-codex-max": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-5.2": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/gpt-5.3-codex": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"github_copilot/text-embedding-3-small": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding"
|
|
},
|
|
"github_copilot/text-embedding-3-small-inference": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding"
|
|
},
|
|
"github_copilot/text-embedding-ada-002": {
|
|
"litellm_provider": "github_copilot",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding"
|
|
},
|
|
"chatgpt/gpt-5.4": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.4-pro": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.3-codex": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.3-codex-spark": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.3-instant": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.3-chat-latest": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.2-codex": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.2": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.1-codex-max": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"chatgpt/gpt-5.1-codex-mini": {
|
|
"litellm_provider": "chatgpt",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "responses",
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"gigachat/GigaChat-2-Lite": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gigachat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"gigachat/GigaChat-2-Max": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gigachat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true
|
|
},
|
|
"gigachat/GigaChat-2-Pro": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gigachat",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true
|
|
},
|
|
"gigachat/Embeddings": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gigachat",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024
|
|
},
|
|
"gigachat/Embeddings-2": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gigachat",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024
|
|
},
|
|
"gigachat/EmbeddingsGigaR": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gigachat",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 2560
|
|
},
|
|
"gmi/anthropic/claude-opus-4.5": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gmi/anthropic/claude-sonnet-4.5": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/anthropic/claude-sonnet-4": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/anthropic/claude-opus-4": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/openai/gpt-5.2": {
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"gmi/openai/gpt-5.1": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"gmi/openai/gpt-5": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 409600,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"gmi/openai/gpt-4o": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/openai/gpt-4o-mini": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/deepseek-ai/DeepSeek-V3.2": {
|
|
"input_cost_per_token": 2.8e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_function_calling": true
|
|
},
|
|
"gmi/deepseek-ai/DeepSeek-V3-0324": {
|
|
"input_cost_per_token": 2.8e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-07,
|
|
"supports_function_calling": true
|
|
},
|
|
"gmi/google/gemini-3-pro-preview": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/google/gemini-3-flash-preview": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/moonshotai/Kimi-K2-Thinking": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"gmi/MiniMaxAI/MiniMax-M2.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 196608,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"baseten/MiniMaxAI/MiniMax-M2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"baseten/nvidia/Nemotron-120B-A12B": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-07
|
|
},
|
|
"baseten/zai-org/GLM-5": {
|
|
"input_cost_per_token": 9.5e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.15e-06
|
|
},
|
|
"baseten/zai-org/GLM-4.7": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06
|
|
},
|
|
"baseten/zai-org/GLM-4.6": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06
|
|
},
|
|
"baseten/moonshotai/Kimi-K2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06
|
|
},
|
|
"baseten/moonshotai/Kimi-K2-Thinking": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06
|
|
},
|
|
"baseten/moonshotai/Kimi-K2-Instruct-0905": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06
|
|
},
|
|
"baseten/openai/gpt-oss-120b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07
|
|
},
|
|
"baseten/deepseek-ai/DeepSeek-V3.1": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06
|
|
},
|
|
"baseten/deepseek-ai/DeepSeek-V3-0324": {
|
|
"input_cost_per_token": 7.7e-07,
|
|
"litellm_provider": "baseten",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.7e-07
|
|
},
|
|
"gmi/Qwen/Qwen3-VL-235B-A22B-Instruct-FP8": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-06,
|
|
"supports_vision": true
|
|
},
|
|
"gmi/zai-org/GLM-4.7-FP8": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "gmi",
|
|
"max_input_tokens": 202752,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"google.gemma-3-12b-it": {
|
|
"input_cost_per_token": 9e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.9e-07,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true
|
|
},
|
|
"google.gemma-3-27b-it": {
|
|
"input_cost_per_token": 2.3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.8e-07,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true
|
|
},
|
|
"google.gemma-3-4b-it": {
|
|
"input_cost_per_token": 4e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-08,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true
|
|
},
|
|
"google_pse/search": {
|
|
"input_cost_per_query": 0.005,
|
|
"litellm_provider": "google_pse",
|
|
"mode": "search"
|
|
},
|
|
"global.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_creation_input_token_cost_above_1hr_above_200k_tokens": 1.2e-05,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"global.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"global.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"global.amazon.nova-2-lite-v1:0": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-3.5-turbo": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-3.5-turbo-0125": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-3.5-turbo-1106": {
|
|
"deprecation_date": "2026-09-28",
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-3.5-turbo-16k": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-3.5-turbo-instruct": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "text-completion-openai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"gpt-3.5-turbo-instruct-0914": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "text-completion-openai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4097,
|
|
"max_tokens": 4097,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"gpt-4": {
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4-0125-preview": {
|
|
"deprecation_date": "2026-03-26",
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4-0314": {
|
|
"deprecation_date": "2026-03-26",
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4-0613": {
|
|
"deprecation_date": "2025-06-06",
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4-1106-preview": {
|
|
"deprecation_date": "2026-03-26",
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4-turbo": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4-turbo-2024-04-09": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4-turbo-preview": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4.1": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"cache_read_input_token_cost_priority": 8.75e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_batches": 4e-06,
|
|
"output_cost_per_token_priority": 1.4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gpt-4.1-2025-04-14": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_batches": 4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gpt-4.1-mini": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"cache_read_input_token_cost_priority": 1.75e-07,
|
|
"input_cost_per_token": 4e-07,
|
|
"input_cost_per_token_batches": 2e-07,
|
|
"input_cost_per_token_priority": 7e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token_batches": 8e-07,
|
|
"output_cost_per_token_priority": 2.8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gpt-4.1-mini-2025-04-14": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 4e-07,
|
|
"input_cost_per_token_batches": 2e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"output_cost_per_token_batches": 8e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gpt-4.1-nano": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_priority": 5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"input_cost_per_token_batches": 5e-08,
|
|
"input_cost_per_token_priority": 2e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"output_cost_per_token_batches": 2e-07,
|
|
"output_cost_per_token_priority": 8e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4.1-nano-2025-04-14": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"input_cost_per_token_batches": 5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"output_cost_per_token_batches": 2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"cache_read_input_token_cost_priority": 2.125e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"input_cost_per_token_priority": 4.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_batches": 5e-06,
|
|
"output_cost_per_token_priority": 1.7e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-2024-05-13": {
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_token_batches": 2.5e-06,
|
|
"input_cost_per_token_priority": 8.75e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_batches": 7.5e-06,
|
|
"output_cost_per_token_priority": 2.625e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-2024-08-06": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_batches": 5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-2024-11-20": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_batches": 5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-audio-preview": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-audio-preview-2024-12-17": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-audio-preview-2025-06-03": {
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-audio": {
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses",
|
|
"/v1/realtime",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"gpt-audio-1.5": {
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"gpt-audio-2025-08-28": {
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses",
|
|
"/v1/realtime",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"gpt-audio-mini": {
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses",
|
|
"/v1/realtime",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"gpt-audio-mini-2025-10-06": {
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses",
|
|
"/v1/realtime",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"gpt-audio-mini-2025-12-15": {
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses",
|
|
"/v1/realtime",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": false,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"gpt-4o-mini": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"cache_read_input_token_cost_priority": 1.25e-07,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"input_cost_per_token_batches": 7.5e-08,
|
|
"input_cost_per_token_priority": 2.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"output_cost_per_token_batches": 3e-07,
|
|
"output_cost_per_token_priority": 1e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-mini-2024-07-18": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"input_cost_per_token_batches": 7.5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"output_cost_per_token_batches": 3e-07,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.03,
|
|
"search_context_size_low": 0.025,
|
|
"search_context_size_medium": 0.0275
|
|
},
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-mini-audio-preview": {
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-mini-audio-preview-2024-12-17": {
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-mini-realtime-preview": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-mini-realtime-preview-2024-12-17": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-mini-search-preview": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"input_cost_per_token_batches": 7.5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"output_cost_per_token_batches": 3e-07,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.03,
|
|
"search_context_size_low": 0.025,
|
|
"search_context_size_medium": 0.0275
|
|
},
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gpt-4o-mini-search-preview-2025-03-11": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"input_cost_per_token_batches": 7.5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"output_cost_per_token_batches": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-mini-transcribe": {
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 5e-06,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"gpt-4o-mini-tts": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_second": 0.00025,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
]
|
|
},
|
|
"gpt-4o-realtime-preview": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 2e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-realtime-preview-2024-12-17": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 2e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-realtime-preview-2025-06-03": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_audio_token": 4e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 8e-05,
|
|
"output_cost_per_token": 2e-05,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-4o-search-preview": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_batches": 5e-06,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.05,
|
|
"search_context_size_low": 0.03,
|
|
"search_context_size_medium": 0.035
|
|
},
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gpt-4o-search-preview-2025-03-11": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_batches": 5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-4o-transcribe": {
|
|
"input_cost_per_audio_token": 6e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"gpt-image-1.5": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 1e-05,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"output_cost_per_image_token": 3.2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"gpt-image-1.5-2025-12-16": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 1e-05,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"output_cost_per_image_token": 3.2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"gpt-image-2": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 1e-05,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"gpt-image-2-2026-04-21": {
|
|
"cache_read_input_image_token_cost": 2e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_token": 1e-05,
|
|
"input_cost_per_image_token": 8e-06,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"low/1024-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.009,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"low/1024-x-1536/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"low/1536-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"medium/1024-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.034,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"medium/1024-x-1536/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.05,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"medium/1536-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.05,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"high/1024-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.133,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"high/1024-x-1536/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.2,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"high/1536-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.2,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"standard/1024-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.009,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"standard/1024-x-1536/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"standard/1536-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"1024-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.009,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"1024-x-1536/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"1536-x-1024/gpt-image-1.5": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"low/1024-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.009,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"low/1024-x-1536/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"low/1536-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"medium/1024-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.034,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"medium/1024-x-1536/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.05,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"medium/1536-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.05,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"high/1024-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.133,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"high/1024-x-1536/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.2,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"high/1536-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.2,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"standard/1024-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.009,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"standard/1024-x-1536/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"standard/1536-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"1024-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.009,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"1024-x-1536/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"1536-x-1024/gpt-image-1.5-2025-12-16": {
|
|
"input_cost_per_image": 0.013,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
],
|
|
"supports_vision": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"gpt-5": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_flex": 6.25e-08,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_flex": 6.25e-07,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_flex": 5e-06,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.1": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.1-2025-11-13": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.1-chat-latest": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.2": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.2-2025-12-11": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.2-chat-latest": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.3-chat-latest": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.2-pro": {
|
|
"input_cost_per_token": 2.1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.000168,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.2-pro-2025-12-11": {
|
|
"input_cost_per_token": 2.1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.000168,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.5": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 1e-06,
|
|
"cache_read_input_token_cost_flex": 2.5e-07,
|
|
"cache_read_input_token_cost_priority": 1e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 1e-05,
|
|
"input_cost_per_token_flex": 2.5e-06,
|
|
"input_cost_per_token_batches": 2.5e-06,
|
|
"input_cost_per_token_priority": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"output_cost_per_token_above_272k_tokens": 4.5e-05,
|
|
"output_cost_per_token_flex": 1.5e-05,
|
|
"output_cost_per_token_batches": 1.5e-05,
|
|
"output_cost_per_token_priority": 6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"gpt-5.5-2026-04-23": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 1e-06,
|
|
"cache_read_input_token_cost_flex": 2.5e-07,
|
|
"cache_read_input_token_cost_priority": 1e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 1e-05,
|
|
"input_cost_per_token_flex": 2.5e-06,
|
|
"input_cost_per_token_batches": 2.5e-06,
|
|
"input_cost_per_token_priority": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"output_cost_per_token_above_272k_tokens": 4.5e-05,
|
|
"output_cost_per_token_flex": 1.5e-05,
|
|
"output_cost_per_token_batches": 1.5e-05,
|
|
"output_cost_per_token_priority": 6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"gpt-5.5-pro": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"input_cost_per_token_flex": 1.5e-05,
|
|
"input_cost_per_token_batches": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"output_cost_per_token_flex": 9e-05,
|
|
"output_cost_per_token_batches": 9e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false,
|
|
"supports_low_reasoning_effort": false
|
|
},
|
|
"gpt-5.5-pro-2026-04-23": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"input_cost_per_token_flex": 1.5e-05,
|
|
"input_cost_per_token_batches": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"output_cost_per_token_flex": 9e-05,
|
|
"output_cost_per_token_batches": 9e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false,
|
|
"supports_low_reasoning_effort": false
|
|
},
|
|
"gpt-5.4": {
|
|
"cache_read_input_token_cost": 2.5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 5e-07,
|
|
"cache_read_input_token_cost_flex": 1.3e-07,
|
|
"cache_read_input_token_cost_priority": 5e-07,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 5e-06,
|
|
"input_cost_per_token_flex": 1.25e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"input_cost_per_token_priority": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_272k_tokens": 2.25e-05,
|
|
"output_cost_per_token_flex": 7.5e-06,
|
|
"output_cost_per_token_batches": 7.5e-06,
|
|
"output_cost_per_token_priority": 3e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.4-2026-03-05": {
|
|
"cache_read_input_token_cost": 2.5e-07,
|
|
"cache_read_input_token_cost_above_272k_tokens": 5e-07,
|
|
"cache_read_input_token_cost_flex": 1.3e-07,
|
|
"cache_read_input_token_cost_priority": 5e-07,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"input_cost_per_token_above_272k_tokens": 5e-06,
|
|
"input_cost_per_token_flex": 1.25e-06,
|
|
"input_cost_per_token_batches": 1.25e-06,
|
|
"input_cost_per_token_priority": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_272k_tokens": 2.25e-05,
|
|
"output_cost_per_token_flex": 7.5e-06,
|
|
"output_cost_per_token_batches": 7.5e-06,
|
|
"output_cost_per_token_priority": 3e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true
|
|
},
|
|
"gpt-5.4-pro": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"input_cost_per_token_flex": 1.5e-05,
|
|
"input_cost_per_token_batches": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"output_cost_per_token_flex": 9e-05,
|
|
"output_cost_per_token_batches": 9e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.4-pro-2026-03-05": {
|
|
"cache_read_input_token_cost": 3e-06,
|
|
"cache_read_input_token_cost_above_272k_tokens": 6e-06,
|
|
"input_cost_per_token": 3e-05,
|
|
"input_cost_per_token_above_272k_tokens": 6e-05,
|
|
"input_cost_per_token_flex": 1.5e-05,
|
|
"input_cost_per_token_batches": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 1050000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00018,
|
|
"output_cost_per_token_above_272k_tokens": 0.00027,
|
|
"output_cost_per_token_flex": 9e-05,
|
|
"output_cost_per_token_batches": 9e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.4-mini": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"cache_read_input_token_cost_flex": 3.75e-08,
|
|
"cache_read_input_token_cost_batches": 3.75e-08,
|
|
"cache_read_input_token_cost_priority": 1.5e-07,
|
|
"input_cost_per_token": 7.5e-07,
|
|
"input_cost_per_token_flex": 3.75e-07,
|
|
"input_cost_per_token_batches": 3.75e-07,
|
|
"input_cost_per_token_priority": 1.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.5e-06,
|
|
"output_cost_per_token_flex": 2.25e-06,
|
|
"output_cost_per_token_batches": 2.25e-06,
|
|
"output_cost_per_token_priority": 9e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"gpt-5.4-mini-2026-03-17": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"cache_read_input_token_cost_flex": 3.75e-08,
|
|
"cache_read_input_token_cost_batches": 3.75e-08,
|
|
"cache_read_input_token_cost_priority": 1.5e-07,
|
|
"input_cost_per_token": 7.5e-07,
|
|
"input_cost_per_token_flex": 3.75e-07,
|
|
"input_cost_per_token_batches": 3.75e-07,
|
|
"input_cost_per_token_priority": 1.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.5e-06,
|
|
"output_cost_per_token_flex": 2.25e-06,
|
|
"output_cost_per_token_batches": 2.25e-06,
|
|
"output_cost_per_token_priority": 9e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"gpt-5.4-nano": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"cache_read_input_token_cost_flex": 1e-08,
|
|
"cache_read_input_token_cost_batches": 1e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_flex": 1e-07,
|
|
"input_cost_per_token_batches": 1e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"output_cost_per_token_flex": 6.25e-07,
|
|
"output_cost_per_token_batches": 6.25e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"gpt-5.4-nano-2026-03-17": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"cache_read_input_token_cost_flex": 1e-08,
|
|
"cache_read_input_token_cost_batches": 1e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_flex": 1e-07,
|
|
"input_cost_per_token_batches": 1e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"output_cost_per_token_flex": 6.25e-07,
|
|
"output_cost_per_token_batches": 6.25e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": false
|
|
},
|
|
"gpt-5-pro": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"input_cost_per_token_batches": 7.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 272000,
|
|
"max_tokens": 272000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00012,
|
|
"output_cost_per_token_batches": 6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": false,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-pro-2025-10-06": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"input_cost_per_token_batches": 7.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 272000,
|
|
"max_tokens": 272000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.00012,
|
|
"output_cost_per_token_batches": 6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": false,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-2025-08-07": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_flex": 6.25e-08,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_flex": 6.25e-07,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_flex": 5e-06,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-chat": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-chat-latest": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": false,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-codex": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.1-codex": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_priority": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_priority": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.1-codex-max": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.1-codex-mini": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_priority": 4.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"input_cost_per_token_priority": 4.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 2e-06,
|
|
"output_cost_per_token_priority": 3.6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.2-codex": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5.3-codex": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"cache_read_input_token_cost_priority": 3.5e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"output_cost_per_token_priority": 2.8e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-mini": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_flex": 1.25e-08,
|
|
"cache_read_input_token_cost_priority": 4.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"input_cost_per_token_flex": 1.25e-07,
|
|
"input_cost_per_token_priority": 4.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"output_cost_per_token_flex": 1e-06,
|
|
"output_cost_per_token_priority": 3.6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-mini-2025-08-07": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_flex": 1.25e-08,
|
|
"cache_read_input_token_cost_priority": 4.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"input_cost_per_token_flex": 1.25e-07,
|
|
"input_cost_per_token_priority": 4.5e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"output_cost_per_token_flex": 1e-06,
|
|
"output_cost_per_token_priority": 3.6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-nano": {
|
|
"cache_read_input_token_cost": 5e-09,
|
|
"cache_read_input_token_cost_flex": 2.5e-09,
|
|
"input_cost_per_token": 5e-08,
|
|
"input_cost_per_token_flex": 2.5e-08,
|
|
"input_cost_per_token_priority": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"output_cost_per_token_flex": 2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-nano-2025-08-07": {
|
|
"cache_read_input_token_cost": 5e-09,
|
|
"cache_read_input_token_cost_flex": 2.5e-09,
|
|
"input_cost_per_token": 5e-08,
|
|
"input_cost_per_token_flex": 2.5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"output_cost_per_token_flex": 2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-image-1": {
|
|
"cache_read_input_image_token_cost": 2.5e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_image_token": 1e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"gpt-image-1-mini": {
|
|
"cache_read_input_image_token_cost": 2.5e-07,
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_image_token": 2.5e-06,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"gpt-realtime": {
|
|
"cache_creation_input_audio_token_cost": 4e-07,
|
|
"cache_read_input_token_cost": 4e-07,
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_image": 5e-06,
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-realtime-1.5": {
|
|
"cache_creation_input_audio_token_cost": 4e-07,
|
|
"cache_read_input_token_cost": 4e-07,
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_image": 5e-06,
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-realtime-mini": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_audio_token_cost": 3e-07,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-realtime-2025-08-28": {
|
|
"cache_creation_input_audio_token_cost": 4e-07,
|
|
"cache_read_input_token_cost": 4e-07,
|
|
"input_cost_per_audio_token": 3.2e-05,
|
|
"input_cost_per_image": 5e-06,
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 6.4e-05,
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gradient_ai/alibaba-qwen3-32b": {
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 40960,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 40960
|
|
},
|
|
"gradient_ai/anthropic-claude-3-opus": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 1024
|
|
},
|
|
"gradient_ai/anthropic-claude-3.5-haiku": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 1024
|
|
},
|
|
"gradient_ai/anthropic-claude-3.5-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 1024
|
|
},
|
|
"gradient_ai/anthropic-claude-3.7-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 1024
|
|
},
|
|
"gradient_ai/deepseek-r1-distill-llama-70b": {
|
|
"input_cost_per_token": 9.9e-07,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.9e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8000
|
|
},
|
|
"gradient_ai/llama3-8b-instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 512,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 512
|
|
},
|
|
"gradient_ai/llama3.3-70b-instruct": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.5e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048
|
|
},
|
|
"gradient_ai/mistral-nemo-instruct-2407": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 512,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 512
|
|
},
|
|
"gradient_ai/openai-gpt-4o": {
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384
|
|
},
|
|
"gradient_ai/openai-gpt-4o-mini": {
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384
|
|
},
|
|
"gradient_ai/openai-o3": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000
|
|
},
|
|
"gradient_ai/openai-o3-mini": {
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "gradient_ai",
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supports_tool_choice": false,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000
|
|
},
|
|
"lemonade/Qwen3-Coder-30B-A3B-Instruct-GGUF": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "lemonade",
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lemonade/gpt-oss-20b-mxfp4-GGUF": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "lemonade",
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lemonade/gpt-oss-120b-mxfp-GGUF": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "lemonade",
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lemonade/Gemma-3-4b-it-GGUF": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "lemonade",
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lemonade/Qwen3-4B-Instruct-2507-GGUF": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "lemonade",
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"amazon-nova/nova-micro-v1": {
|
|
"input_cost_per_token": 3.5e-08,
|
|
"litellm_provider": "amazon_nova",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"amazon-nova/nova-lite-v1": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "amazon_nova",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"amazon-nova/nova-premier-v1": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "amazon_nova",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"amazon-nova/nova-pro-v1": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "amazon_nova",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"groq/llama-3.1-8b-instant": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-08,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true
|
|
},
|
|
"groq/llama-3.3-70b-versatile": {
|
|
"input_cost_per_token": 5.9e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true
|
|
},
|
|
"groq/gemma-7b-it": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-08,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true
|
|
},
|
|
"groq/meta-llama/llama-guard-4-12b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07
|
|
},
|
|
"groq/meta-llama/llama-4-maverick-17b-128e-instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"groq/meta-llama/llama-4-scout-17b-16e-instruct": {
|
|
"input_cost_per_token": 1.1e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"groq/moonshotai/kimi-k2-instruct-0905": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"groq/openai/gpt-oss-120b": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32766,
|
|
"max_tokens": 32766,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"groq/openai/gpt-oss-20b": {
|
|
"cache_read_input_token_cost": 3.75e-08,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"groq/openai/gpt-oss-safeguard-20b": {
|
|
"cache_read_input_token_cost": 3.7e-08,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"groq/playai-tts": {
|
|
"input_cost_per_character": 5e-05,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 10000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "audio_speech"
|
|
},
|
|
"groq/qwen/qwen3-32b": {
|
|
"input_cost_per_token": 2.9e-07,
|
|
"litellm_provider": "groq",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true
|
|
},
|
|
"groq/whisper-large-v3": {
|
|
"input_cost_per_second": 3.083e-05,
|
|
"litellm_provider": "groq",
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0
|
|
},
|
|
"groq/whisper-large-v3-turbo": {
|
|
"input_cost_per_second": 1.111e-05,
|
|
"litellm_provider": "groq",
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0
|
|
},
|
|
"hd/1024-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 7.629e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"hd/1024-x-1792/dall-e-3": {
|
|
"input_cost_per_pixel": 6.539e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"hd/1792-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 6.539e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"heroku/claude-3-5-haiku": {
|
|
"litellm_provider": "heroku",
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"heroku/claude-3-5-sonnet-latest": {
|
|
"litellm_provider": "heroku",
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"heroku/claude-3-7-sonnet": {
|
|
"litellm_provider": "heroku",
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"heroku/claude-4-sonnet": {
|
|
"litellm_provider": "heroku",
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"high/1024-x-1024/gpt-image-1": {
|
|
"input_cost_per_image": 0.167,
|
|
"input_cost_per_pixel": 1.59263611e-07,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"high/1024-x-1536/gpt-image-1": {
|
|
"input_cost_per_image": 0.25,
|
|
"input_cost_per_pixel": 1.58945719e-07,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"high/1536-x-1024/gpt-image-1": {
|
|
"input_cost_per_image": 0.25,
|
|
"input_cost_per_pixel": 1.58945719e-07,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"hyperbolic/NousResearch/Hermes-3-Llama-3.1-70B": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/Qwen/QwQ-32B": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/Qwen/Qwen2.5-72B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/Qwen/Qwen2.5-Coder-32B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/Qwen/Qwen3-235B-A22B": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/deepseek-ai/DeepSeek-R1": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/deepseek-ai/DeepSeek-R1-0528": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/deepseek-ai/DeepSeek-V3": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/deepseek-ai/DeepSeek-V3-0324": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/meta-llama/Llama-3.2-3B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/meta-llama/Llama-3.3-70B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/meta-llama/Meta-Llama-3-70B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/meta-llama/Meta-Llama-3.1-405B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/meta-llama/Meta-Llama-3.1-70B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/meta-llama/Meta-Llama-3.1-8B-Instruct": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"hyperbolic/moonshotai/Kimi-K2-Instruct": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "hyperbolic",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"j2-light": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 3e-06
|
|
},
|
|
"j2-mid": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1e-05
|
|
},
|
|
"j2-ultra": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.5e-05
|
|
},
|
|
"jamba-1.5": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-1.5-large": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-1.5-large@001": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-1.5-mini": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-1.5-mini@001": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-large-1.6": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-large-1.7": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-mini-1.6": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jamba-mini-1.7": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "ai21",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"jina-reranker-v2-base-multilingual": {
|
|
"input_cost_per_token": 1.8e-08,
|
|
"litellm_provider": "jina_ai",
|
|
"max_document_chunks_per_query": 2048,
|
|
"max_input_tokens": 1024,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 1.8e-08
|
|
},
|
|
"jp.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6.6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.475e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 8.25e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6.6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"jp.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.375e-06,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"crusoe/deepseek-ai/DeepSeek-R1-0528": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-06,
|
|
"supports_function_calling": false,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"crusoe/deepseek-ai/DeepSeek-V3-0324": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"crusoe/google/gemma-3-12b-it": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"crusoe/meta-llama/Llama-3.3-70B-Instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"crusoe/moonshotai/Kimi-K2-Thinking": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_function_calling": false,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"crusoe/openai/gpt-oss-120b": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"crusoe/Qwen/Qwen3-235B-A22B-Instruct-2507": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "crusoe",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/deepseek-llama3.3-70b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/deepseek-r1-0528": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/deepseek-r1-671b": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/deepseek-v3-0324": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/hermes3-405b": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/hermes3-70b": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/hermes3-8b": {
|
|
"input_cost_per_token": 2.5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-08,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/lfm-40b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/lfm-7b": {
|
|
"input_cost_per_token": 2.5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-08,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama-4-maverick-17b-128e-instruct-fp8": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama-4-scout-17b-16e-instruct": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama3.1-405b-instruct-fp8": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama3.1-70b-instruct-fp8": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama3.1-8b-instruct": {
|
|
"input_cost_per_token": 2.5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-08,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama3.1-nemotron-70b-instruct-fp8": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama3.2-11b-vision-instruct": {
|
|
"input_cost_per_token": 1.5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-08,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"lambda_ai/llama3.2-3b-instruct": {
|
|
"input_cost_per_token": 1.5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-08,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/llama3.3-70b-instruct-fp8": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/qwen25-coder-32b-instruct": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"lambda_ai/qwen3-32b-fp8": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "lambda_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"low/1024-x-1024/gpt-image-1": {
|
|
"input_cost_per_image": 0.011,
|
|
"input_cost_per_pixel": 1.0490417e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"low/1024-x-1536/gpt-image-1": {
|
|
"input_cost_per_image": 0.016,
|
|
"input_cost_per_pixel": 1.0172526e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"low/1536-x-1024/gpt-image-1": {
|
|
"input_cost_per_image": 0.016,
|
|
"input_cost_per_pixel": 1.0172526e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"max-x-max/50-steps/stability.stable-diffusion-xl-v0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.036
|
|
},
|
|
"max-x-max/max-steps/stability.stable-diffusion-xl-v0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.072
|
|
},
|
|
"medium/1024-x-1024/gpt-image-1": {
|
|
"input_cost_per_image": 0.042,
|
|
"input_cost_per_pixel": 4.0054321e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"medium/1024-x-1536/gpt-image-1": {
|
|
"input_cost_per_image": 0.063,
|
|
"input_cost_per_pixel": 4.0054321e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"medium/1536-x-1024/gpt-image-1": {
|
|
"input_cost_per_image": 0.063,
|
|
"input_cost_per_pixel": 4.0054321e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"low/1024-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_image": 0.005,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"low/1024-x-1536/gpt-image-1-mini": {
|
|
"input_cost_per_image": 0.006,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"low/1536-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_image": 0.006,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"medium/1024-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_image": 0.011,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"medium/1024-x-1536/gpt-image-1-mini": {
|
|
"input_cost_per_image": 0.015,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"medium/1536-x-1024/gpt-image-1-mini": {
|
|
"input_cost_per_image": 0.015,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"medlm-large": {
|
|
"input_cost_per_character": 5e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_character": 1.5e-05,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models",
|
|
"supports_tool_choice": true
|
|
},
|
|
"medlm-medium": {
|
|
"input_cost_per_character": 5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_character": 1e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models",
|
|
"supports_tool_choice": true
|
|
},
|
|
"meta.llama2-13b-chat-v1": {
|
|
"input_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06
|
|
},
|
|
"meta.llama2-70b-chat-v1": {
|
|
"input_cost_per_token": 1.95e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.56e-06
|
|
},
|
|
"meta.llama3-1-405b-instruct-v1:0": {
|
|
"input_cost_per_token": 5.32e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama3-1-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 9.9e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama3-1-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama3-2-11b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"meta.llama3-2-1b-instruct-v1:0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama3-2-3b-instruct-v1:0": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama3-2-90b-instruct-v1:0": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"meta.llama3-3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.65e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-06
|
|
},
|
|
"meta.llama3-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07
|
|
},
|
|
"meta.llama4-maverick-17b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.4e-07,
|
|
"input_cost_per_token_batches": 1.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.7e-07,
|
|
"output_cost_per_token_batches": 4.85e-07,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta.llama4-scout-17b-instruct-v1:0": {
|
|
"input_cost_per_token": 1.7e-07,
|
|
"input_cost_per_token_batches": 8.5e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-07,
|
|
"output_cost_per_token_batches": 3.3e-07,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"meta_llama/Llama-3.3-70B-Instruct": {
|
|
"litellm_provider": "meta_llama",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4028,
|
|
"max_tokens": 4028,
|
|
"mode": "chat",
|
|
"source": "https://llama.developer.meta.com/docs/models",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"meta_llama/Llama-3.3-8B-Instruct": {
|
|
"litellm_provider": "meta_llama",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4028,
|
|
"max_tokens": 4028,
|
|
"mode": "chat",
|
|
"source": "https://llama.developer.meta.com/docs/models",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"meta_llama/Llama-4-Maverick-17B-128E-Instruct-FP8": {
|
|
"litellm_provider": "meta_llama",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 4028,
|
|
"max_tokens": 4028,
|
|
"mode": "chat",
|
|
"source": "https://llama.developer.meta.com/docs/models",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"meta_llama/Llama-4-Scout-17B-16E-Instruct-FP8": {
|
|
"litellm_provider": "meta_llama",
|
|
"max_input_tokens": 10000000,
|
|
"max_output_tokens": 4028,
|
|
"max_tokens": 4028,
|
|
"mode": "chat",
|
|
"source": "https://llama.developer.meta.com/docs/models",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"minimax.minimax-m2": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"minimax.minimax-m2.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 196000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"minimax/speech-02-hd": {
|
|
"input_cost_per_character": 0.0001,
|
|
"litellm_provider": "minimax",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"minimax/speech-02-turbo": {
|
|
"input_cost_per_character": 6e-05,
|
|
"litellm_provider": "minimax",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"minimax/speech-2.6-hd": {
|
|
"input_cost_per_character": 0.0001,
|
|
"litellm_provider": "minimax",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"minimax/speech-2.6-turbo": {
|
|
"input_cost_per_character": 6e-05,
|
|
"litellm_provider": "minimax",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"minimax/MiniMax-M2.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07,
|
|
"litellm_provider": "minimax",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"minimax/MiniMax-M2.1-lightning": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07,
|
|
"litellm_provider": "minimax",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"minimax/MiniMax-M2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07,
|
|
"litellm_provider": "minimax",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"minimax/MiniMax-M2.5-lightning": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07,
|
|
"litellm_provider": "minimax",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"minimax/MiniMax-M2": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"cache_creation_input_token_cost": 3.75e-07,
|
|
"litellm_provider": "minimax",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192
|
|
},
|
|
"mistral.devstral-2-123b": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"mistral.magistral-small-2509": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"mistral.ministral-3-14b-instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"mistral.ministral-3-3b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"mistral.ministral-3-8b-instruct": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"mistral.mistral-7b-instruct-v0:2": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral.mistral-large-2402-v1:0": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"mistral.mistral-large-2407-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral.mistral-large-3-675b-instruct": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"mistral.mistral-small-2402-v1:0": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true
|
|
},
|
|
"mistral.mixtral-8x7b-instruct-v0:1": {
|
|
"input_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral.voxtral-mini-3b-2507": {
|
|
"input_cost_per_token": 4e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-08,
|
|
"supports_audio_input": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"mistral.voxtral-small-24b-2507": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_audio_input": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"mistral/codestral-2405": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/codestral-2508": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"source": "https://mistral.ai/news/codestral-25-08",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/codestral-latest": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/codestral-mamba-latest": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"source": "https://mistral.ai/technology/",
|
|
"supports_assistant_prefill": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-medium-2507": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://mistral.ai/news/devstral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-small-2505": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://mistral.ai/news/devstral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-small-2507": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://mistral.ai/news/devstral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-small-latest": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://docs.mistral.ai/models/devstral-small-2-25-12",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/labs-devstral-small-2512": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://docs.mistral.ai/models/devstral-small-2-25-12",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-latest": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://mistral.ai/news/devstral-2-vibe-cli",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-medium-latest": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://mistral.ai/news/devstral-2-vibe-cli",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/devstral-2512": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://mistral.ai/news/devstral-2-vibe-cli",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/magistral-medium-2506": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://mistral.ai/news/magistral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/magistral-medium-2509": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://mistral.ai/news/magistral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/magistral-medium-1-2-2509": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://mistral.ai/news/magistral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-ocr-latest": {
|
|
"litellm_provider": "mistral",
|
|
"ocr_cost_per_page": 0.001,
|
|
"annotation_cost_per_page": 0.003,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://mistral.ai/pricing#api-pricing"
|
|
},
|
|
"mistral/mistral-ocr-2505-completion": {
|
|
"litellm_provider": "mistral",
|
|
"ocr_cost_per_page": 0.001,
|
|
"annotation_cost_per_page": 0.003,
|
|
"mode": "ocr",
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://mistral.ai/pricing#api-pricing"
|
|
},
|
|
"mistral/magistral-medium-latest": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://mistral.ai/news/magistral",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/magistral-small-2506": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://mistral.ai/pricing#api-pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/magistral-small-latest": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://mistral.ai/pricing#api-pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/magistral-small-1-2-2509": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 40000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://mistral.ai/pricing#api-pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-embed": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding"
|
|
},
|
|
"mistral/codestral-embed": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding"
|
|
},
|
|
"mistral/codestral-embed-2505": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding"
|
|
},
|
|
"mistral/mistral-large-2402": {
|
|
"input_cost_per_token": 4e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-large-2407": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-large-2411": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-large-latest": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://docs.mistral.ai/models/mistral-large-3-25-12",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-large-3": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://docs.mistral.ai/models/mistral-large-3-25-12",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-large-2512": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://docs.mistral.ai/models/mistral-large-3-25-12",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-medium": {
|
|
"input_cost_per_token": 2.7e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.1e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-medium-2312": {
|
|
"input_cost_per_token": 2.7e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.1e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-medium-2505": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-medium-latest": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-medium-3-1-2508": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://mistral.ai/news/mistral-medium-3",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-small": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/mistral-small-latest": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-07,
|
|
"source": "https://mistral.ai/pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-small-3-2-2506": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-07,
|
|
"source": "https://mistral.ai/pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/ministral-3-3b-2512": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://mistral.ai/pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/ministral-3-8b-2512": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://mistral.ai/pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/ministral-3-14b-2512": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://mistral.ai/pricing",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/mistral-tiny": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/open-codestral-mamba": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"source": "https://mistral.ai/technology/",
|
|
"supports_assistant_prefill": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/open-mistral-7b": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/open-mistral-nemo": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://mistral.ai/technology/",
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/open-mistral-nemo-2407": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://mistral.ai/technology/",
|
|
"supports_assistant_prefill": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/open-mixtral-8x22b": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 65336,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/open-mixtral-8x7b": {
|
|
"input_cost_per_token": 7e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"mistral/pixtral-12b-2409": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/pixtral-large-2411": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"mistral/pixtral-large-latest": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "mistral",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot.kimi-k2-thinking": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"moonshotai.kimi-k2.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"moonshot/kimi-k2-0711-preview": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing/chat#generation-model-kimi-k2",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"moonshot/kimi-k2-0905-preview": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing/chat#generation-model-kimi-k2",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"moonshot/kimi-k2-turbo-preview": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 1.15e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing/chat#generation-model-kimi-k2",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"moonshot/kimi-k2.5": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://platform.moonshot.ai/docs/guide/kimi-k2-5-quickstart",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-k2.6": {
|
|
"cache_read_input_token_cost": 1.6e-07,
|
|
"input_cost_per_token": 9.5e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://platform.kimi.ai/docs/pricing/chat-k26",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-latest": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-latest-128k": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-latest-32k": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-latest-8k": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-thinking-preview": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing/chat#generation-model-kimi-k2",
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/kimi-k2-thinking": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing/chat#generation-model-kimi-k2",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"moonshot/kimi-k2-thinking-turbo": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 1.15e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing/chat#generation-model-kimi-k2",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"moonshot/moonshot-v1-128k": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"moonshot/moonshot-v1-128k-0430": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"moonshot/moonshot-v1-128k-vision-preview": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/moonshot-v1-32k": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"moonshot/moonshot-v1-32k-0430": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"moonshot/moonshot-v1-32k-vision-preview": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/moonshot-v1-8k": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"moonshot/moonshot-v1-8k-0430": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"moonshot/moonshot-v1-8k-vision-preview": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"moonshot/moonshot-v1-auto": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "moonshot",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://platform.moonshot.ai/docs/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"morph/morph-v3-fast": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "morph",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": false
|
|
},
|
|
"morph/morph-v3-large": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "morph",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.9e-06,
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": false
|
|
},
|
|
"multimodalembedding": {
|
|
"input_cost_per_character": 2e-07,
|
|
"input_cost_per_image": 0.0001,
|
|
"input_cost_per_token": 8e-07,
|
|
"input_cost_per_video_per_second": 0.0005,
|
|
"input_cost_per_video_per_second_above_15s_interval": 0.002,
|
|
"input_cost_per_video_per_second_above_8s_interval": 0.001,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 768,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models",
|
|
"supported_endpoints": [
|
|
"/v1/embeddings"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"video"
|
|
]
|
|
},
|
|
"multimodalembedding@001": {
|
|
"input_cost_per_character": 2e-07,
|
|
"input_cost_per_image": 0.0001,
|
|
"input_cost_per_token": 8e-07,
|
|
"input_cost_per_video_per_second": 0.0005,
|
|
"input_cost_per_video_per_second_above_15s_interval": 0.002,
|
|
"input_cost_per_video_per_second_above_8s_interval": 0.001,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 768,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models",
|
|
"supported_endpoints": [
|
|
"/v1/embeddings"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"video"
|
|
]
|
|
},
|
|
"nscale/Qwen/QwQ-32B": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "nscale",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/Qwen/Qwen2.5-Coder-32B-Instruct": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "nscale",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/Qwen/Qwen2.5-Coder-3B-Instruct": {
|
|
"input_cost_per_token": 1e-08,
|
|
"litellm_provider": "nscale",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-08,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/Qwen/Qwen2.5-Coder-7B-Instruct": {
|
|
"input_cost_per_token": 1e-08,
|
|
"litellm_provider": "nscale",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-08,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/black-forest-labs/FLUX.1-schnell": {
|
|
"input_cost_per_pixel": 1.3e-09,
|
|
"litellm_provider": "nscale",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#image-models",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"nscale/deepseek-ai/DeepSeek-R1-Distill-Llama-70B": {
|
|
"input_cost_per_token": 3.75e-07,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.75/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.75e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/deepseek-ai/DeepSeek-R1-Distill-Llama-8B": {
|
|
"input_cost_per_token": 2.5e-08,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.05/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-08,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B": {
|
|
"input_cost_per_token": 9e-08,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.18/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-08,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/deepseek-ai/DeepSeek-R1-Distill-Qwen-14B": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.14/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-08,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/deepseek-ai/DeepSeek-R1-Distill-Qwen-32B": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.30/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/deepseek-ai/DeepSeek-R1-Distill-Qwen-7B": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.40/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/meta-llama/Llama-3.1-8B-Instruct": {
|
|
"input_cost_per_token": 3e-08,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.06/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-08,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/meta-llama/Llama-3.3-70B-Instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $0.40/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/meta-llama/Llama-4-Scout-17B-16E-Instruct": {
|
|
"input_cost_per_token": 9e-08,
|
|
"litellm_provider": "nscale",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.9e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/mistralai/mixtral-8x22b-instruct-v0.1": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "nscale",
|
|
"metadata": {
|
|
"notes": "Pricing listed as $1.20/1M tokens total. Assumed 50/50 split for input/output."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#chat-models"
|
|
},
|
|
"nscale/stabilityai/stable-diffusion-xl-base-1.0": {
|
|
"input_cost_per_pixel": 3e-09,
|
|
"litellm_provider": "nscale",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0,
|
|
"source": "https://docs.nscale.com/docs/inference/serverless-models/current#image-models",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"nebius/deepseek-ai/DeepSeek-R1": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 8e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/deepseek-ai/DeepSeek-R1-0528": {
|
|
"max_tokens": 164000,
|
|
"max_input_tokens": 164000,
|
|
"max_output_tokens": 164000,
|
|
"input_cost_per_token": 8e-07,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/deepseek-ai/DeepSeek-R1-Distill-Llama-70B": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/deepseek-ai/DeepSeek-V3": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/deepseek-ai/DeepSeek-V3-0324": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/google/gemma-3-27b-it": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/meta-llama/Llama-3.3-70B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/meta-llama/Llama-Guard-3-8B": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 6e-08,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/meta-llama/Meta-Llama-3.1-8B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 6e-08,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/meta-llama/Meta-Llama-3.1-70B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/meta-llama/Meta-Llama-3.1-405B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/mistralai/Mistral-Nemo-Instruct-2407": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/NousResearch/Hermes-3-Llama-3.1-405B": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/nvidia/Llama-3.1-Nemotron-Ultra-253B-v1": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 1.8e-06,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/nvidia/Llama-3.3-Nemotron-Super-49B-v1": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen3-235B-A22B": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen3-32B": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen3-30B-A3B": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen3-14B": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 2.4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen3-4B": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 2.4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/QwQ-32B": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen2.5-72B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen2.5-32B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen2.5-Coder-7B": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-08,
|
|
"output_cost_per_token": 3e-08,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen2.5-VL-72B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen2-VL-72B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/Qwen/Qwen2-VL-7B-Instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 6e-08,
|
|
"litellm_provider": "nebius",
|
|
"mode": "chat",
|
|
"supports_vision": true,
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/BAAI/bge-en-icl": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"input_cost_per_token": 1e-08,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "nebius",
|
|
"mode": "embedding",
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/BAAI/bge-multilingual-gemma2": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"input_cost_per_token": 1e-08,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "nebius",
|
|
"mode": "embedding",
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nebius/intfloat/e5-mistral-7b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"input_cost_per_token": 1e-08,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "nebius",
|
|
"mode": "embedding",
|
|
"source": "https://nebius.com/prices-ai-studio"
|
|
},
|
|
"nvidia.nemotron-nano-12b-v2": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true
|
|
},
|
|
"nvidia.nemotron-nano-9b-v2": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.3e-07,
|
|
"supports_system_messages": true
|
|
},
|
|
"nvidia.nemotron-nano-3-30b": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_native_structured_output": true
|
|
},
|
|
"nvidia.nemotron-super-3-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.5e-07,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"o1": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"o1-2024-12-17": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"o1-pro": {
|
|
"input_cost_per_token": 0.00015,
|
|
"input_cost_per_token_batches": 7.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.0006,
|
|
"output_cost_per_token_batches": 0.0003,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": false,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"o1-pro-2025-03-19": {
|
|
"input_cost_per_token": 0.00015,
|
|
"input_cost_per_token_batches": 7.5e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 0.0006,
|
|
"output_cost_per_token_batches": 0.0003,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": false,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"o3": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"cache_read_input_token_cost_flex": 2.5e-07,
|
|
"cache_read_input_token_cost_priority": 8.75e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_flex": 1e-06,
|
|
"input_cost_per_token_priority": 3.5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_flex": 4e-06,
|
|
"output_cost_per_token_priority": 1.4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o3-2025-04-16": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o3-deep-research": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_token": 1e-05,
|
|
"input_cost_per_token_batches": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 4e-05,
|
|
"output_cost_per_token_batches": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o3-deep-research-2025-06-26": {
|
|
"cache_read_input_token_cost": 2.5e-06,
|
|
"input_cost_per_token": 1e-05,
|
|
"input_cost_per_token_batches": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 4e-05,
|
|
"output_cost_per_token_batches": 2e-05,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o3-mini": {
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"o3-mini-2025-01-31": {
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"o3-pro": {
|
|
"input_cost_per_token": 2e-05,
|
|
"input_cost_per_token_batches": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 8e-05,
|
|
"output_cost_per_token_batches": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o3-pro-2025-06-10": {
|
|
"input_cost_per_token": 2e-05,
|
|
"input_cost_per_token_batches": 1e-05,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 8e-05,
|
|
"output_cost_per_token_batches": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/responses",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o4-mini": {
|
|
"cache_read_input_token_cost": 2.75e-07,
|
|
"cache_read_input_token_cost_flex": 1.375e-07,
|
|
"cache_read_input_token_cost_priority": 5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"input_cost_per_token_flex": 5.5e-07,
|
|
"input_cost_per_token_priority": 2e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"output_cost_per_token_flex": 2.2e-06,
|
|
"output_cost_per_token_priority": 8e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o4-mini-2025-04-16": {
|
|
"cache_read_input_token_cost": 2.75e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_service_tier": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o4-mini-deep-research": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_batches": 4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"o4-mini-deep-research-2025-06-26": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "responses",
|
|
"output_cost_per_token": 8e-06,
|
|
"output_cost_per_token_batches": 4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/batch",
|
|
"/v1/responses"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_native_streaming": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"oci/meta.llama-3.1-405b-instruct": {
|
|
"input_cost_per_token": 1.068e-05,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.068e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/meta.llama-3.2-90b-vision-instruct": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_vision": true
|
|
},
|
|
"oci/meta.llama-3.3-70b-instruct": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/meta.llama-4-maverick-17b-128e-instruct-fp8": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/meta.llama-4-scout-17b-16e-instruct": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 192000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-3": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-3-fast": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-3-mini": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-3-mini-fast": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-4": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-latest": {
|
|
"input_cost_per_token": 1.56e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.56e-06,
|
|
"source": "https://www.oracle.com/cloud/ai/generative-ai/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-a-03-2025": {
|
|
"input_cost_per_token": 1.56e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.56e-06,
|
|
"source": "https://www.oracle.com/cloud/ai/generative-ai/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-plus-latest": {
|
|
"input_cost_per_token": 1.56e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.56e-06,
|
|
"source": "https://www.oracle.com/cloud/ai/generative-ai/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-a-reasoning-08-2025": {
|
|
"input_cost_per_token": 1.56e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.56e-06,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-a-vision-07-2025": {
|
|
"input_cost_per_token": 1.56e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.56e-06,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_vision": true
|
|
},
|
|
"oci/cohere.command-a-translate-08-2025": {
|
|
"input_cost_per_token": 9e-08,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-08,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-r-08-2024": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/cohere.command-r-plus-08-2024": {
|
|
"input_cost_per_token": 1.56e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.56e-06,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/meta.llama-3.2-11b-vision-instruct": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false,
|
|
"supports_vision": true
|
|
},
|
|
"oci/meta.llama-3.1-70b-instruct": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/meta.llama-3.3-70b-instruct-fp8-dynamic": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-4-fast": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-4.1-fast": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-4.20": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-4.20-multi-agent": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/xai.grok-code-fast-1": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": false
|
|
},
|
|
"oci/google.gemini-2.5-pro": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"oci/google.gemini-2.5-flash": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"oci/google.gemini-2.5-flash-lite": {
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"oci/cohere.embed-english-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing"
|
|
},
|
|
"oci/cohere.embed-english-light-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 384,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing"
|
|
},
|
|
"oci/cohere.embed-multilingual-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing"
|
|
},
|
|
"oci/cohere.embed-multilingual-light-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 384,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing"
|
|
},
|
|
"oci/cohere.embed-english-image-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"oci/cohere.embed-english-light-image-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 384,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"oci/cohere.embed-multilingual-light-image-v3.0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 512,
|
|
"max_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 384,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"oci/cohere.embed-v4.0": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "oci",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536,
|
|
"source": "https://www.oracle.com/artificial-intelligence/generative-ai/generative-ai-service/pricing",
|
|
"supports_embedding_image_input": true
|
|
},
|
|
"ollama/codegeex4": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": false
|
|
},
|
|
"ollama/codegemma": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/codellama": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/deepseek-coder-v2-base": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/deepseek-coder-v2-instruct": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/deepseek-coder-v2-lite-base": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/deepseek-coder-v2-lite-instruct": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/deepseek-v3.1:671b-cloud": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/gpt-oss:120b-cloud": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/gpt-oss:20b-cloud": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/internlm2_5-20b-chat": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/llama2": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama2-uncensored": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama2:13b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama2:70b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama2:7b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama3": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama3.1": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/llama3:70b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/llama3:8b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/mistral": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/mistral-7B-Instruct-v0.1": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/mistral-7B-Instruct-v0.2": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/mistral-large-instruct-2407": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/mixtral-8x22B-Instruct-v0.1": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/mixtral-8x7B-Instruct-v0.1": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/orca-mini": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"ollama/qwen3-coder:480b-cloud": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"supports_function_calling": true
|
|
},
|
|
"ollama/vicuna": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "ollama",
|
|
"max_input_tokens": 2048,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"omni-moderation-2024-09-26": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "moderation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"omni-moderation-latest": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "moderation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"openai.gpt-oss-120b-1:0": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openai.gpt-oss-20b-1:0": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openai.gpt-oss-safeguard-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_system_messages": true
|
|
},
|
|
"openai.gpt-oss-safeguard-20b": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_system_messages": true
|
|
},
|
|
"openrouter/anthropic/claude-3-haiku": {
|
|
"input_cost_per_image": 0.0004,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096
|
|
},
|
|
"openrouter/anthropic/claude-3.5-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-3.7-sonnet": {
|
|
"input_cost_per_image": 0.0048,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-opus-4": {
|
|
"input_cost_per_image": 0.0048,
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-opus-4.1": {
|
|
"input_cost_per_image": 0.0048,
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_creation_input_token_cost_above_1hr": 3e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-sonnet-4": {
|
|
"input_cost_per_image": 0.0048,
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-sonnet-4.6": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"source": "https://openrouter.ai/anthropic/claude-sonnet-4.6",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"openrouter/anthropic/claude-opus-4.5": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-opus-4.6": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"openrouter/anthropic/claude-sonnet-4.5": {
|
|
"input_cost_per_image": 0.0048,
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 1000000,
|
|
"max_tokens": 1000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"openrouter/anthropic/claude-haiku-4.5": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"max_tokens": 200000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346
|
|
},
|
|
"openrouter/anthropic/claude-opus-4.7": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346
|
|
},
|
|
"openrouter/bytedance/ui-tars-1.5-7b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://openrouter.ai/api/v1/models/bytedance/ui-tars-1.5-7b",
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-chat": {
|
|
"input_cost_per_token": 1.4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-chat-v3-0324": {
|
|
"input_cost_per_token": 1.4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-chat-v3.1": {
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_cache_hit": 2e-08,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-v3.2": {
|
|
"input_cost_per_token": 2.8e-07,
|
|
"input_cost_per_token_cache_hit": 2.8e-08,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-v3.2-exp": {
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_cache_hit": 2e-08,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": false,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-r1": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"input_cost_per_token_cache_hit": 1.4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 65336,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.19e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/deepseek/deepseek-r1-0528": {
|
|
"input_cost_per_token": 5e-07,
|
|
"input_cost_per_token_cache_hit": 1.4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 65336,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.15e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/google/gemini-2.0-flash-001": {
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/google/gemini-2.5-flash": {
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/google/gemini-2.5-pro": {
|
|
"input_cost_per_audio_token": 7e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 8192,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/google/gemini-3-pro-preview": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"openrouter/google/gemini-3-flash-preview": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 3e-06,
|
|
"output_cost_per_token": 3e-06,
|
|
"rpm": 2000,
|
|
"source": "https://ai.google.dev/pricing/gemini-3",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 800000
|
|
},
|
|
"openrouter/google/gemini-3.1-flash-lite-preview": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_per_audio_token": 5e-08,
|
|
"input_cost_per_audio_token": 5e-07,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 1.5e-06,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"rpm": 2000,
|
|
"source": "https://ai.google.dev/pricing/gemini-3",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": false,
|
|
"supports_code_execution": true,
|
|
"supports_file_search": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 800000
|
|
},
|
|
"openrouter/google/gemini-3.1-pro-preview": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 4e-07,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_above_200k_tokens": 4e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.8e-05,
|
|
"source": "https://openrouter.ai/google/gemini-3.1-pro-preview",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/gryphe/mythomax-l2-13b": {
|
|
"input_cost_per_token": 1.875e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.875e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/mancer/weaver": {
|
|
"input_cost_per_token": 5.625e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 2000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.625e-06,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 2000
|
|
},
|
|
"openrouter/meta-llama/llama-3-70b-instruct": {
|
|
"input_cost_per_token": 5.9e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.9e-07,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8000
|
|
},
|
|
"openrouter/minimax/minimax-m2": {
|
|
"input_cost_per_token": 2.55e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 204800,
|
|
"max_tokens": 204800,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.02e-06,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/mistralai/devstral-2512": {
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"openrouter/mistralai/ministral-3b-2512": {
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/mistralai/ministral-8b-2512": {
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/mistralai/ministral-14b-2512": {
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/mistralai/mistral-large-2512": {
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/mistralai/mistral-7b-instruct": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.3e-07,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8191
|
|
},
|
|
"openrouter/mistralai/mistral-large": {
|
|
"input_cost_per_token": 8e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-05,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191
|
|
},
|
|
"openrouter/mistralai/mistral-small-3.1-24b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072
|
|
},
|
|
"openrouter/mistralai/mistral-small-3.2-24b-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000
|
|
},
|
|
"openrouter/mistralai/mixtral-8x22b-instruct": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.5e-07,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536
|
|
},
|
|
"openrouter/moonshotai/kimi-k2.5": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://openrouter.ai/moonshotai/kimi-k2.5",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-3.5-turbo": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096
|
|
},
|
|
"openrouter/openai/gpt-3.5-turbo-16k": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096
|
|
},
|
|
"openrouter/openai/gpt-4": {
|
|
"input_cost_per_token": 3e-05,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 8191,
|
|
"max_output_tokens": 4096
|
|
},
|
|
"openrouter/openai/gpt-4.1": {
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-4.1-mini": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-4.1-nano": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-4o": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-4o-2024-05-13": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-5-chat": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-5-codex": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-5.2-codex": {
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-5": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-5-mini": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-5-nano": {
|
|
"cache_read_input_token_cost": 5e-09,
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-5.1-codex-max": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 400000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"source": "https://openrouter.ai/openai/gpt-5.1-codex-max",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-5.2": {
|
|
"input_cost_per_image": 0,
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-5.2-chat": {
|
|
"input_cost_per_image": 0,
|
|
"cache_read_input_token_cost": 1.75e-07,
|
|
"input_cost_per_token": 1.75e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-05,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-5.2-pro": {
|
|
"input_cost_per_image": 0,
|
|
"input_cost_per_token": 2.1e-05,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.000168,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/gpt-oss-120b": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"source": "https://openrouter.ai/openai/gpt-oss-120b",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/gpt-oss-20b": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://openrouter.ai/openai/gpt-oss-20b",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/openai/o1": {
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openai/o3-mini": {
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"openrouter/openai/o3-mini-high": {
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"openrouter/qwen/qwen-2.5-coder-32b-instruct": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 33792,
|
|
"max_output_tokens": 33792,
|
|
"max_tokens": 33792,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/qwen/qwen-vl-plus": {
|
|
"input_cost_per_token": 2.1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.3e-07,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/qwen/qwen3-coder": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262100,
|
|
"max_output_tokens": 262100,
|
|
"max_tokens": 262100,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.5e-07,
|
|
"source": "https://openrouter.ai/qwen/qwen3-coder",
|
|
"supports_tool_choice": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"openrouter/qwen/qwen3-coder-plus": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 997952,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://openrouter.ai/qwen/qwen3-coder-plus",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/qwen/qwen3-235b-a22b-2507": {
|
|
"input_cost_per_token": 7.1e-08,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://openrouter.ai/qwen/qwen3-235b-a22b-2507",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/qwen/qwen3-235b-a22b-thinking-2507": {
|
|
"input_cost_per_token": 1.1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://openrouter.ai/qwen/qwen3-235b-a22b-thinking-2507",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/qwen/qwen3.5-35b-a3b": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://openrouter.ai/qwen/qwen3.5-35b-a3b",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/qwen/qwen3.5-27b": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-06,
|
|
"source": "https://openrouter.ai/qwen/qwen3.5-27b",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/qwen/qwen3.5-122b-a10b": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://openrouter.ai/qwen/qwen3.5-122b-a10b",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/qwen/qwen3.5-flash-02-23": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"source": "https://openrouter.ai/qwen/qwen3.5-flash-02-23",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/qwen/qwen3.5-plus-02-15": {
|
|
"input_cost_per_token": 4e-07,
|
|
"input_cost_per_token_above_256k_tokens": 5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-06,
|
|
"output_cost_per_token_above_256k_tokens": 3e-06,
|
|
"source": "https://openrouter.ai/qwen/qwen3.5-plus-02-15",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/qwen/qwen3.5-397b-a17b": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"source": "https://openrouter.ai/qwen/qwen3.5-397b-a17b",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/switchpoint/router": {
|
|
"input_cost_per_token": 8.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.4e-06,
|
|
"source": "https://openrouter.ai/switchpoint/router",
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/undi95/remm-slerp-l2-13b": {
|
|
"input_cost_per_token": 1.875e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.875e-06,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 6144,
|
|
"max_output_tokens": 4096
|
|
},
|
|
"openrouter/x-ai/grok-4": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://openrouter.ai/x-ai/grok-4",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"openrouter/z-ai/glm-4.6": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 202800,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.75e-06,
|
|
"source": "https://openrouter.ai/z-ai/glm-4.6",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/z-ai/glm-4.6:exacto": {
|
|
"input_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 202800,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.9e-06,
|
|
"source": "https://openrouter.ai/z-ai/glm-4.6:exacto",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/xiaomi/mimo-v2-flash": {
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 2.9e-07,
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 0.0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": false,
|
|
"supports_prompt_caching": false
|
|
},
|
|
"openrouter/z-ai/glm-4.7": {
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 0.0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 202752,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_assistant_prefill": true
|
|
},
|
|
"openrouter/z-ai/glm-4.7-flash": {
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 4e-07,
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 0.0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": true,
|
|
"supports_prompt_caching": false
|
|
},
|
|
"openrouter/z-ai/glm-5": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 202752,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.56e-06,
|
|
"source": "https://openrouter.ai/z-ai/glm-5",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"openrouter/minimax/minimax-m2.1": {
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 0.0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 204000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_computer_use": false
|
|
},
|
|
"openrouter/minimax/minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.1e-06,
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 196608,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"source": "https://openrouter.ai/minimax/minimax-m2.5",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_vision": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_computer_use": false
|
|
},
|
|
"openrouter/openrouter/auto": {
|
|
"input_cost_per_token": 0,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true,
|
|
"supports_audio_input": true,
|
|
"supports_video_input": true
|
|
},
|
|
"openrouter/openrouter/free": {
|
|
"input_cost_per_token": 0,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 200000,
|
|
"max_tokens": 200000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"openrouter/openrouter/bodybuilder": {
|
|
"input_cost_per_token": 0,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "openrouter",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat"
|
|
},
|
|
"ovhcloud/DeepSeek-R1-Distill-Llama-70B": {
|
|
"input_cost_per_token": 6.7e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.7e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/deepseek-r1-distill-llama-70b",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ovhcloud/Llama-3.1-8B-Instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/llama-3-1-8b-instruct",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ovhcloud/Meta-Llama-3_1-70B-Instruct": {
|
|
"input_cost_per_token": 6.7e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.7e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/meta-llama-3-1-70b-instruct",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": false
|
|
},
|
|
"ovhcloud/Meta-Llama-3_3-70B-Instruct": {
|
|
"input_cost_per_token": 6.7e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.7e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/meta-llama-3-3-70b-instruct",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ovhcloud/Mistral-7B-Instruct-v0.3": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 127000,
|
|
"max_output_tokens": 127000,
|
|
"max_tokens": 127000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/mistral-7b-instruct-v0-3",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ovhcloud/Mistral-Nemo-Instruct-2407": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 118000,
|
|
"max_output_tokens": 118000,
|
|
"max_tokens": 118000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.3e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/mistral-nemo-instruct-2407",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ovhcloud/Mistral-Small-3.2-24B-Instruct-2506": {
|
|
"input_cost_per_token": 9e-08,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/mistral-small-3-2-24b-instruct-2506",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"ovhcloud/Mixtral-8x7B-Instruct-v0.1": {
|
|
"input_cost_per_token": 6.3e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.3e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/mixtral-8x7b-instruct-v0-1",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"ovhcloud/Qwen2.5-Coder-32B-Instruct": {
|
|
"input_cost_per_token": 8.7e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.7e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/qwen2-5-coder-32b-instruct",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"ovhcloud/Qwen2.5-VL-72B-Instruct": {
|
|
"input_cost_per_token": 9.1e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.1e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/qwen2-5-vl-72b-instruct",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"ovhcloud/Qwen3-32B": {
|
|
"input_cost_per_token": 8e-08,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.3e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/qwen3-32b",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"ovhcloud/gpt-oss-120b": {
|
|
"input_cost_per_token": 8e-08,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/gpt-oss-120b",
|
|
"supports_function_calling": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"ovhcloud/gpt-oss-20b": {
|
|
"input_cost_per_token": 4e-08,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131000,
|
|
"max_tokens": 131000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/gpt-oss-20b",
|
|
"supports_function_calling": false,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"ovhcloud/llava-v1.6-mistral-7b-hf": {
|
|
"input_cost_per_token": 2.9e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.9e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/llava-next-mistral-7b",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"ovhcloud/mamba-codestral-7B-v0.1": {
|
|
"input_cost_per_token": 1.9e-07,
|
|
"litellm_provider": "ovhcloud",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.9e-07,
|
|
"source": "https://endpoints.ai.cloud.ovh.net/models/mamba-codestral-7b-v0-1",
|
|
"supports_function_calling": false,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"palm/chat-bison": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "palm",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"palm/chat-bison-001": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "palm",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"palm/text-bison": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "palm",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.25e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"palm/text-bison-001": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "palm",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.25e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"palm/text-bison-safety-off": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "palm",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.25e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"palm/text-bison-safety-recitation-off": {
|
|
"input_cost_per_token": 1.25e-07,
|
|
"litellm_provider": "palm",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 1.25e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"parallel_ai/search": {
|
|
"input_cost_per_query": 0.004,
|
|
"litellm_provider": "parallel_ai",
|
|
"mode": "search"
|
|
},
|
|
"parallel_ai/search-pro": {
|
|
"input_cost_per_query": 0.009,
|
|
"litellm_provider": "parallel_ai",
|
|
"mode": "search"
|
|
},
|
|
"perplexity/codellama-34b-instruct": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-06
|
|
},
|
|
"perplexity/codellama-70b-instruct": {
|
|
"input_cost_per_token": 7e-07,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-06
|
|
},
|
|
"perplexity/llama-2-70b-chat": {
|
|
"input_cost_per_token": 7e-07,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-06
|
|
},
|
|
"perplexity/llama-3.1-70b-instruct": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06
|
|
},
|
|
"perplexity/llama-3.1-8b-instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07
|
|
},
|
|
"perplexity/mistral-7b-instruct": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07
|
|
},
|
|
"perplexity/mixtral-8x7b-instruct": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07
|
|
},
|
|
"perplexity/pplx-70b-chat": {
|
|
"input_cost_per_token": 7e-07,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-06
|
|
},
|
|
"perplexity/pplx-70b-online": {
|
|
"input_cost_per_request": 0.005,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-06
|
|
},
|
|
"perplexity/pplx-7b-chat": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07
|
|
},
|
|
"perplexity/pplx-7b-online": {
|
|
"input_cost_per_request": 0.005,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07
|
|
},
|
|
"perplexity/sonar": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.012,
|
|
"search_context_size_low": 0.005,
|
|
"search_context_size_medium": 0.008
|
|
},
|
|
"supports_web_search": true
|
|
},
|
|
"perplexity/sonar-deep-research": {
|
|
"citation_cost_per_token": 2e-06,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 3e-06,
|
|
"output_cost_per_token": 8e-06,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.005,
|
|
"search_context_size_low": 0.005,
|
|
"search_context_size_medium": 0.005
|
|
},
|
|
"supports_reasoning": true,
|
|
"supports_web_search": true
|
|
},
|
|
"perplexity/sonar-medium-chat": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-06
|
|
},
|
|
"perplexity/sonar-medium-online": {
|
|
"input_cost_per_request": 0.005,
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 12000,
|
|
"max_output_tokens": 12000,
|
|
"max_tokens": 12000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-06
|
|
},
|
|
"perplexity/sonar-pro": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.014,
|
|
"search_context_size_low": 0.006,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_web_search": true
|
|
},
|
|
"perplexity/sonar-reasoning": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.014,
|
|
"search_context_size_low": 0.005,
|
|
"search_context_size_medium": 0.008
|
|
},
|
|
"supports_reasoning": true,
|
|
"supports_web_search": true
|
|
},
|
|
"perplexity/sonar-reasoning-pro": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.014,
|
|
"search_context_size_low": 0.006,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_reasoning": true,
|
|
"supports_web_search": true
|
|
},
|
|
"perplexity/sonar-small-chat": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07
|
|
},
|
|
"perplexity/sonar-small-online": {
|
|
"input_cost_per_request": 0.005,
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 12000,
|
|
"max_output_tokens": 12000,
|
|
"max_tokens": 12000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07
|
|
},
|
|
"publicai/swiss-ai/apertus-8b-instruct": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": false,
|
|
"supports_tool_choice": false
|
|
},
|
|
"publicai/swiss-ai/apertus-70b-instruct": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": false,
|
|
"supports_tool_choice": false
|
|
},
|
|
"publicai/aisingapore/Gemma-SEA-LION-v4-27B-IT": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"publicai/BSC-LT/salamandra-7b-instruct-tools-16k": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"publicai/BSC-LT/ALIA-40b-instruct_Q8_0": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"publicai/allenai/Olmo-3-7B-Instruct": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"perplexity/preset/fast-search": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_preset": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/preset/pro-search": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_preset": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/preset/deep-research": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_preset": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/preset/advanced-deep-research": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_preset": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/openai/gpt-5.2": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": true,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/openai/gpt-5.1": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/openai/gpt-5-mini": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/anthropic/claude-opus-4-6": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/anthropic/claude-opus-4-7": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/anthropic/claude-opus-4-5": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"perplexity/anthropic/claude-sonnet-4-5": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/anthropic/claude-haiku-4-5": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/google/gemini-3-pro-preview": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/google/gemini-3-flash-preview": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/google/gemini-2.5-pro": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/google/gemini-2.5-flash": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/xai/grok-4-1-fast-non-reasoning": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/perplexity/sonar": {
|
|
"litellm_provider": "perplexity",
|
|
"mode": "responses",
|
|
"supports_web_search": true,
|
|
"supports_reasoning": false,
|
|
"supports_function_calling": true
|
|
},
|
|
"perplexity/pplx-embed-v1-0.6b": {
|
|
"input_cost_per_token": 4e-09,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1024,
|
|
"source": "https://docs.perplexity.ai/docs/embeddings/quickstart"
|
|
},
|
|
"perplexity/pplx-embed-v1-4b": {
|
|
"input_cost_per_token": 3e-08,
|
|
"litellm_provider": "perplexity",
|
|
"max_input_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 2560,
|
|
"source": "https://docs.perplexity.ai/docs/embeddings/quickstart"
|
|
},
|
|
"publicai/aisingapore/Qwen-SEA-LION-v4-32B-IT": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"publicai/allenai/Olmo-3-7B-Think": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"publicai/allenai/Olmo-3-32B-Think": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "publicai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://platform.publicai.co/docs",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"qwen.qwen3-coder-480b-a35b-v1:0": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 262000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"qwen.qwen3-235b-a22b-2507-v1:0": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"qwen.qwen3-coder-30b-a3b-v1:0": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"qwen.qwen3-32b-v1:0": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"qwen.qwen3-next-80b-a3b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"qwen.qwen3-vl-235b-a22b": {
|
|
"input_cost_per_token": 5.3e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.66e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_vision": true,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"qwen.qwen3-coder-next": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"recraft/recraftv2": {
|
|
"litellm_provider": "recraft",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.022,
|
|
"source": "https://www.recraft.ai/docs#pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"recraft/recraftv3": {
|
|
"litellm_provider": "recraft",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://www.recraft.ai/docs#pricing",
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"replicate/meta/llama-2-13b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-2-13b-chat": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-2-70b": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-2-70b-chat": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-2-7b": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-2-7b-chat": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-3-70b": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-3-70b-instruct": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-3-8b": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 8086,
|
|
"max_output_tokens": 8086,
|
|
"max_tokens": 8086,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/meta/llama-3-8b-instruct": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 8086,
|
|
"max_output_tokens": 8086,
|
|
"max_tokens": 8086,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/mistralai/mistral-7b-instruct-v0.2": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/mistralai/mistral-7b-v0.1": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/mistralai/mixtral-8x7b-instruct-v0.1": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "replicate",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"replicate/openai/gpt-5": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"output_cost_per_token": 1e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicateopenai/gpt-oss-20b": {
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 3.6e-07,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/anthropic/claude-4.5-haiku": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 5e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_prompt_caching": true
|
|
},
|
|
"replicate/ibm-granite/granite-3.3-8b-instruct": {
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/openai/gpt-4o": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"output_cost_per_token": 1e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true
|
|
},
|
|
"replicate/openai/o4-mini": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 4e-06,
|
|
"output_cost_per_reasoning_token": 4e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/openai/o1-mini": {
|
|
"input_cost_per_token": 1.1e-06,
|
|
"output_cost_per_token": 4.4e-06,
|
|
"output_cost_per_reasoning_token": 4.4e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/openai/o1": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token": 6e-05,
|
|
"output_cost_per_reasoning_token": 6e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/openai/gpt-4o-mini": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicate/qwen/qwen3-235b-a22b-instruct-2507": {
|
|
"input_cost_per_token": 2.64e-07,
|
|
"output_cost_per_token": 1.06e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/anthropic/claude-4-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_prompt_caching": true
|
|
},
|
|
"replicate/deepseek-ai/deepseek-v3": {
|
|
"input_cost_per_token": 1.45e-06,
|
|
"output_cost_per_token": 1.45e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/anthropic/claude-3.7-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_prompt_caching": true
|
|
},
|
|
"replicate/anthropic/claude-3.5-haiku": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 5e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_prompt_caching": true
|
|
},
|
|
"replicate/anthropic/claude-3.5-sonnet": {
|
|
"input_cost_per_token": 3.75e-06,
|
|
"output_cost_per_token": 1.875e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_prompt_caching": true
|
|
},
|
|
"replicate/google/gemini-3-pro": {
|
|
"input_cost_per_token": 2e-06,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicate/anthropic/claude-4.5-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true,
|
|
"supports_prompt_caching": true
|
|
},
|
|
"replicate/openai/gpt-4.1": {
|
|
"input_cost_per_token": 2e-06,
|
|
"output_cost_per_token": 8e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicate/openai/gpt-4.1-nano": {
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/openai/gpt-4.1-mini": {
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 1.6e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicate/openai/gpt-5-nano": {
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 4e-07,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/openai/gpt-5-mini": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 2e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicate/google/gemini-2.5-flash": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"replicate/openai/gpt-oss-120b": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"output_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/deepseek-ai/deepseek-v3.1": {
|
|
"input_cost_per_token": 6.72e-07,
|
|
"output_cost_per_token": 2.016e-06,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/xai/grok-4": {
|
|
"input_cost_per_token": 7.2e-06,
|
|
"output_cost_per_token": 3.6e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"replicate/deepseek-ai/deepseek-r1": {
|
|
"input_cost_per_token": 3.75e-06,
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_reasoning_token": 1e-05,
|
|
"litellm_provider": "replicate",
|
|
"mode": "chat",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"rerank-english-v2.0": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"rerank-english-v3.0": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"rerank-multilingual-v2.0": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"rerank-multilingual-v3.0": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"rerank-v3.5": {
|
|
"input_cost_per_query": 0.002,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "cohere",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_query_tokens": 2048,
|
|
"max_tokens": 4096,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"nvidia_nim/nvidia/nv-rerankqa-mistral-4b-v3": {
|
|
"input_cost_per_query": 0.0,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "nvidia_nim",
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"nvidia_nim/nvidia/llama-3_2-nv-rerankqa-1b-v2": {
|
|
"input_cost_per_query": 0.0,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "nvidia_nim",
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"nvidia_nim/ranking/nvidia/llama-3.2-nv-rerankqa-1b-v2": {
|
|
"input_cost_per_query": 0.0,
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "nvidia_nim",
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sagemaker/meta-textgeneration-llama-2-13b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "sagemaker",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sagemaker/meta-textgeneration-llama-2-13b-f": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "sagemaker",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sagemaker/meta-textgeneration-llama-2-70b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "sagemaker",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sagemaker/meta-textgeneration-llama-2-70b-b-f": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "sagemaker",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sagemaker/meta-textgeneration-llama-2-7b": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "sagemaker",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sagemaker/meta-textgeneration-llama-2-7b-f": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "sagemaker",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"sambanova/DeepSeek-R1": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-06,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/DeepSeek-R1-Distill-Llama-70B": {
|
|
"input_cost_per_token": 7e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-06,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/DeepSeek-V3-0324": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.5e-06,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sambanova/Llama-4-Maverick-17B-128E-Instruct": {
|
|
"input_cost_per_token": 6.3e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"metadata": {
|
|
"notes": "For vision models, images are converted to 6432 input tokens and are billed at that amount"
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-06,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"sambanova/Llama-4-Scout-17B-16E-Instruct": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"metadata": {
|
|
"notes": "For vision models, images are converted to 6432 input tokens and are billed at that amount"
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sambanova/Meta-Llama-3.1-405B-Instruct": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sambanova/Meta-Llama-3.1-8B-Instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sambanova/Meta-Llama-3.2-1B-Instruct": {
|
|
"input_cost_per_token": 4e-08,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-08,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/Meta-Llama-3.2-3B-Instruct": {
|
|
"input_cost_per_token": 8e-08,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-07,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/Meta-Llama-3.3-70B-Instruct": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sambanova/Meta-Llama-Guard-3-8B": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/QwQ-32B": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/Qwen2-Audio-7B-Instruct": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0001,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_audio_input": true
|
|
},
|
|
"sambanova/Qwen3-32B": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "sambanova",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sambanova/DeepSeek-V3.1": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 4.5e-06,
|
|
"litellm_provider": "sambanova",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"sambanova/gpt-oss-120b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 4.5e-06,
|
|
"litellm_provider": "sambanova",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_reasoning": true,
|
|
"source": "https://cloud.sambanova.ai/plans/pricing"
|
|
},
|
|
"snowflake/claude-3-5-sonnet": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 18000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_computer_use": true
|
|
},
|
|
"snowflake/deepseek-r1": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_reasoning": true
|
|
},
|
|
"snowflake/gemma-7b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/jamba-1.5-large": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/jamba-1.5-mini": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/jamba-instruct": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama2-70b-chat": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3-70b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3-8b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3.1-405b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3.1-70b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3.1-8b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3.2-1b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3.2-3b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/llama3.3-70b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/mistral-7b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/mistral-large": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/mistral-large2": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/mixtral-8x7b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/reka-core": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/reka-flash": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 100000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/snowflake-arctic": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/snowflake-llama-3.1-405b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"snowflake/snowflake-llama-3.3-70b": {
|
|
"litellm_provider": "snowflake",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat"
|
|
},
|
|
"stability/sd3": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.065,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/sd3-large": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.065,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/sd3-large-turbo": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/sd3-medium": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.035,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/sd3.5-large": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.065,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/sd3.5-large-turbo": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/sd3.5-medium": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.035,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/stable-image-ultra": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.08,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability/inpaint": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/outpaint": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.004,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/erase": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/search-and-replace": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/search-and-recolor": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/remove-background": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/replace-background-and-relight": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.008,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/sketch": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/structure": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/style": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.005,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/style-transfer": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.008,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/fast": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.002,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/conservative": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.04,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/creative": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.06,
|
|
"supported_endpoints": [
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"stability/stable-image-core": {
|
|
"litellm_provider": "stability",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.03,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations"
|
|
]
|
|
},
|
|
"stability.sd3-5-large-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.08
|
|
},
|
|
"stability.sd3-large-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.08
|
|
},
|
|
"stability.stable-image-core-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04
|
|
},
|
|
"stability.stable-conservative-upscale-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.4
|
|
},
|
|
"stability.stable-creative-upscale-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.6
|
|
},
|
|
"stability.stable-fast-upscale-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.03
|
|
},
|
|
"stability.stable-outpaint-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.06
|
|
},
|
|
"stability.stable-image-control-sketch-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-control-structure-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-erase-object-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-inpaint-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-remove-background-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-search-recolor-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-search-replace-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-image-style-guide-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.07
|
|
},
|
|
"stability.stable-style-transfer-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"mode": "image_edit",
|
|
"output_cost_per_image": 0.08
|
|
},
|
|
"stability.stable-image-core-v1:1": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04
|
|
},
|
|
"stability.stable-image-ultra-v1:0": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.14
|
|
},
|
|
"stability.stable-image-ultra-v1:1": {
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 77,
|
|
"max_tokens": 77,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.14
|
|
},
|
|
"standard/1024-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 3.81469e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"standard/1024-x-1792/dall-e-3": {
|
|
"input_cost_per_pixel": 4.359e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"standard/1792-x-1024/dall-e-3": {
|
|
"input_cost_per_pixel": 4.359e-08,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_pixel": 0.0
|
|
},
|
|
"linkup/search": {
|
|
"input_cost_per_query": 0.00587,
|
|
"litellm_provider": "linkup",
|
|
"mode": "search"
|
|
},
|
|
"linkup/search-deep": {
|
|
"input_cost_per_query": 0.05867,
|
|
"litellm_provider": "linkup",
|
|
"mode": "search"
|
|
},
|
|
"tavily/search": {
|
|
"input_cost_per_query": 0.008,
|
|
"litellm_provider": "tavily",
|
|
"mode": "search"
|
|
},
|
|
"tavily/search-advanced": {
|
|
"input_cost_per_query": 0.016,
|
|
"litellm_provider": "tavily",
|
|
"mode": "search"
|
|
},
|
|
"text-completion-codestral/codestral-2405": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "text-completion-codestral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://docs.mistral.ai/capabilities/code_generation/"
|
|
},
|
|
"text-completion-codestral/codestral-latest": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "text-completion-codestral",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://docs.mistral.ai/capabilities/code_generation/"
|
|
},
|
|
"text-embedding-004": {
|
|
"deprecation_date": "2026-01-14",
|
|
"input_cost_per_character": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 768,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models"
|
|
},
|
|
"text-embedding-005": {
|
|
"input_cost_per_character": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 768,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models"
|
|
},
|
|
"text-embedding-3-large": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"input_cost_per_token_batches": 6.5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_cost_per_token_batches": 0.0,
|
|
"output_vector_size": 3072
|
|
},
|
|
"text-embedding-3-small": {
|
|
"input_cost_per_token": 2e-08,
|
|
"input_cost_per_token_batches": 1e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_cost_per_token_batches": 0.0,
|
|
"output_vector_size": 1536
|
|
},
|
|
"text-embedding-ada-002": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 1536
|
|
},
|
|
"text-embedding-ada-002-v2": {
|
|
"input_cost_per_token": 1e-07,
|
|
"input_cost_per_token_batches": 5e-08,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_cost_per_token_batches": 0.0
|
|
},
|
|
"text-embedding-large-exp-03-07": {
|
|
"input_cost_per_character": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 3072,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models"
|
|
},
|
|
"text-embedding-preview-0409": {
|
|
"input_cost_per_token": 6.25e-09,
|
|
"input_cost_per_token_batch_requests": 5e-09,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 3072,
|
|
"max_tokens": 3072,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 768,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"text-moderation-007": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "moderation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"text-moderation-latest": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "moderation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"text-moderation-stable": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "moderation",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"text-multilingual-embedding-002": {
|
|
"input_cost_per_character": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vertex_ai-embedding-models",
|
|
"max_input_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0,
|
|
"output_vector_size": 768,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models"
|
|
},
|
|
"text-unicorn": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "vertex_ai-text-models",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2.8e-05,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"text-unicorn@001": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "vertex_ai-text-models",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "completion",
|
|
"output_cost_per_token": 2.8e-05,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#foundation_models"
|
|
},
|
|
"together-ai-21.1b-41b": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-07
|
|
},
|
|
"together-ai-4.1b-8b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07
|
|
},
|
|
"together-ai-41.1b-80b": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07
|
|
},
|
|
"together-ai-8.1b-21b": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_tokens": 1000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07
|
|
},
|
|
"together-ai-81.1b-110b": {
|
|
"input_cost_per_token": 1.8e-06,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-06
|
|
},
|
|
"together-ai-embedding-151m-to-350m": {
|
|
"input_cost_per_token": 1.6e-08,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"together-ai-embedding-up-to-150m": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"together_ai/baai/bge-base-en-v1.5": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 768
|
|
},
|
|
"together_ai/BAAI/bge-base-en-v1.5": {
|
|
"input_cost_per_token": 8e-09,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 512,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0,
|
|
"output_vector_size": 768
|
|
},
|
|
"together-ai-up-to-4b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07
|
|
},
|
|
"together_ai/Qwen/Qwen2.5-72B-Instruct-Turbo": {
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo": {
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen3-235B-A22B-Instruct-2507-tput": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 262000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://www.together.ai/models/qwen3-235b-a22b-instruct-2507-fp8",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen3-235B-A22B-Thinking-2507": {
|
|
"input_cost_per_token": 6.5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://www.together.ai/models/qwen3-235b-a22b-thinking-2507",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen3-235B-A22B-fp8-tput": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 40000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://www.together.ai/models/qwen3-235b-a22b-fp8-tput",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_tool_choice": false
|
|
},
|
|
"together_ai/Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://www.together.ai/models/qwen3-coder-480b-a35b-instruct",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/deepseek-ai/DeepSeek-R1": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 20480,
|
|
"max_tokens": 20480,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/deepseek-ai/DeepSeek-R1-0528-tput": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.19e-06,
|
|
"source": "https://www.together.ai/models/deepseek-r1-0528-throughput",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/deepseek-ai/DeepSeek-V3": {
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/deepseek-ai/DeepSeek-V3.1": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.7e-06,
|
|
"source": "https://www.together.ai/models/deepseek-v3-1",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384
|
|
},
|
|
"together_ai/meta-llama/Llama-3.2-3B-Instruct-Turbo": {
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo": {
|
|
"input_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Llama-3.3-70B-Instruct-Turbo-Free": {
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8": {
|
|
"input_cost_per_token": 2.7e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Llama-4-Scout-17B-16E-Instruct": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo": {
|
|
"input_cost_per_token": 3.5e-06,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo": {
|
|
"input_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8.8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/mistralai/Mistral-7B-Instruct-v0.1": {
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/mistralai/Mistral-Small-24B-Instruct-2501": {
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/mistralai/Mixtral-8x7B-Instruct-v0.1": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/moonshotai/Kimi-K2-Instruct": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://www.together.ai/models/kimi-k2-instruct",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/openai/gpt-oss-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://www.together.ai/models/gpt-oss-120b",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/openai/gpt-oss-20b": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"source": "https://www.together.ai/models/gpt-oss-20b",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/togethercomputer/CodeLlama-34b-Instruct": {
|
|
"litellm_provider": "together_ai",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/zai-org/GLM-4.5-Air-FP8": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-06,
|
|
"source": "https://www.together.ai/models/glm-4-5-air",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/zai-org/GLM-4.6": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"max_tokens": 200000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"source": "https://www.together.ai/models/glm-4-6",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/zai-org/GLM-4.7": {
|
|
"input_cost_per_token": 4.5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"max_tokens": 200000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"source": "https://www.together.ai/models/glm-4-7",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/moonshotai/Kimi-K2.5": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-06,
|
|
"source": "https://www.together.ai/models/kimi-k2-5",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"together_ai/moonshotai/Kimi-K2-Instruct-0905": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://www.together.ai/models/kimi-k2-0905",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen3-Next-80B-A3B-Instruct": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://www.together.ai/models/qwen3-next-80b-a3b-instruct",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen3-Next-80B-A3B-Thinking": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://www.together.ai/models/qwen3-next-80b-a3b-thinking",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"together_ai/Qwen/Qwen3.5-397B-A17B": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "together_ai",
|
|
"max_input_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.6e-06,
|
|
"source": "https://www.together.ai/models/Qwen/Qwen3.5-397B-A17B",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"tts-1": {
|
|
"input_cost_per_character": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"tts-1-hd": {
|
|
"input_cost_per_character": 3e-05,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"aws_polly/standard": {
|
|
"input_cost_per_character": 4e-06,
|
|
"litellm_provider": "aws_polly",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"source": "https://aws.amazon.com/polly/pricing/"
|
|
},
|
|
"aws_polly/neural": {
|
|
"input_cost_per_character": 1.6e-05,
|
|
"litellm_provider": "aws_polly",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"source": "https://aws.amazon.com/polly/pricing/"
|
|
},
|
|
"aws_polly/long-form": {
|
|
"input_cost_per_character": 0.0001,
|
|
"litellm_provider": "aws_polly",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"source": "https://aws.amazon.com/polly/pricing/"
|
|
},
|
|
"aws_polly/generative": {
|
|
"input_cost_per_character": 3e-05,
|
|
"litellm_provider": "aws_polly",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"source": "https://aws.amazon.com/polly/pricing/"
|
|
},
|
|
"us.amazon.nova-lite-v1:0": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.amazon.nova-micro-v1:0": {
|
|
"input_cost_per_token": 3.5e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"us.amazon.nova-premier-v1:0": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": false,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.amazon.nova-pro-v1:0": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 10000,
|
|
"max_tokens": 10000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.anthropic.claude-3-5-haiku-20241022-v1:0": {
|
|
"cache_creation_input_token_cost": 1e-06,
|
|
"cache_read_input_token_cost": 8e-08,
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"us.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.375e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 2.2e-06,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.5e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"us.anthropic.claude-3-5-sonnet-20240620-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"us.anthropic.claude-3-5-sonnet-20241022-v2:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.anthropic.claude-3-7-sonnet-20250219-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"us.anthropic.claude-3-haiku-20240307-v1:0": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_creation_input_token_cost": 3.125e-07
|
|
},
|
|
"us.anthropic.claude-3-opus-20240229-v1:0": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"cache_creation_input_token_cost": 1.875e-05
|
|
},
|
|
"us.anthropic.claude-3-sonnet-20240229-v1:0": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"cache_creation_input_token_cost": 3.75e-06
|
|
},
|
|
"us.anthropic.claude-opus-4-1-20250805-v1:0": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"us.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 6.6e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6.6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.475e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 8.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr_above_200k_tokens": 1.32e-05,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6.6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"us-gov.anthropic.claude-sonnet-4-5-20250929-v1:0": {
|
|
"cache_creation_input_token_cost": 4.125e-06,
|
|
"cache_read_input_token_cost": 3.3e-07,
|
|
"input_cost_per_token": 3.3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6.6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.475e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 8.25e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6.6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.65e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"au.anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.375e-06,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"us.anthropic.claude-opus-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"us.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
"cache_creation_input_token_cost": 6.875e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1.1e-05,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 5.5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.75e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"global.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_creation_input_token_cost_above_1hr": 1e-05,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"eu.anthropic.claude-opus-4-5-20251101-v1:0": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_native_structured_output": true
|
|
},
|
|
"us.anthropic.claude-sonnet-4-20250514-v1:0": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"us.deepseek.r1-v1:0": {
|
|
"input_cost_per_token": 1.35e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.4e-06,
|
|
"supports_function_calling": false,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.deepseek.v3.2": {
|
|
"input_cost_per_token": 6.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.85e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"eu.deepseek.v3.2": {
|
|
"input_cost_per_token": 7.4e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.22e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"us.meta.llama3-1-405b-instruct-v1:0": {
|
|
"input_cost_per_token": 5.32e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama3-1-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 9.9e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama3-1-8b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.2e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama3-2-11b-instruct-v1:0": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"us.meta.llama3-2-1b-instruct-v1:0": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama3-2-3b-instruct-v1:0": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama3-2-90b-instruct-v1:0": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true
|
|
},
|
|
"us.meta.llama3-3-70b-instruct-v1:0": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama4-maverick-17b-instruct-v1:0": {
|
|
"input_cost_per_token": 2.4e-07,
|
|
"input_cost_per_token_batches": 1.2e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.7e-07,
|
|
"output_cost_per_token_batches": 4.85e-07,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.meta.llama4-scout-17b-instruct-v1:0": {
|
|
"input_cost_per_token": 1.7e-07,
|
|
"input_cost_per_token_batches": 8.5e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6.6e-07,
|
|
"output_cost_per_token_batches": 3.3e-07,
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"us.mistral.pixtral-large-2502-v1:0": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": false
|
|
},
|
|
"v0/v0-1.0-md": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "v0",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"v0/v0-1.5-lg": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "v0",
|
|
"max_input_tokens": 512000,
|
|
"max_output_tokens": 512000,
|
|
"max_tokens": 512000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"v0/v0-1.5-md": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "v0",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/alibaba/qwen-3-14b": {
|
|
"input_cost_per_token": 8e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-07
|
|
},
|
|
"vercel_ai_gateway/alibaba/qwen-3-235b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07
|
|
},
|
|
"vercel_ai_gateway/alibaba/qwen-3-30b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07
|
|
},
|
|
"vercel_ai_gateway/alibaba/qwen-3-32b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/alibaba/qwen3-coder": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 66536,
|
|
"max_tokens": 66536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/amazon/nova-lite": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.4e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/amazon/nova-micro": {
|
|
"input_cost_per_token": 3.5e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/amazon/nova-pro": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 300000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/amazon/titan-embed-text-v2": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3-haiku": {
|
|
"cache_creation_input_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3-opus": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3.5-haiku": {
|
|
"cache_creation_input_token_cost": 1e-06,
|
|
"cache_read_input_token_cost": 8e-08,
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3.5-sonnet": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3.7-sonnet": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-4-opus": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-4-sonnet": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3-5-sonnet": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3-5-sonnet-20241022": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-3-7-sonnet": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-haiku-4.5": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-opus-4": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-opus-4.1": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-opus-4.5": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-opus-4.6": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-sonnet-4": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/anthropic/claude-sonnet-4.5": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vercel_ai_gateway/cohere/command-a": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/cohere/command-r": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/cohere/command-r-plus": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/cohere/embed-v4.0": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/deepseek/deepseek-r1": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.19e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/deepseek/deepseek-r1-distill-llama-70b": {
|
|
"input_cost_per_token": 7.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9.9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/deepseek/deepseek-v3": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/google/gemini-2.0-flash": {
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/google/gemini-2.0-flash-lite": {
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/google/gemini-2.5-flash": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/google/gemini-2.5-pro": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/google/gemini-embedding-001": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/google/gemma-2-9b": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/google/text-embedding-005": {
|
|
"input_cost_per_token": 2.5e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/google/text-multilingual-embedding-002": {
|
|
"input_cost_per_token": 2.5e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/inception/mercury-coder-small": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3-70b": {
|
|
"input_cost_per_token": 5.9e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.9e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3-8b": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-08,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.1-70b": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.1-8b": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131000,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-08,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.2-11b": {
|
|
"input_cost_per_token": 1.6e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.2-1b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.2-3b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.2-90b": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-3.3-70b": {
|
|
"input_cost_per_token": 7.2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.2e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-4-maverick": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/meta/llama-4-scout": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/mistral/codestral": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/mistral/codestral-embed": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/mistral/devstral-small": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.8e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/mistral/magistral-medium": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/mistral/magistral-small": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true
|
|
},
|
|
"vercel_ai_gateway/mistral/ministral-3b": {
|
|
"input_cost_per_token": 4e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-08,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/mistral/ministral-8b": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/mistral/mistral-embed": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/mistral/mistral-large": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/mistral/mistral-saba-24b": {
|
|
"input_cost_per_token": 7.9e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.9e-07
|
|
},
|
|
"vercel_ai_gateway/mistral/mistral-small": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/mistral/mixtral-8x22b-instruct": {
|
|
"input_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"supports_function_calling": true
|
|
},
|
|
"vercel_ai_gateway/mistral/pixtral-12b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/mistral/pixtral-large": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/moonshotai/kimi-k2": {
|
|
"input_cost_per_token": 5.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/morph/morph-v3-fast": {
|
|
"input_cost_per_token": 8e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06
|
|
},
|
|
"vercel_ai_gateway/morph/morph-v3-large": {
|
|
"input_cost_per_token": 9e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.9e-06
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-3.5-turbo": {
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 16385,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-3.5-turbo-instruct": {
|
|
"input_cost_per_token": 1.5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-4-turbo": {
|
|
"input_cost_per_token": 1e-05,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-4.1": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-4.1-mini": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-4.1-nano": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 1047576,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-4o": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/gpt-4o-mini": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/o1": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 7.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/o3": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/o3-mini": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 5.5e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/o4-mini": {
|
|
"cache_creation_input_token_cost": 0.0,
|
|
"cache_read_input_token_cost": 2.75e-07,
|
|
"input_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 100000,
|
|
"max_tokens": 100000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4.4e-06,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"vercel_ai_gateway/openai/text-embedding-3-large": {
|
|
"input_cost_per_token": 1.3e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/openai/text-embedding-3-small": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/openai/text-embedding-ada-002": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 0,
|
|
"max_output_tokens": 0,
|
|
"max_tokens": 0,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"vercel_ai_gateway/perplexity/sonar": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 127000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06
|
|
},
|
|
"vercel_ai_gateway/perplexity/sonar-pro": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05
|
|
},
|
|
"vercel_ai_gateway/perplexity/sonar-reasoning": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 127000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06
|
|
},
|
|
"vercel_ai_gateway/perplexity/sonar-reasoning-pro": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 127000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06
|
|
},
|
|
"vercel_ai_gateway/vercel/v0-1.0-md": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/vercel/v0-1.5-md": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-2": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-2-vision": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_vision": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-3": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-3-fast": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"supports_function_calling": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-3-mini": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-3-mini-fast": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/xai/grok-4": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/zai/glm-4.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/zai/glm-4.5-air": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 96000,
|
|
"max_tokens": 96000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.1e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vercel_ai_gateway/zai/glm-4.6": {
|
|
"litellm_provider": "vercel_ai_gateway",
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 4.5e-07,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"max_tokens": 200000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.8e-06,
|
|
"source": "https://vercel.com/ai-gateway/models/glm-4.6",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/chirp": {
|
|
"input_cost_per_character": 3e-05,
|
|
"litellm_provider": "vertex_ai",
|
|
"mode": "audio_speech",
|
|
"source": "https://cloud.google.com/text-to-speech/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"vertex_ai/claude-3-5-haiku": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/claude-3-5-haiku@20241022": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/claude-haiku-4-5": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/claude/haiku-4-5",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_streaming": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-haiku-4-5@20251001": {
|
|
"cache_creation_input_token_cost": 1.25e-06,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/claude/haiku-4-5",
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_native_streaming": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-5-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-5-sonnet@20240620": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-7-sonnet@20250219": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"deprecation_date": "2026-05-11",
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"vertex_ai/claude-3-haiku": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-haiku@20240307": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.25e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-opus": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-opus@20240229": {
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-sonnet": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-3-sonnet@20240229": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-opus-4": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"vertex_ai/claude-opus-4-1": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"input_cost_per_token_batches": 7.5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"output_cost_per_token_batches": 3.75e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-opus-4-1@20250805": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"input_cost_per_token_batches": 7.5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"output_cost_per_token_batches": 3.75e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-opus-4-5": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"vertex_ai/claude-opus-4-5@20251101": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_minimal_reasoning_effort": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159,
|
|
"supports_native_streaming": true
|
|
},
|
|
"vertex_ai/claude-opus-4-6": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"vertex_ai/claude-opus-4-6@default": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"vertex_ai/claude-opus-4-7": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"vertex_ai/claude-opus-4-7@default": {
|
|
"cache_creation_input_token_cost": 6.25e-06,
|
|
"cache_read_input_token_cost": 5e-07,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": false,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_xhigh_reasoning_effort": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"vertex_ai/claude-sonnet-4-5": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"input_cost_per_token_batches": 1.5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_batches": 7.5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/claude-sonnet-4-6": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"vertex_ai/claude-sonnet-4-5@20250929": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"input_cost_per_token_batches": 1.5e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_batches": 7.5e-06,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_native_streaming": true
|
|
},
|
|
"vertex_ai/claude-opus-4@20250514": {
|
|
"cache_creation_input_token_cost": 1.875e-05,
|
|
"cache_read_input_token_cost": 1.5e-06,
|
|
"input_cost_per_token": 1.5e-05,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"vertex_ai/claude-sonnet-4": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"vertex_ai/claude-sonnet-4@20250514": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_200k_tokens": 6e-06,
|
|
"output_cost_per_token_above_200k_tokens": 2.25e-05,
|
|
"cache_creation_input_token_cost_above_200k_tokens": 7.5e-06,
|
|
"cache_read_input_token_cost_above_200k_tokens": 6e-07,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 159
|
|
},
|
|
"vertex_ai/mistralai/codestral-2@001": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/codestral-2": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/codestral-2@001": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistralai/codestral-2": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 9e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/codestral-2501": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/codestral@2405": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/codestral@latest": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/deepseek-ai/deepseek-v3.1-maas": {
|
|
"input_cost_per_token": 1.35e-06,
|
|
"litellm_provider": "vertex_ai-deepseek_models",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.4e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_regions": [
|
|
"us-central1"
|
|
],
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/deepseek-ai/deepseek-v3.2-maas": {
|
|
"input_cost_per_token": 5.6e-07,
|
|
"input_cost_per_token_batches": 2.8e-07,
|
|
"litellm_provider": "vertex_ai-deepseek_models",
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.68e-06,
|
|
"output_cost_per_token_batches": 8.4e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_regions": [
|
|
"global"
|
|
],
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/deepseek-ai/deepseek-r1-0528-maas": {
|
|
"input_cost_per_token": 1.35e-06,
|
|
"litellm_provider": "vertex_ai-deepseek_models",
|
|
"max_input_tokens": 65336,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5.4e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_regions": [
|
|
"us-central1"
|
|
],
|
|
"supports_assistant_prefill": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/gemini-2.5-flash-image": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"max_pdf_size_mb": 30,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.039,
|
|
"output_cost_per_image_token": 3e-05,
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 100000,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/multimodal/image-generation#edit-an-image",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": false,
|
|
"tpm": 8000000
|
|
},
|
|
"vertex_ai/gemini-3-pro-image-preview": {
|
|
"input_cost_per_image": 0.0011,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.134,
|
|
"output_cost_per_image_token": 0.00012,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://docs.cloud.google.com/vertex-ai/generative-ai/docs/models/gemini/3-pro-image"
|
|
},
|
|
"vertex_ai/gemini-3.1-flash-image-preview": {
|
|
"input_cost_per_image": 0.00056,
|
|
"input_cost_per_token": 5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.0672,
|
|
"output_cost_per_image_token": 6e-05,
|
|
"output_cost_per_token": 3e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models"
|
|
},
|
|
"vertex_ai/gemini-3.1-flash-lite-preview": {
|
|
"cache_read_input_token_cost": 2.5e-08,
|
|
"cache_read_input_token_cost_per_audio_token": 5e-08,
|
|
"input_cost_per_audio_token": 5e-07,
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65536,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65536,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 1.5e-06,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#gemini-models",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": false,
|
|
"supports_code_execution": true,
|
|
"supports_file_search": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_native_streaming": true,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.014,
|
|
"search_context_size_medium": 0.014,
|
|
"search_context_size_high": 0.014
|
|
},
|
|
"web_search_billing_unit": "per_query"
|
|
},
|
|
"vertex_ai/deep-research-pro-preview-12-2025": {
|
|
"input_cost_per_image": 0.0011,
|
|
"input_cost_per_token": 2e-06,
|
|
"input_cost_per_token_batches": 1e-06,
|
|
"litellm_provider": "vertex_ai-language-models",
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.134,
|
|
"output_cost_per_image_token": 0.00012,
|
|
"output_cost_per_token": 1.2e-05,
|
|
"output_cost_per_token_batches": 6e-06,
|
|
"source": "https://docs.cloud.google.com/vertex-ai/generative-ai/docs/models/gemini/3-pro-image"
|
|
},
|
|
"vertex_ai/imagegeneration@006": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.02,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/imagen-3.0-fast-generate-001": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.02,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/imagen-3.0-generate-001": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/imagen-3.0-generate-002": {
|
|
"deprecation_date": "2025-11-10",
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/imagen-3.0-capability-001": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/image/edit-insert-objects"
|
|
},
|
|
"vertex_ai/imagen-4.0-fast-generate-001": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.02,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/imagen-4.0-generate-001": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.04,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/imagen-4.0-ultra-generate-001": {
|
|
"litellm_provider": "vertex_ai-image-models",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
|
|
},
|
|
"vertex_ai/jamba-1.5": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai-ai21_models",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/jamba-1.5-large": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai-ai21_models",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/jamba-1.5-large@001": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai-ai21_models",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 8e-06,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/jamba-1.5-mini": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai-ai21_models",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/jamba-1.5-mini@001": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai-ai21_models",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama-3.1-405b-instruct-maas": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.6e-05,
|
|
"source": "https://console.cloud.google.com/vertex-ai/publishers/meta/model-garden/llama-3.2-90b-vision-instruct-maas",
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/meta/llama-3.1-70b-instruct-maas": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://console.cloud.google.com/vertex-ai/publishers/meta/model-garden/llama-3.2-90b-vision-instruct-maas",
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/meta/llama-3.1-8b-instruct-maas": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"metadata": {
|
|
"notes": "VertexAI states that The Llama 3.1 API service for llama-3.1-70b-instruct-maas and llama-3.1-8b-instruct-maas are in public preview and at no cost."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://console.cloud.google.com/vertex-ai/publishers/meta/model-garden/llama-3.2-90b-vision-instruct-maas",
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/meta/llama-3.2-90b-vision-instruct-maas": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 2048,
|
|
"max_tokens": 2048,
|
|
"metadata": {
|
|
"notes": "VertexAI states that The Llama 3.2 API service is at no cost during public preview, and will be priced as per dollar-per-1M-tokens at GA."
|
|
},
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://console.cloud.google.com/vertex-ai/publishers/meta/model-garden/llama-3.2-90b-vision-instruct-maas",
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/meta/llama-4-maverick-17b-128e-instruct-maas": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 1000000,
|
|
"max_tokens": 1000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.15e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama-4-maverick-17b-16e-instruct-maas": {
|
|
"input_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 1000000,
|
|
"max_tokens": 1000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.15e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama-4-scout-17b-128e-instruct-maas": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 10000000,
|
|
"max_output_tokens": 10000000,
|
|
"max_tokens": 10000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama-4-scout-17b-16e-instruct-maas": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 10000000,
|
|
"max_output_tokens": 10000000,
|
|
"max_tokens": 10000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 7e-07,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"code"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama3-405b-instruct-maas": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama3-70b-instruct-maas": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/meta/llama3-8b-instruct-maas": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "vertex_ai-llama_models",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/minimaxai/minimax-m2-maas": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "vertex_ai-minimax_models",
|
|
"max_input_tokens": 196608,
|
|
"max_output_tokens": 196608,
|
|
"max_tokens": 196608,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/moonshotai/kimi-k2-thinking-maas": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "vertex_ai-moonshot_models",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"vertex_ai/zai-org/glm-4.7-maas": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "vertex_ai-zai_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#partner-models",
|
|
"supported_regions": [
|
|
"global"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/zai-org/glm-5-maas": {
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-zai_models",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing#glm-models",
|
|
"supported_regions": [
|
|
"global"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-medium-3": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-medium-3@001": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistralai/mistral-medium-3": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistralai/mistral-medium-3@001": {
|
|
"input_cost_per_token": 4e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-large-2411": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-large@2407": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-large@2411-001": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-large@latest": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-nemo@2407": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-nemo@latest": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-07,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-small-2503": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true
|
|
},
|
|
"vertex_ai/mistral-small-2503@001": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-mistral_models",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8191,
|
|
"max_tokens": 8191,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-06,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/mistral-ocr-2505": {
|
|
"litellm_provider": "vertex_ai",
|
|
"mode": "ocr",
|
|
"ocr_cost_per_page": 0.0005,
|
|
"supported_endpoints": [
|
|
"/v1/ocr"
|
|
],
|
|
"source": "https://cloud.google.com/generative-ai-app-builder/pricing"
|
|
},
|
|
"vertex_ai/deepseek-ai/deepseek-ocr-maas": {
|
|
"litellm_provider": "vertex_ai",
|
|
"mode": "ocr",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"ocr_cost_per_page": 0.0003,
|
|
"source": "https://cloud.google.com/vertex-ai/pricing",
|
|
"supported_regions": [
|
|
"us-central1"
|
|
]
|
|
},
|
|
"vertex_ai/openai/gpt-oss-120b-maas": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai-openai_models",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-07,
|
|
"source": "https://console.cloud.google.com/vertex-ai/publishers/openai/model-garden/gpt-oss-120b-maas",
|
|
"supports_reasoning": true
|
|
},
|
|
"vertex_ai/openai/gpt-oss-20b-maas": {
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "vertex_ai-openai_models",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"source": "https://console.cloud.google.com/vertex-ai/publishers/openai/model-garden/gpt-oss-120b-maas",
|
|
"supports_reasoning": true
|
|
},
|
|
"vertex_ai/xai/grok-4.1-fast-non-reasoning": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://docs.x.ai/docs/models (Vertex AI Model Garden)",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"vertex_ai/xai/grok-4.1-fast-reasoning": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://docs.x.ai/docs/models (Vertex AI Model Garden)",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"vertex_ai/xai/grok-4.20-non-reasoning": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://docs.x.ai/docs/models (Vertex AI Model Garden)",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"vertex_ai/xai/grok-4.20-reasoning": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "vertex_ai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://docs.x.ai/docs/models (Vertex AI Model Garden)",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"vertex_ai/qwen/qwen3-235b-a22b-instruct-2507-maas": {
|
|
"input_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "vertex_ai-qwen_models",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_regions": [
|
|
"global",
|
|
"us-south1"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/qwen/qwen3-coder-480b-a35b-instruct-maas": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "vertex_ai-qwen_models",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_regions": [
|
|
"global"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/qwen/qwen3-next-80b-a3b-instruct-maas": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai-qwen_models",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_regions": [
|
|
"global"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/qwen/qwen3-next-80b-a3b-thinking-maas": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "vertex_ai-qwen_models",
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.2e-06,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_regions": [
|
|
"global"
|
|
],
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"vertex_ai/veo-2.0-generate-001": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.35,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"vertex_ai/veo-3.0-fast-generate-001": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"vertex_ai/veo-3.0-generate-001": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.4,
|
|
"source": "https://ai.google.dev/gemini-api/docs/video",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"vertex_ai/veo-3.1-generate-preview": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.4,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/veo",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"vertex_ai/veo-3.1-fast-generate-preview": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.15,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/veo",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"vertex_ai/veo-3.1-generate-001": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.4,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/veo",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"vertex_ai/veo-3.1-fast-generate-001": {
|
|
"litellm_provider": "vertex_ai-video-models",
|
|
"max_input_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "video_generation",
|
|
"output_cost_per_second": 0.15,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/veo",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
]
|
|
},
|
|
"voyage/rerank-2": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 16000,
|
|
"max_query_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/rerank-2-lite": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8000,
|
|
"max_query_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/rerank-2.5": {
|
|
"input_cost_per_token": 5e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_query_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/rerank-2.5-lite": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_query_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "rerank",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-2": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-3": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-3-large": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-3-lite": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-3.5": {
|
|
"input_cost_per_token": 6e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-3.5-lite": {
|
|
"input_cost_per_token": 2e-08,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-code-2": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-code-3": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-context-3": {
|
|
"input_cost_per_token": 1.8e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 120000,
|
|
"max_tokens": 120000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-finance-2": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-large-2": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-law-2": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-lite-01": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-lite-02-instruct": {
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 4000,
|
|
"max_tokens": 4000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"voyage/voyage-multimodal-3": {
|
|
"input_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "voyage",
|
|
"max_input_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "embedding",
|
|
"output_cost_per_token": 0.0
|
|
},
|
|
"wandb/openai/gpt-oss-120b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 0.015,
|
|
"output_cost_per_token": 0.06,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/openai/gpt-oss-20b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 0.005,
|
|
"output_cost_per_token": 0.02,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/zai-org/GLM-4.5": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 0.055,
|
|
"output_cost_per_token": 0.2,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/Qwen/Qwen3-235B-A22B-Instruct-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 0.01,
|
|
"output_cost_per_token": 0.01,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/Qwen/Qwen3-Coder-480B-A35B-Instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 0.1,
|
|
"output_cost_per_token": 0.15,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/Qwen/Qwen3-235B-A22B-Thinking-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 0.01,
|
|
"output_cost_per_token": 0.01,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/moonshotai/Kimi-K2-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/moonshotai/Kimi-K2.5": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"cache_read_input_token_cost": 1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 3e-06,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat",
|
|
"source": "https://wandb.ai/inference/coreweave/cw_moonshotai_Kimi-K2.5",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"wandb/MiniMaxAI/MiniMax-M2.5": {
|
|
"max_tokens": 197000,
|
|
"max_input_tokens": 197000,
|
|
"max_output_tokens": 197000,
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat",
|
|
"source": "https://wandb.ai/inference/coreweave/cw_MiniMaxAI_MiniMax-M2.5",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"wandb/meta-llama/Llama-3.1-8B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 0.022,
|
|
"output_cost_per_token": 0.022,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/deepseek-ai/DeepSeek-V3.1": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 0.055,
|
|
"output_cost_per_token": 0.165,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/deepseek-ai/DeepSeek-R1-0528": {
|
|
"max_tokens": 161000,
|
|
"max_input_tokens": 161000,
|
|
"max_output_tokens": 161000,
|
|
"input_cost_per_token": 0.135,
|
|
"output_cost_per_token": 0.54,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/deepseek-ai/DeepSeek-V3-0324": {
|
|
"max_tokens": 161000,
|
|
"max_input_tokens": 161000,
|
|
"max_output_tokens": 161000,
|
|
"input_cost_per_token": 0.114,
|
|
"output_cost_per_token": 0.275,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/meta-llama/Llama-3.3-70B-Instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 0.071,
|
|
"output_cost_per_token": 0.071,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/meta-llama/Llama-4-Scout-17B-16E-Instruct": {
|
|
"max_tokens": 64000,
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 64000,
|
|
"input_cost_per_token": 0.017,
|
|
"output_cost_per_token": 0.066,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"wandb/microsoft/Phi-4-mini-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 0.008,
|
|
"output_cost_per_token": 0.035,
|
|
"litellm_provider": "wandb",
|
|
"mode": "chat"
|
|
},
|
|
"watsonx/ibm/granite-3-8b-instruct": {
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "watsonx",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 1024,
|
|
"max_tokens": 1024,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2e-07,
|
|
"supports_audio_input": false,
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/mistralai/mistral-large": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "watsonx",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_audio_input": false,
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/bigscience/mt0-xxl-13b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 0.0005,
|
|
"output_cost_per_token": 0.002,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/core42/jais-13b-chat": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 0.0005,
|
|
"output_cost_per_token": 0.002,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/google/flan-t5-xl-3b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-13b-chat-v2": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-13b-instruct-v2": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-3-3-8b-instruct": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-4-h-small": {
|
|
"max_tokens": 20480,
|
|
"max_input_tokens": 20480,
|
|
"max_output_tokens": 20480,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 2.5e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-guardian-3-2-2b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-guardian-3-3-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-ttm-1024-96-r2": {
|
|
"max_tokens": 512,
|
|
"max_input_tokens": 512,
|
|
"max_output_tokens": 512,
|
|
"input_cost_per_token": 3.8e-07,
|
|
"output_cost_per_token": 3.8e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-ttm-1536-96-r2": {
|
|
"max_tokens": 512,
|
|
"max_input_tokens": 512,
|
|
"max_output_tokens": 512,
|
|
"input_cost_per_token": 3.8e-07,
|
|
"output_cost_per_token": 3.8e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-ttm-512-96-r2": {
|
|
"max_tokens": 512,
|
|
"max_input_tokens": 512,
|
|
"max_output_tokens": 512,
|
|
"input_cost_per_token": 3.8e-07,
|
|
"output_cost_per_token": 3.8e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/ibm/granite-vision-3-2-2b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": true
|
|
},
|
|
"watsonx/meta-llama/llama-3-2-11b-vision-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 3.5e-07,
|
|
"output_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"watsonx/meta-llama/llama-3-2-1b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/meta-llama/llama-3-2-3b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/meta-llama/llama-3-2-90b-vision-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-06,
|
|
"output_cost_per_token": 2e-06,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": true
|
|
},
|
|
"watsonx/meta-llama/llama-3-3-70b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 7.1e-07,
|
|
"output_cost_per_token": 7.1e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/meta-llama/llama-4-maverick-17b": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 3.5e-07,
|
|
"output_cost_per_token": 1.4e-06,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/meta-llama/llama-guard-3-11b-vision": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 3.5e-07,
|
|
"output_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": true
|
|
},
|
|
"watsonx/mistralai/mistral-medium-2505": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 3e-06,
|
|
"output_cost_per_token": 1e-05,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/mistralai/mistral-small-2503": {
|
|
"max_tokens": 32000,
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/mistralai/mistral-small-3-1-24b-instruct-2503": {
|
|
"max_tokens": 32000,
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/mistralai/pixtral-12b-2409": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 3.5e-07,
|
|
"output_cost_per_token": 3.5e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": true
|
|
},
|
|
"watsonx/openai/gpt-oss-120b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/sdaia/allam-1-13b-instruct": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1.8e-06,
|
|
"output_cost_per_token": 1.8e-06,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "chat",
|
|
"supports_function_calling": false,
|
|
"supports_parallel_function_calling": false,
|
|
"supports_vision": false
|
|
},
|
|
"watsonx/whisper-large-v3-turbo": {
|
|
"input_cost_per_second": 0.0001,
|
|
"output_cost_per_second": 0.0001,
|
|
"litellm_provider": "watsonx",
|
|
"mode": "audio_transcription",
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"whisper-1": {
|
|
"input_cost_per_second": 0.0001,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_second": 0.0001,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"xai/grok-2": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-2-1212": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-2-latest": {
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-2-vision": {
|
|
"input_cost_per_image": 2e-06,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-2-vision-1212": {
|
|
"deprecation_date": "2026-02-28",
|
|
"input_cost_per_image": 2e-06,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-2-vision-latest": {
|
|
"input_cost_per_image": 2e-06,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3": {
|
|
"cache_read_input_token_cost": 7.5e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-beta": {
|
|
"cache_read_input_token_cost": 7.5e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-fast-beta": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-fast-latest": {
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-05,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-latest": {
|
|
"cache_read_input_token_cost": 7.5e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-mini": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"deprecation_date": "2026-02-28",
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-mini-beta": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"deprecation_date": "2026-02-28",
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-mini-fast": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-mini-fast-beta": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-mini-fast-latest": {
|
|
"cache_read_input_token_cost": 1.5e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-06,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-3-mini-latest": {
|
|
"cache_read_input_token_cost": 7.5e-08,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"source": "https://x.ai/api#pricing",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": false,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4": {
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-fast-reasoning": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-fast-non-reasoning": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-0709": {
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_128k_tokens": 6e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_128k_tokens": 3e-05,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-latest": {
|
|
"input_cost_per_token": 3e-06,
|
|
"input_cost_per_token_above_128k_tokens": 6e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"output_cost_per_token_above_128k_tokens": 3e-05,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-1-fast": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models/grok-4-1-fast-reasoning",
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-1-fast-reasoning": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models/grok-4-1-fast-reasoning",
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-1-fast-reasoning-latest": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models/grok-4-1-fast-reasoning",
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-1-fast-non-reasoning": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models/grok-4-1-fast-non-reasoning",
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4-1-fast-non-reasoning-latest": {
|
|
"cache_read_input_token_cost": 5e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"input_cost_per_token_above_128k_tokens": 4e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000.0,
|
|
"max_output_tokens": 2000000.0,
|
|
"max_tokens": 2000000.0,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 5e-07,
|
|
"output_cost_per_token_above_128k_tokens": 1e-06,
|
|
"source": "https://docs.x.ai/docs/models/grok-4-1-fast-non-reasoning",
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4.20-multi-agent-beta-0309": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4.20-beta-0309-reasoning": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4.20-0309-reasoning": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-4.20-beta-0309-non-reasoning": {
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 2e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 2000000,
|
|
"max_output_tokens": 2000000,
|
|
"max_tokens": 2000000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-beta": {
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"xai/grok-code-fast": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"xai/grok-code-fast-1": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"xai/grok-code-fast-1-0825": {
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"input_cost_per_token": 2e-07,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"max_tokens": 256000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-06,
|
|
"source": "https://docs.x.ai/docs/models",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"xai/grok-vision-beta": {
|
|
"input_cost_per_image": 5e-06,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "xai",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"zai.glm-4.7": {
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"zai.glm-5": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"zai.glm-4.7-flash": {
|
|
"input_cost_per_token": 7e-08,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 4e-07,
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"zai.glm-5": {
|
|
"input_cost_per_token": 1e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3.2e-06,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"zai/glm-5": {
|
|
"cache_creation_input_token_cost": 0,
|
|
"cache_read_input_token_cost": 2e-07,
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3.2e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-5-code": {
|
|
"cache_creation_input_token_cost": 0,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 5e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.7": {
|
|
"cache_creation_input_token_cost": 0,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.6": {
|
|
"cache_creation_input_token_cost": 0,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.5": {
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.5v": {
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 1.8e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.5-x": {
|
|
"input_cost_per_token": 2.2e-06,
|
|
"output_cost_per_token": 8.9e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.5-air": {
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 1.1e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.5-airx": {
|
|
"input_cost_per_token": 1.1e-06,
|
|
"output_cost_per_token": 4.5e-06,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4-32b-0414-128k": {
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"zai/glm-4.5-flash": {
|
|
"input_cost_per_token": 0,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "zai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://docs.z.ai/guides/overview/pricing"
|
|
},
|
|
"vertex_ai/search_api": {
|
|
"input_cost_per_query": 0.0015,
|
|
"litellm_provider": "vertex_ai",
|
|
"mode": "vector_store"
|
|
},
|
|
"openai/container": {
|
|
"code_interpreter_cost_per_session": 0.03,
|
|
"litellm_provider": "openai",
|
|
"mode": "chat"
|
|
},
|
|
"openai/sora-2": {
|
|
"litellm_provider": "openai",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.1,
|
|
"source": "https://platform.openai.com/docs/api-reference/videos",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"720x1280",
|
|
"1280x720"
|
|
]
|
|
},
|
|
"openai/sora-2-pro": {
|
|
"litellm_provider": "openai",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.3,
|
|
"source": "https://platform.openai.com/docs/api-reference/videos",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"720x1280",
|
|
"1280x720"
|
|
]
|
|
},
|
|
"openai/sora-2-pro-high-res": {
|
|
"litellm_provider": "openai",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.5,
|
|
"source": "https://platform.openai.com/docs/api-reference/videos",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"1024x1792",
|
|
"1792x1024"
|
|
]
|
|
},
|
|
"azure/sora-2": {
|
|
"litellm_provider": "azure",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.1,
|
|
"source": "https://azure.microsoft.com/en-us/products/ai-services/video-generation",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"720x1280",
|
|
"1280x720"
|
|
]
|
|
},
|
|
"azure/sora-2-pro": {
|
|
"litellm_provider": "azure",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.3,
|
|
"source": "https://azure.microsoft.com/en-us/products/ai-services/video-generation",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"720x1280",
|
|
"1280x720"
|
|
]
|
|
},
|
|
"azure/sora-2-pro-high-res": {
|
|
"litellm_provider": "azure",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.5,
|
|
"source": "https://azure.microsoft.com/en-us/products/ai-services/video-generation",
|
|
"supported_modalities": [
|
|
"text"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"1024x1792",
|
|
"1792x1024"
|
|
]
|
|
},
|
|
"runwayml/gen4_turbo": {
|
|
"litellm_provider": "runwayml",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.05,
|
|
"source": "https://docs.dev.runwayml.com/guides/pricing/",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"1280x720",
|
|
"720x1280"
|
|
],
|
|
"metadata": {
|
|
"comment": "5 credits per second @ $0.01 per credit = $0.05 per second"
|
|
}
|
|
},
|
|
"runwayml/gen4_aleph": {
|
|
"litellm_provider": "runwayml",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.15,
|
|
"source": "https://docs.dev.runwayml.com/guides/pricing/",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"1280x720",
|
|
"720x1280"
|
|
],
|
|
"metadata": {
|
|
"comment": "15 credits per second @ $0.01 per credit = $0.15 per second"
|
|
}
|
|
},
|
|
"runwayml/gen3a_turbo": {
|
|
"litellm_provider": "runwayml",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.05,
|
|
"source": "https://docs.dev.runwayml.com/guides/pricing/",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"1280x720",
|
|
"720x1280"
|
|
],
|
|
"metadata": {
|
|
"comment": "5 credits per second @ $0.01 per credit = $0.05 per second"
|
|
}
|
|
},
|
|
"runwayml/gen4_image": {
|
|
"litellm_provider": "runwayml",
|
|
"mode": "image_generation",
|
|
"input_cost_per_image": 0.05,
|
|
"output_cost_per_image": 0.05,
|
|
"source": "https://docs.dev.runwayml.com/guides/pricing/",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"image"
|
|
],
|
|
"supported_resolutions": [
|
|
"1280x720",
|
|
"1920x1080"
|
|
],
|
|
"metadata": {
|
|
"comment": "5 credits per 720p image or 8 credits per 1080p image @ $0.01 per credit. Using 5 credits ($0.05) as base cost"
|
|
}
|
|
},
|
|
"runwayml/gen4_image_turbo": {
|
|
"litellm_provider": "runwayml",
|
|
"mode": "image_generation",
|
|
"input_cost_per_image": 0.02,
|
|
"output_cost_per_image": 0.02,
|
|
"source": "https://docs.dev.runwayml.com/guides/pricing/",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"image"
|
|
],
|
|
"supported_resolutions": [
|
|
"1280x720",
|
|
"1920x1080"
|
|
],
|
|
"metadata": {
|
|
"comment": "2 credits per image (any resolution) @ $0.01 per credit = $0.02 per image"
|
|
}
|
|
},
|
|
"runwayml/eleven_multilingual_v2": {
|
|
"litellm_provider": "runwayml",
|
|
"mode": "audio_speech",
|
|
"input_cost_per_character": 3e-07,
|
|
"source": "https://docs.dev.runwayml.com/guides/pricing/",
|
|
"metadata": {
|
|
"comment": "Estimated cost based on standard TTS pricing. RunwayML uses ElevenLabs models."
|
|
}
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-coder-480b-a35b-instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 4.5e-07,
|
|
"output_cost_per_token": 1.8e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat",
|
|
"supports_reasoning": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-kontext-pro": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 4e-08,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/SSD-1B": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1.3e-10,
|
|
"output_cost_per_token": 1.3e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/chronos-hermes-13b-v2": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-13b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-13b-instruct": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-13b-python": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-34b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-34b-instruct": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-34b-python": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-70b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-70b-instruct": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-70b-python": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-7b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-7b-instruct": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-llama-7b-python": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/code-qwen-1p5-7b": {
|
|
"max_tokens": 65536,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/codegemma-2b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/codegemma-7b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/cogito-671b-v2-p1": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-llama-3b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-llama-70b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-llama-8b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-qwen-14b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/cogito-v1-preview-qwen-32b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-kontext-max": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 8e-08,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/dbrx-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-1b-base": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-33b-instruct": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-7b-base": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-7b-base-v1p5": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-7b-instruct-v1p5": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-v2-lite-base": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-coder-v2-lite-instruct": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-prover-v2": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-0528-distill-qwen3-8b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-llama-70b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-llama-8b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-14b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-1p5b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-32b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-r1-distill-qwen-7b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v2-lite-chat": {
|
|
"max_tokens": 163840,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/deepseek-v2p5": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/devstral-small-2505": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/dobby-mini-unhinged-plus-llama-3-1-8b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/dobby-unhinged-llama-3-3-70b-new": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/dolphin-2-9-2-qwen2-72b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/dolphin-2p6-mixtral-8x7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/ernie-4p5-21b-a3b-pt": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/ernie-4p5-300b-a47b-pt": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/fare-20b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/firefunction-v1": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/firellava-13b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/firesearch-ocr-v6": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/fireworks-asr-large": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "audio_transcription"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/fireworks-asr-v2": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "audio_transcription"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-1-dev": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-1-dev-controlnet-union": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-09,
|
|
"output_cost_per_token": 1e-09,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-1-dev-fp8": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 5e-10,
|
|
"output_cost_per_token": 5e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-1-schnell": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/flux-1-schnell-fp8": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 3.5e-10,
|
|
"output_cost_per_token": 3.5e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gemma-2b-it": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gemma-3-27b-it": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gemma-7b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gemma-7b-it": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gemma2-9b-it": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/glm-4p5v": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat",
|
|
"supports_reasoning": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gpt-oss-safeguard-120b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/gpt-oss-safeguard-20b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/hermes-2-pro-mistral-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/internvl3-38b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/internvl3-78b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/internvl3-8b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/japanese-stable-diffusion-xl": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1.3e-10,
|
|
"output_cost_per_token": 1.3e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kat-coder": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kat-dev-32b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/kat-dev-72b-exp": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-guard-2-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-guard-3-1b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-guard-3-8b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v2-13b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v2-13b-chat": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v2-70b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v2-70b-chat": {
|
|
"max_tokens": 2048,
|
|
"max_input_tokens": 2048,
|
|
"max_output_tokens": 2048,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v2-7b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v2-7b-chat": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3-70b-instruct": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3-70b-instruct-hf": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3-8b-instruct-hf": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p1-405b-instruct-long": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p1-70b-instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p1-70b-instruct-1b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p1-nemotron-70b-instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p2-1b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p2-3b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llama-v3p3-70b-instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llamaguard-7b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/llava-yi-34b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/minimax-m1-80k": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/minimax-m2": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/ministral-3-14b-instruct-2512": {
|
|
"max_tokens": 256000,
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/ministral-3-3b-instruct-2512": {
|
|
"max_tokens": 256000,
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/ministral-3-8b-instruct-2512": {
|
|
"max_tokens": 256000,
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-7b-instruct-4k": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-7b-instruct-v0p2": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-7b-instruct-v3": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-7b-v0p2": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-large-3-fp8": {
|
|
"max_tokens": 256000,
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 256000,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-nemo-base-2407": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-nemo-instruct-2407": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mistral-small-24b-instruct-2501": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mixtral-8x22b": {
|
|
"max_tokens": 65536,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mixtral-8x22b-instruct": {
|
|
"max_tokens": 65536,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mixtral-8x7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mixtral-8x7b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mixtral-8x7b-instruct-hf": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/mythomax-l2-13b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nemotron-nano-v2-12b-vl": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nous-capybara-7b-v1p9": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nous-hermes-2-mixtral-8x7b-dpo": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nous-hermes-2-yi-34b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nous-hermes-llama2-13b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nous-hermes-llama2-70b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nous-hermes-llama2-7b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nvidia-nemotron-nano-12b-v2": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/nvidia-nemotron-nano-9b-v2": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/openchat-3p5-0106-7b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/openhermes-2-mistral-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/openhermes-2p5-mistral-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/openorca-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/phi-2-3b": {
|
|
"max_tokens": 2048,
|
|
"max_input_tokens": 2048,
|
|
"max_output_tokens": 2048,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/phi-3-mini-128k-instruct": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/phi-3-vision-128k-instruct": {
|
|
"max_tokens": 32064,
|
|
"max_input_tokens": 32064,
|
|
"max_output_tokens": 32064,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/phind-code-llama-34b-python-v1": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/phind-code-llama-34b-v1": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/phind-code-llama-34b-v2": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/playground-v2-1024px-aesthetic": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1.3e-10,
|
|
"output_cost_per_token": 1.3e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/playground-v2-5-1024px-aesthetic": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1.3e-10,
|
|
"output_cost_per_token": 1.3e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/pythia-12b": {
|
|
"max_tokens": 2048,
|
|
"max_input_tokens": 2048,
|
|
"max_output_tokens": 2048,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen-qwq-32b-preview": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen-v2p5-14b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen-v2p5-7b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen1p5-72b-chat": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2-7b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2-vl-2b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2-vl-72b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2-vl-7b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-0p5b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-14b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-1p5b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-32b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-32b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-72b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-72b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-7b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-0p5b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-0p5b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-14b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-14b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-1p5b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-1p5b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct-128k": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct-32k-rope": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-32b-instruct-64k": {
|
|
"max_tokens": 65536,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-3b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-3b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-coder-7b-instruct": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-math-72b-instruct": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-32b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-3b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-72b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen2p5-vl-7b-instruct": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-0p6b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-14b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b-fp8-draft": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b-fp8-draft-131072": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-1p7b-fp8-draft-40960": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-235b-a22b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 2.2e-07,
|
|
"output_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-235b-a22b-instruct-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2.2e-07,
|
|
"output_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-235b-a22b-thinking-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2.2e-07,
|
|
"output_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-30b-a3b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-30b-a3b-instruct-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 5e-07,
|
|
"output_cost_per_token": 5e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-30b-a3b-thinking-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-32b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat",
|
|
"supports_reasoning": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-4b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-4b-instruct-2507": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-8b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat",
|
|
"supports_reasoning": true
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-coder-30b-a3b-instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-coder-480b-instruct-bf16": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-embedding-0p6b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "embedding"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-embedding-4b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "embedding"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "embedding"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-next-80b-a3b-instruct": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-next-80b-a3b-thinking": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-reranker-0p6b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "rerank"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-reranker-4b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "rerank"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-reranker-8b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 40960,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "rerank"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-vl-235b-a22b-instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2.2e-07,
|
|
"output_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-vl-235b-a22b-thinking": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 2.2e-07,
|
|
"output_cost_per_token": 8.8e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-vl-30b-a3b-instruct": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-vl-30b-a3b-thinking": {
|
|
"max_tokens": 262144,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-vl-32b-instruct": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwen3-vl-8b-instruct": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/qwq-32b": {
|
|
"max_tokens": 131072,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/rolm-ocr": {
|
|
"max_tokens": 128000,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 128000,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/snorkel-mistral-7b-pairrm-dpo": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/stable-diffusion-xl-1024-v1-0": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1.3e-10,
|
|
"output_cost_per_token": 1.3e-10,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "image_generation"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/stablecode-3b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/starcoder-16b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/starcoder-7b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/starcoder2-15b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/starcoder2-3b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/starcoder2-7b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/toppy-m-7b": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/whisper-v3": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "audio_transcription"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/whisper-v3-turbo": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 0.0,
|
|
"output_cost_per_token": 0.0,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "audio_transcription"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/yi-34b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/yi-34b-200k-capybara": {
|
|
"max_tokens": 200000,
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 200000,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/yi-34b-chat": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 9e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/yi-6b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"fireworks_ai/accounts/fireworks/models/zephyr-7b-beta": {
|
|
"max_tokens": 32768,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "fireworks_ai",
|
|
"mode": "chat"
|
|
},
|
|
"novita/deepseek/deepseek-v3.2": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.69e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.345e-07,
|
|
"input_cost_per_token_cache_hit": 1.345e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/minimax/minimax-m2.1": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_token_cache_hit": 3e-08
|
|
},
|
|
"novita/zai-org/glm-4.7": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token_cache_hit": 1.1e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/xiaomimimo/mimo-v2-flash": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 2e-08,
|
|
"input_cost_per_token_cache_hit": 2e-08,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/zai-org/autoglm-phone-9b-multilingual": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3.5e-08,
|
|
"output_cost_per_token": 1.38e-07,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/moonshotai/kimi-k2-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/minimax/minimax-m2": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_token_cache_hit": 3e-08,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/paddlepaddle/paddleocr-vl": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 2e-08,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/deepseek/deepseek-v3.2-exp": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 4.1e-07,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-vl-235b-a22b-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 9.8e-07,
|
|
"output_cost_per_token": 3.95e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/zai-org/glm-4.6v": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 9e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 5.5e-08,
|
|
"input_cost_per_token_cache_hit": 5.5e-08,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/zai-org/glm-4.6": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5.5e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"max_input_tokens": 204800,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token_cache_hit": 1.1e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/kwaipilot/kat-coder-pro": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 6e-08,
|
|
"input_cost_per_token_cache_hit": 6e-08
|
|
},
|
|
"novita/qwen/qwen3-next-80b-a3b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-next-80b-a3b-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/deepseek/deepseek-ocr": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 3e-08,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/deepseek/deepseek-v3.1-terminus": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.35e-07,
|
|
"input_cost_per_token_cache_hit": 1.35e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-vl-235b-a22b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.5e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-max": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.11e-06,
|
|
"output_cost_per_token": 8.45e-06,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/skywork/r1v4-lite": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/deepseek/deepseek-v3.1": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.35e-07,
|
|
"input_cost_per_token_cache_hit": 1.35e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/moonshotai/kimi-k2-0905": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 262144,
|
|
"max_tokens": 262144,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-coder-480b-a35b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.3e-06,
|
|
"max_input_tokens": 262144,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-coder-30b-a3b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 2.7e-07,
|
|
"max_input_tokens": 160000,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/openai/gpt-oss-120b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 2.5e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/moonshotai/kimi-k2-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5.7e-07,
|
|
"output_cost_per_token": 2.3e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/deepseek/deepseek-v3-0324": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 1.12e-06,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 163840,
|
|
"max_tokens": 163840,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.35e-07,
|
|
"input_cost_per_token_cache_hit": 1.35e-07
|
|
},
|
|
"novita/zai-org/glm-4.5": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 98304,
|
|
"max_tokens": 98304,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token_cache_hit": 1.1e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-235b-a22b-thinking-2507": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 3e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/meta-llama/llama-3.1-8b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/google/gemma-3-12b-it": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 1e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/zai-org/glm-4.5v": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6e-07,
|
|
"output_cost_per_token": 1.8e-06,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 1.1e-07,
|
|
"input_cost_per_token_cache_hit": 1.1e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/openai/gpt-oss-20b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-235b-a22b-instruct-2507": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 5.8e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/deepseek/deepseek-r1-distill-qwen-14b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/meta-llama/llama-3.3-70b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.35e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 120000,
|
|
"max_tokens": 120000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/qwen/qwen-2.5-72b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3.8e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/mistralai/mistral-nemo": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1.7e-07,
|
|
"max_input_tokens": 60288,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/minimaxai/minimax-m1-80k": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5.5e-07,
|
|
"output_cost_per_token": 2.2e-06,
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 40000,
|
|
"max_tokens": 40000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/deepseek/deepseek-r1-0528": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"max_input_tokens": 163840,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"cache_read_input_token_cost": 3.5e-07,
|
|
"input_cost_per_token_cache_hit": 3.5e-07,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/deepseek/deepseek-r1-distill-qwen-32b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 3e-07,
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/meta-llama/llama-3-8b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 4e-08,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/microsoft/wizardlm-2-8x22b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6.2e-07,
|
|
"output_cost_per_token": 6.2e-07,
|
|
"max_input_tokens": 65535,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/deepseek/deepseek-r1-0528-qwen3-8b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 9e-08,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/deepseek/deepseek-r1-distill-llama-70b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 8e-07,
|
|
"output_cost_per_token": 8e-07,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/meta-llama/llama-3-70b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5.1e-07,
|
|
"output_cost_per_token": 7.4e-07,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-235b-a22b-fp8": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 8e-07,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 20000,
|
|
"max_tokens": 20000,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/meta-llama/llama-4-maverick-17b-128e-instruct-fp8": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.7e-07,
|
|
"output_cost_per_token": 8.5e-07,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/meta-llama/llama-4-scout-17b-16e-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.8e-07,
|
|
"output_cost_per_token": 5.9e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/nousresearch/hermes-2-pro-llama-3-8b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.4e-07,
|
|
"output_cost_per_token": 1.4e-07,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen2.5-vl-72b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 8e-07,
|
|
"output_cost_per_token": 8e-07,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/sao10k/l3-70b-euryale-v2.1": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.48e-06,
|
|
"output_cost_per_token": 1.48e-06,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/baidu/ernie-4.5-21B-a3b-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 2.8e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/sao10k/l3-8b-lunaris": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/baichuan/baichuan-m2-32b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 7e-08,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 131072,
|
|
"max_tokens": 131072,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/baidu/ernie-4.5-vl-424b-a47b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 4.2e-07,
|
|
"output_cost_per_token": 1.25e-06,
|
|
"max_input_tokens": 123000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/baidu/ernie-4.5-300b-a47b-paddle": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.8e-07,
|
|
"output_cost_per_token": 1.1e-06,
|
|
"max_input_tokens": 123000,
|
|
"max_output_tokens": 12000,
|
|
"max_tokens": 12000,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/deepseek/deepseek-prover-v2-671b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"max_input_tokens": 160000,
|
|
"max_output_tokens": 160000,
|
|
"max_tokens": 160000,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/qwen/qwen3-32b-fp8": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 4.5e-07,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 20000,
|
|
"max_tokens": 20000,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-30b-a3b-fp8": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 4.5e-07,
|
|
"max_input_tokens": 40960,
|
|
"max_output_tokens": 20000,
|
|
"max_tokens": 20000,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/google/gemma-3-27b-it": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.19e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"max_input_tokens": 98304,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/deepseek/deepseek-v3-turbo": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 4e-07,
|
|
"output_cost_per_token": 1.3e-06,
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/deepseek/deepseek-r1-turbo": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-07,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"max_input_tokens": 64000,
|
|
"max_output_tokens": 16000,
|
|
"max_tokens": 16000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/Sao10K/L3-8B-Stheno-v3.2": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/gryphe/mythomax-l2-13b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 9e-08,
|
|
"output_cost_per_token": 9e-08,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 3200,
|
|
"max_tokens": 3200,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/baidu/ernie-4.5-vl-28b-a3b-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3.9e-07,
|
|
"output_cost_per_token": 3.9e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-vl-8b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 5e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/zai-org/glm-4.5-air": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 8.5e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 98304,
|
|
"max_tokens": 98304,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-vl-30b-a3b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 7e-07,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-vl-30b-a3b-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2e-07,
|
|
"output_cost_per_token": 1e-06,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/qwen/qwen3-omni-30b-a3b-thinking": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 9.7e-07,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true,
|
|
"supports_audio_input": true
|
|
},
|
|
"novita/qwen/qwen3-omni-30b-a3b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 9.7e-07,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 16384,
|
|
"max_tokens": 16384,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true,
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true
|
|
},
|
|
"novita/qwen/qwen-mt-plus": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 2.5e-07,
|
|
"output_cost_per_token": 7.5e-07,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/baidu/ernie-4.5-vl-28b-a3b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.4e-07,
|
|
"output_cost_per_token": 5.6e-07,
|
|
"max_input_tokens": 30000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/baidu/ernie-4.5-21B-a3b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 2.8e-07,
|
|
"max_input_tokens": 120000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/qwen/qwen3-8b-fp8": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3.5e-08,
|
|
"output_cost_per_token": 1.38e-07,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 20000,
|
|
"max_tokens": 20000,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen3-4b-fp8": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 3e-08,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 20000,
|
|
"max_tokens": 20000,
|
|
"supports_system_messages": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"novita/qwen/qwen2.5-7b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 7e-08,
|
|
"max_input_tokens": 32000,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"novita/meta-llama/llama-3.2-3b-instruct": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/sao10k/l31-70b-euryale-v2.2": {
|
|
"litellm_provider": "novita",
|
|
"mode": "chat",
|
|
"input_cost_per_token": 1.48e-06,
|
|
"output_cost_per_token": 1.48e-06,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_tool_choice": true,
|
|
"supports_system_messages": true
|
|
},
|
|
"novita/qwen/qwen3-embedding-0.6b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "embedding",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 0,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768
|
|
},
|
|
"novita/qwen/qwen3-embedding-8b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "embedding",
|
|
"input_cost_per_token": 7e-08,
|
|
"output_cost_per_token": 0,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096
|
|
},
|
|
"novita/baai/bge-m3": {
|
|
"litellm_provider": "novita",
|
|
"mode": "embedding",
|
|
"input_cost_per_token": 1e-08,
|
|
"output_cost_per_token": 1e-08,
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 96000,
|
|
"max_tokens": 96000
|
|
},
|
|
"novita/qwen/qwen3-reranker-8b": {
|
|
"litellm_provider": "novita",
|
|
"mode": "rerank",
|
|
"input_cost_per_token": 5e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096
|
|
},
|
|
"novita/baai/bge-reranker-v2-m3": {
|
|
"litellm_provider": "novita",
|
|
"mode": "rerank",
|
|
"input_cost_per_token": 1e-08,
|
|
"output_cost_per_token": 1e-08,
|
|
"max_input_tokens": 8000,
|
|
"max_output_tokens": 8000,
|
|
"max_tokens": 8000
|
|
},
|
|
"llamagate/llama-3.1-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 5e-08,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/llama-3.2-3b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 8e-08,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/mistral-7b-v0.3": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/qwen3-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 4e-08,
|
|
"output_cost_per_token": 1.4e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/dolphin3-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/deepseek-r1-8b": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 65536,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"llamagate/deepseek-r1-7b-qwen": {
|
|
"max_tokens": 16384,
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 16384,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"llamagate/openthinker-7b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 8e-08,
|
|
"output_cost_per_token": 1.5e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_reasoning": true
|
|
},
|
|
"llamagate/qwen2.5-coder-7b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/deepseek-coder-6.7b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/codellama-7b": {
|
|
"max_tokens": 4096,
|
|
"max_input_tokens": 16384,
|
|
"max_output_tokens": 4096,
|
|
"input_cost_per_token": 6e-08,
|
|
"output_cost_per_token": 1.2e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true
|
|
},
|
|
"llamagate/qwen3-vl-8b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 5.5e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"llamagate/llava-7b": {
|
|
"max_tokens": 2048,
|
|
"max_input_tokens": 4096,
|
|
"max_output_tokens": 2048,
|
|
"input_cost_per_token": 1e-07,
|
|
"output_cost_per_token": 2e-07,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"llamagate/gemma3-4b": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 8192,
|
|
"input_cost_per_token": 3e-08,
|
|
"output_cost_per_token": 8e-08,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_response_schema": true,
|
|
"supports_vision": true
|
|
},
|
|
"llamagate/nomic-embed-text": {
|
|
"max_tokens": 8192,
|
|
"max_input_tokens": 8192,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "embedding"
|
|
},
|
|
"llamagate/qwen3-embedding-8b": {
|
|
"max_tokens": 40960,
|
|
"max_input_tokens": 40960,
|
|
"input_cost_per_token": 2e-08,
|
|
"output_cost_per_token": 0,
|
|
"litellm_provider": "llamagate",
|
|
"mode": "embedding"
|
|
},
|
|
"sarvam/sarvam-m": {
|
|
"cache_creation_input_token_cost": 0,
|
|
"cache_creation_input_token_cost_above_1hr": 0,
|
|
"cache_read_input_token_cost": 0,
|
|
"input_cost_per_token": 0,
|
|
"litellm_provider": "sarvam",
|
|
"max_input_tokens": 8192,
|
|
"max_output_tokens": 32000,
|
|
"max_tokens": 32000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 0,
|
|
"supports_reasoning": true
|
|
},
|
|
"tts-1-1106": {
|
|
"input_cost_per_character": 1.5e-05,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"tts-1-hd-1106": {
|
|
"input_cost_per_character": 3e-05,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"gpt-4o-mini-tts-2025-03-20": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_second": 0.00025,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
]
|
|
},
|
|
"gpt-4o-mini-tts-2025-12-15": {
|
|
"input_cost_per_token": 2.5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "audio_speech",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_second": 0.00025,
|
|
"output_cost_per_token": 1e-05,
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"audio"
|
|
]
|
|
},
|
|
"gpt-4o-mini-transcribe-2025-03-20": {
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 5e-06,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"gpt-4o-mini-transcribe-2025-12-15": {
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 16000,
|
|
"max_output_tokens": 2000,
|
|
"mode": "audio_transcription",
|
|
"output_cost_per_token": 5e-06,
|
|
"supported_endpoints": [
|
|
"/v1/audio/transcriptions"
|
|
]
|
|
},
|
|
"gpt-5-search-api": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false,
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"gpt-5-search-api-2025-10-14": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 272000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"supports_none_reasoning_effort": false,
|
|
"supports_xhigh_reasoning_effort": false
|
|
},
|
|
"gpt-realtime-mini-2025-10-06": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 6e-08,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_image": 8e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"gpt-realtime-mini-2025-12-15": {
|
|
"cache_creation_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_audio_token_cost": 3e-07,
|
|
"cache_read_input_token_cost": 6e-08,
|
|
"input_cost_per_audio_token": 1e-05,
|
|
"input_cost_per_image": 8e-07,
|
|
"input_cost_per_token": 6e-07,
|
|
"litellm_provider": "openai",
|
|
"max_input_tokens": 128000,
|
|
"max_output_tokens": 4096,
|
|
"max_tokens": 4096,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 2e-05,
|
|
"output_cost_per_token": 2.4e-06,
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"sora-2": {
|
|
"litellm_provider": "openai",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.1,
|
|
"source": "https://platform.openai.com/docs/api-reference/videos",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"720x1280",
|
|
"1280x720"
|
|
]
|
|
},
|
|
"sora-2-pro": {
|
|
"litellm_provider": "openai",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.3,
|
|
"source": "https://platform.openai.com/docs/api-reference/videos",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"720x1280",
|
|
"1280x720"
|
|
]
|
|
},
|
|
"sora-2-pro-high-res": {
|
|
"litellm_provider": "openai",
|
|
"mode": "video_generation",
|
|
"output_cost_per_video_per_second": 0.5,
|
|
"source": "https://platform.openai.com/docs/api-reference/videos",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"video"
|
|
],
|
|
"supported_resolutions": [
|
|
"1024x1792",
|
|
"1792x1024"
|
|
]
|
|
},
|
|
"chatgpt-image-latest": {
|
|
"cache_read_input_image_token_cost": 2.5e-06,
|
|
"cache_read_input_token_cost": 1.25e-06,
|
|
"input_cost_per_image_token": 1e-05,
|
|
"input_cost_per_token": 5e-06,
|
|
"litellm_provider": "openai",
|
|
"mode": "image_generation",
|
|
"output_cost_per_image_token": 4e-05,
|
|
"supported_endpoints": [
|
|
"/v1/images/generations",
|
|
"/v1/images/edits"
|
|
]
|
|
},
|
|
"gemini-2.0-flash-exp-image-generation": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gemini",
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.039,
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_vision": true
|
|
},
|
|
"gemini/gemini-2.0-flash-exp-image-generation": {
|
|
"input_cost_per_token": 0.0,
|
|
"litellm_provider": "gemini",
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 32768,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "image_generation",
|
|
"output_cost_per_image": 0.039,
|
|
"output_cost_per_token": 0.0,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"image"
|
|
],
|
|
"supports_vision": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemini-2.0-flash-lite-001": {
|
|
"cache_read_input_token_cost": 1.875e-08,
|
|
"deprecation_date": "2026-06-01",
|
|
"input_cost_per_audio_token": 7.5e-08,
|
|
"input_cost_per_token": 7.5e-08,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_pdf_size_mb": 50,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 3e-07,
|
|
"rpm": 4000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.0-flash-lite",
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 4000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-2.5-flash-native-audio-latest": {
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true
|
|
},
|
|
"gemini-2.5-flash-native-audio-preview-09-2025": {
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true
|
|
},
|
|
"gemini-2.5-flash-native-audio-preview-12-2025": {
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true
|
|
},
|
|
"gemini-3.1-flash-live-preview": {
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_image_token": 1e-06,
|
|
"input_cost_per_token": 7.5e-07,
|
|
"input_cost_per_video_per_second": 3.3333333333333335e-05,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_token": 4.5e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true
|
|
},
|
|
"gemini/gemini-2.5-flash-native-audio-latest": {
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemini-2.5-flash-native-audio-preview-09-2025": {
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemini-2.5-flash-native-audio-preview-12-2025": {
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini/gemini-3.1-flash-live-preview": {
|
|
"input_cost_per_audio_token": 3e-06,
|
|
"input_cost_per_image_token": 1e-06,
|
|
"input_cost_per_token": 7.5e-07,
|
|
"input_cost_per_video_per_second": 3.3333333333333335e-05,
|
|
"litellm_provider": "gemini",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"output_cost_per_audio_token": 1.2e-05,
|
|
"output_cost_per_token": 4.5e-06,
|
|
"source": "https://ai.google.dev/gemini-api/docs/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/realtime"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text",
|
|
"audio"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_audio_output": true,
|
|
"supports_function_calling": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"rpm": 10
|
|
},
|
|
"gemini-2.5-flash-preview-tts": {
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"mode": "audio_speech",
|
|
"output_cost_per_token": 2.5e-06,
|
|
"source": "https://ai.google.dev/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/audio/speech"
|
|
]
|
|
},
|
|
"gemini-flash-latest": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 100000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 8000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-flash-lite-latest": {
|
|
"cache_read_input_token_cost": 1e-08,
|
|
"input_cost_per_audio_token": 3e-07,
|
|
"input_cost_per_token": 1e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 4e-07,
|
|
"output_cost_per_token": 4e-07,
|
|
"rpm": 15,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-lite",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 250000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-pro-latest": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"rpm": 2000,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 800000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini/gemini-pro-latest": {
|
|
"cache_read_input_token_cost": 1.25e-07,
|
|
"cache_read_input_token_cost_above_200k_tokens": 2.5e-07,
|
|
"input_cost_per_token": 1.25e-06,
|
|
"input_cost_per_token_above_200k_tokens": 2.5e-06,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1e-05,
|
|
"output_cost_per_token_above_200k_tokens": 1.5e-05,
|
|
"rpm": 2000,
|
|
"source": "https://cloud.google.com/vertex-ai/generative-ai/pricing",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_input": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_video_input": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 800000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"gemini-exp-1206": {
|
|
"cache_read_input_token_cost": 3e-08,
|
|
"input_cost_per_audio_token": 1e-06,
|
|
"input_cost_per_token": 3e-07,
|
|
"litellm_provider": "gemini",
|
|
"max_audio_length_hours": 8.4,
|
|
"max_audio_per_prompt": 1,
|
|
"max_images_per_prompt": 3000,
|
|
"max_input_tokens": 1048576,
|
|
"max_output_tokens": 65535,
|
|
"max_pdf_size_mb": 30,
|
|
"max_tokens": 65535,
|
|
"max_video_length": 1,
|
|
"max_videos_per_prompt": 10,
|
|
"mode": "chat",
|
|
"output_cost_per_reasoning_token": 2.5e-06,
|
|
"output_cost_per_token": 2.5e-06,
|
|
"rpm": 100000,
|
|
"source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview",
|
|
"supported_endpoints": [
|
|
"/v1/chat/completions",
|
|
"/v1/completions",
|
|
"/v1/batch"
|
|
],
|
|
"supported_modalities": [
|
|
"text",
|
|
"image",
|
|
"audio",
|
|
"video"
|
|
],
|
|
"supported_output_modalities": [
|
|
"text"
|
|
],
|
|
"supports_audio_output": false,
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"supports_url_context": true,
|
|
"supports_vision": true,
|
|
"supports_web_search": true,
|
|
"tpm": 8000000,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_low": 0.035,
|
|
"search_context_size_medium": 0.035,
|
|
"search_context_size_high": 0.035
|
|
}
|
|
},
|
|
"vertex_ai/claude-sonnet-4-6@default": {
|
|
"cache_creation_input_token_cost": 3.75e-06,
|
|
"cache_read_input_token_cost": 3e-07,
|
|
"input_cost_per_token": 3e-06,
|
|
"litellm_provider": "vertex_ai-anthropic_models",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 1.5e-05,
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_pdf_input": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_max_reasoning_effort": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"search_context_cost_per_query": {
|
|
"search_context_size_high": 0.01,
|
|
"search_context_size_low": 0.01,
|
|
"search_context_size_medium": 0.01
|
|
},
|
|
"supports_minimal_reasoning_effort": true
|
|
},
|
|
"duckduckgo/search": {
|
|
"litellm_provider": "duckduckgo",
|
|
"mode": "search",
|
|
"input_cost_per_query": 0.0,
|
|
"metadata": {
|
|
"notes": "DuckDuckGo Instant Answer API is free and does not require an API key."
|
|
}
|
|
},
|
|
"bedrock_mantle/openai.gpt-oss-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_mantle",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock_mantle/openai.gpt-oss-20b": {
|
|
"input_cost_per_token": 7.5e-08,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_mantle",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 32768,
|
|
"max_tokens": 32768,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_parallel_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock_mantle/openai.gpt-oss-safeguard-120b": {
|
|
"input_cost_per_token": 1.5e-07,
|
|
"output_cost_per_token": 6e-07,
|
|
"litellm_provider": "bedrock_mantle",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"bedrock_mantle/openai.gpt-oss-safeguard-20b": {
|
|
"input_cost_per_token": 7.5e-08,
|
|
"output_cost_per_token": 3e-07,
|
|
"litellm_provider": "bedrock_mantle",
|
|
"max_input_tokens": 131072,
|
|
"max_output_tokens": 65536,
|
|
"max_tokens": 65536,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true
|
|
},
|
|
"volcengine/doubao-seed-2-0-pro-260215": {
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"source": "https://www.volcengine.com/docs/82379/1330310",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 4.6e-07,
|
|
"output_cost_per_token": 2.3e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 7e-07,
|
|
"output_cost_per_token": 3.5e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.4e-06,
|
|
"output_cost_per_token": 7e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"volcengine/doubao-seed-2-0-lite-260215": {
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"source": "https://www.volcengine.com/docs/82379/1330310",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 8.7e-08,
|
|
"output_cost_per_token": 5.2e-07,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.3e-07,
|
|
"output_cost_per_token": 7.8e-07,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 2.6e-07,
|
|
"output_cost_per_token": 1.6e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"volcengine/doubao-seed-2-0-mini-260215": {
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"source": "https://www.volcengine.com/docs/82379/1330310",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 2.9e-08,
|
|
"output_cost_per_token": 2.9e-07,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 5.8e-08,
|
|
"output_cost_per_token": 5.8e-07,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.2e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"volcengine/doubao-seed-2-0-code-preview-260215": {
|
|
"litellm_provider": "volcengine",
|
|
"max_input_tokens": 256000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"source": "https://www.volcengine.com/docs/82379/1330310",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_tool_choice": false,
|
|
"supports_vision": true,
|
|
"tiered_pricing": [
|
|
{
|
|
"input_cost_per_token": 4.6e-07,
|
|
"output_cost_per_token": 2.3e-06,
|
|
"range": [
|
|
0,
|
|
32000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 7e-07,
|
|
"output_cost_per_token": 3.5e-06,
|
|
"range": [
|
|
32000.0,
|
|
128000.0
|
|
]
|
|
},
|
|
{
|
|
"input_cost_per_token": 1.4e-06,
|
|
"output_cost_per_token": 7e-06,
|
|
"range": [
|
|
128000.0,
|
|
256000.0
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"zai.glm-5": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3.2e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-1/zai.glm-5": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3.2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-west-2/zai.glm-5": {
|
|
"input_cost_per_token": 1e-06,
|
|
"output_cost_per_token": 3.2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 128000,
|
|
"max_tokens": 128000,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_reasoning": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "bedrock_converse",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-east-1/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-west-2/minimax.minimax-m2.5": {
|
|
"input_cost_per_token": 3e-07,
|
|
"output_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 1000000,
|
|
"max_output_tokens": 8192,
|
|
"max_tokens": 8192,
|
|
"mode": "chat",
|
|
"supports_function_calling": true,
|
|
"supports_system_messages": true,
|
|
"supports_tool_choice": true,
|
|
"source": "https://aws.amazon.com/bedrock/pricing/"
|
|
},
|
|
"bedrock/us-gov-east-1/anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.5e-06,
|
|
"cache_read_input_token_cost": 1.2e-07,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_pdf_input": true
|
|
},
|
|
"bedrock/us-gov-west-1/anthropic.claude-haiku-4-5-20251001-v1:0": {
|
|
"cache_creation_input_token_cost": 1.5e-06,
|
|
"cache_read_input_token_cost": 1.2e-07,
|
|
"input_cost_per_token": 1.2e-06,
|
|
"litellm_provider": "bedrock",
|
|
"max_input_tokens": 200000,
|
|
"max_output_tokens": 64000,
|
|
"max_tokens": 64000,
|
|
"mode": "chat",
|
|
"output_cost_per_token": 6e-06,
|
|
"source": "https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock",
|
|
"supports_assistant_prefill": true,
|
|
"supports_computer_use": true,
|
|
"supports_function_calling": true,
|
|
"supports_prompt_caching": true,
|
|
"supports_reasoning": true,
|
|
"supports_response_schema": true,
|
|
"supports_tool_choice": true,
|
|
"supports_vision": true,
|
|
"tool_use_system_prompt_tokens": 346,
|
|
"supports_native_structured_output": true,
|
|
"supports_pdf_input": true
|
|
}
|
|
}
|