litellm/docs/my-website/img
Ishaan Jaff 8e61b32b8e
[Staging] - Ishaan March 17th (#23903)
* feat(xai): add grok-4.20 beta 2 models with pricing (#23900)

Add three grok-4.20 beta 2 model variants from xAI:
- grok-4.20-multi-agent-beta-0309 (reasoning + multi-agent)
- grok-4.20-beta-0309-reasoning (reasoning)
- grok-4.20-beta-0309-non-reasoning

Pricing (from https://docs.x.ai/docs/models):
- Input: $2.00/1M tokens ($0.20/1M cached)
- Output: $6.00/1M tokens
- Context: 2M tokens

All variants support vision, function calling, tool choice, and web search.
Closes LIT-2171

* docs: add Quick Install section for litellm --setup wizard (#23905)

* docs: add Quick Install section for litellm --setup wizard

* docs: clarify setup wizard is for local/beginner use

* feat(setup): interactive setup wizard + install.sh (#23644)

* feat(setup): add interactive setup wizard + install.sh

Adds `litellm --setup` — a Claude Code-style TUI onboarding wizard that
guides users through provider selection, API key entry, and proxy config
generation, then optionally starts the proxy immediately.

- litellm/setup_wizard.py: wizard with ASCII art, numbered provider menu
  (OpenAI, Anthropic, Azure, Gemini, Bedrock, Ollama), API key prompts,
  port/master-key config, and litellm_config.yaml generation
- litellm/proxy/proxy_cli.py: adds --setup flag that invokes the wizard
- scripts/install.sh: curl-installable script (detect OS/Python, pip
  install litellm[proxy], launch wizard)

Usage:
  curl -fsSL https://raw.githubusercontent.com/BerriAI/litellm/main/scripts/install.sh | sh
  litellm --setup

* fix(install.sh): remove orange color, add LITELLM_BRANCH env var for branch installs

* fix(install.sh): install from git branch so --setup is available for QA

* fix(install.sh): remove stale LITELLM_BRANCH reference that caused unbound variable error

* fix(install.sh): force-reinstall from git to bypass cached PyPI version

* fix(install.sh): show pip progress bar during install

* fix(install.sh): always launch wizard via $PYTHON_BIN -m litellm, not PATH binary

* fix(install.sh): use litellm.proxy.proxy_cli module (no __main__.py exists)

* fix(install.sh): suppress RuntimeWarning from module invocation

* fix(install.sh): use Python bin-dir litellm binary to avoid CWD sys.path shadowing

* fix(install.sh): use sysconfig.get_path('scripts') to find pip-installed litellm binary

* fix(install.sh): redirect stdin from /dev/tty on exec so wizard gets terminal, not exhausted pipe

* fix(install.sh): warn about git clone duration, drop --no-cache-dir so re-runs are faster

* feat(setup_wizard): arrow-key selector, updated model names

* fix(setup_wizard): use sysconfig binary to start proxy, not python -m litellm

* feat(setup_wizard): credential validation after key entry + clear next-steps after proxy start

* style(install.sh): show git clone warning in blue

* refactor(setup_wizard): class with static methods, use check_valid_key from litellm.utils

* address greptile review: fix yaml escaping, port validation, display name collisions, tests

- setup_wizard.py: add _yaml_escape() for safe YAML embedding of API keys
- setup_wizard.py: add _styled_input() with readline ANSI ignore markers
- setup_wizard.py: change DIVIDER to _divider() fn to avoid import-time color capture
- setup_wizard.py: validate port range 1-65535, initialize before loop
- setup_wizard.py: qualify azure display names (azure-gpt-4o) to avoid collision with openai
- setup_wizard.py: work on env_copy in _build_config to avoid mutating caller's dict
- setup_wizard.py: skip model_list entries for providers with no credentials
- setup_wizard.py: prompt for azure deployment name
- setup_wizard.py: wrap os.execlp in try/except with friendly fallback
- setup_wizard.py: wrap config write in try/except OSError
- setup_wizard.py: fix _validate_and_report to use two print lines (no \r overwrite)
- setup_wizard.py: add .gitignore tip next to key storage notice
- setup_wizard.py: fix run_setup_wizard() return type annotation to None
- scripts/install.sh: drop pipefail (not supported by dash on Ubuntu when invoked as sh)
- scripts/install.sh: use litellm[proxy] from PyPI (not hardcoded dev branch)
- scripts/install.sh: guard /dev/tty read with -r check for Docker/CI compat
- scripts/install.sh: remove --force-reinstall to avoid downgrading dependencies
- tests/test_litellm/test_setup_wizard.py: 13 unit tests for _build_config and _yaml_escape

* style: black format setup_wizard.py

* fix: address remaining greptile issues - Windows compat, YAML quoting, credential flow

- guard termios/tty imports with try/except ImportError for Windows compat
- quote master_key as YAML double-quoted scalar (same as env vars)
- remove unused port param from _build_config signature
- _validate_and_report now returns the final key so re-entered creds are stored
- add test for master_key YAML quoting

* fix: add --port to suggested command, guard /dev/tty exec in install.sh

* fix: quote api_base in YAML, skip azure if no deployment, only redraw on state change

* fix: address greptile review comments

- _yaml_escape: add control character escaping (\n, \r, \t)
- test: fix tautological assertion in test_build_config_azure_no_deployment_skipped
- test: add tests for control character escaping in _yaml_escape

* feat(ui): remove Chat UI page link and banner from sidebar and playground (#23908)

* feat(guardrails): MCPJWTSigner - built-in guardrail for zero trust MCP auth (#23897)

* Allow pre_mcp_call guardrail hooks to mutate outbound MCP headers

* Enhance MCPServerManager to support hook-modified arguments and extra headers. Update tests to validate argument mutation and header injection behavior, including warnings for OpenAPI-backed servers when headers are present.

* Refactor MCPServerManager to raise HTTPException for extra headers in OpenAPI-backed servers. Update tests to reflect this change, ensuring proper exception handling instead of logging warnings.

* Allow pre_mcp_call guardrail hooks to mutate outbound MCP headers

* Enhance MCPServerManager to support hook-modified arguments and extra headers. Update tests to validate argument mutation and header injection behavior, including warnings for OpenAPI-backed servers when headers are present.

* Refactor MCPServerManager to raise HTTPException for extra headers in OpenAPI-backed servers. Update tests to reflect this change, ensuring proper exception handling instead of logging warnings.

* feat(guardrails): add MCPJWTSigner built-in guardrail for zero trust MCP auth

Signs outbound MCP tool calls with a LiteLLM-issued RS256 JWT so MCP servers
can trust a single signing authority instead of every upstream IdP.

Enable in config.yaml:
  guardrails:
    - guardrail_name: mcp-jwt-signer
      litellm_params:
        guardrail: mcp_jwt_signer
        mode: pre_mcp_call
        default_on: true

JWT carries sub (user_id), act.sub (team_id, RFC 8693), tool-level scope, iss,
aud, iat/exp/nbf. RSA-2048 keypair auto-generated at startup unless
MCP_JWT_SIGNING_KEY env var is set.

Adds /.well-known/jwks.json endpoint and jwks_uri to /.well-known/openid-configuration
so MCP servers can verify LiteLLM-issued tokens via OIDC discovery.

* Update MCPServerManager to raise HTTPException with status code 400 for extra headers in OpenAPI-backed servers. Adjust tests to verify the correct status code and exception message.

* fix: address P1 issues in MCPJWTSigner

- OpenAPI servers: warn + skip header injection instead of 500
- JWKS Cache-Control: 5min for auto-generated keys, 1h for persistent
- sub claim: fallback to apikey:{token_hash} for anonymous callers
- ttl_seconds: validate > 0 at init time

* docs: add MCP zero trust auth guide with architecture diagram

* docs: add FastMCP JWT verification guide to zero trust doc

* fix: address remaining Greptile review issues (round 2)

- mcp_server_manager: warn when hook Authorization overwrites existing header
- __init__: remove _mcp_jwt_signer_instance from __all__ (private internal)
- discoverable_endpoints: copy dict instead of mutating in-place on OIDC augmentation
- test docstring: reflect warn-and-continue behavior for OpenAPI servers
- test: update scope assertions for least-privilege (no mcp:tools/list on tool-call JWTs)

* fix: address Greptile round 3 feedback

- initialize_guardrail: validate mode='pre_mcp_call' at init time — misconfigured
  mode silently bypasses JWT injection, which is a zero-trust bypass
- _build_claims: remove duplicate inline 'import re' (module-level import already present)
- _types.py: add TODO comment explaining jwt_claims is forward-compat plumbing
  for a follow-up PR that will forward upstream IdP claims into outbound MCP JWTs

* feat(mcp_jwt_signer): add verify+re-sign, claim ops, two-token model, configurable scopes

Addresses all missing pieces from the scoping doc review:

FR-5 (Verify + re-sign): MCPJWTSigner now accepts access_token_discovery_uri
and token_introspection_endpoint.  When set, the incoming Bearer token is
extracted from raw_headers (threaded through pre_call_tool_check), verified
against the IdP's JWKS (JWT) or introspected (opaque), and only re-signed if
valid.  Falls back to user_api_key_dict.jwt_claims for LiteLLM JWT-auth mode.

FR-12 (Configurable end-user identity mapping): end_user_claim_sources
ordered list drives sub resolution — sources: token:<claim>, litellm:user_id,
litellm:email, litellm:end_user_id, litellm:team_id.

FR-13 (Claim operations): add_claims (insert-if-absent), set_claims (always
override), remove_claims (delete) applied in that order.

FR-14 (Two-token model): channel_token_audience + channel_token_ttl issue a
second JWT injected as x-mcp-channel-token: Bearer <token>.

FR-15 (Incoming claim validation): required_claims raises HTTP 403 when any
listed claim is absent; optional_claims passes listed claims from verified
token into the outbound JWT.

FR-9 (Debug headers): debug_headers: true emits x-litellm-mcp-debug with kid,
sub, iss, exp, scope.

FR-10 (Configurable scopes): allowed_scopes replaces auto-generation.  Also
fixed: tool-call JWTs no longer grant mcp:tools/list (overpermission).

P1 fixes:
- proxy/utils.py: _convert_mcp_hook_response_to_kwargs merges rather than
  replaces extra_headers, preserving headers from prior guardrails.
- mcp_server_manager.py: warns when hook injects Authorization alongside a
  server-configured authentication_token (previously silent).
- mcp_server_manager.py: pre_call_tool_check now accepts raw_headers and
  extracts incoming_bearer_token so FR-5 verification has the raw token.
- proxy/utils.py: remove stray inline import inspect inside loop (pre-existing
  lint error, now cleaned up).

Tests: 43 passing (28 new tests covering all FR flags + P1 fixes).

* feat(mcp_jwt_signer): add verify+re-sign, claim ops, two-token model, configurable scopes (core)

Remaining files from the FR implementation:

mcp_jwt_signer.py — full rewrite with all new params:
  FR-5:  access_token_discovery_uri, token_introspection_endpoint,
         verify_issuer, verify_audience + _verify_incoming_jwt(),
         _introspect_opaque_token()
  FR-12: end_user_claim_sources ordered resolution chain
  FR-13: add_claims, set_claims, remove_claims
  FR-14: channel_token_audience, channel_token_ttl → x-mcp-channel-token
  FR-15: required_claims (raises 403), optional_claims (passthrough)
  FR-9:  debug_headers → x-litellm-mcp-debug
  FR-10: allowed_scopes; tool-call JWTs no longer over-grant tools/list

mcp_server_manager.py:
  - pre_call_tool_check gains raw_headers param to extract incoming_bearer_token
  - Silent Authorization override warning fixed: now fires when server has
    authentication_token AND hook injects Authorization

tests/test_mcp_jwt_signer.py:
  28 new tests covering all FR flags + P1 fixes (43 total, all passing)

* fix(mcp_jwt_signer): address pre-landing review issues

- Remove stale TODO comment on UserAPIKeyAuth.jwt_claims — the field is
  already populated and consumed by MCPJWTSigner in the same PR
- Fix _get_oidc_discovery to only cache the OIDC discovery doc when
  jwks_uri is present; a malformed/empty doc now retries on the next
  request instead of being permanently cached until proxy restart
- Add FR-5 test coverage for _fetch_jwks (cache hit/miss),
  _get_oidc_discovery (cache/no-cache on bad doc), _verify_incoming_jwt
  (valid token, expired token), _introspect_opaque_token (active,
  inactive, no endpoint), and the end-to-end 401 hook path — 53 tests
  total, all passing

* docs(mcp_zero_trust): rewrite as use-case guide covering all new JWT signer features

Add scenario-driven sections for each new config area:
- Verify+re-sign with Okta/Azure AD (access_token_discovery_uri,
  end_user_claim_sources, token_introspection_endpoint)
- Enforcing caller attributes with required_claims / optional_claims
- Adding metadata via add_claims / set_claims / remove_claims
- Two-token model for AWS Bedrock AgentCore Gateway
  (channel_token_audience / channel_token_ttl)
- Controlling scopes with allowed_scopes
- Debugging JWT rejections with debug_headers

Update JWT claims table to reflect configurable sub (end_user_claim_sources)

* fix(mcp_jwt_signer): wire all config.yaml params through initialize_guardrail

The factory was only passing issuer/audience/ttl_seconds to MCPJWTSigner.
All FR-5/9/10/12/13/14/15 params (access_token_discovery_uri,
end_user_claim_sources, add/set/remove_claims, channel_token_audience,
required/optional_claims, debug_headers, allowed_scopes, etc.) were
silently dropped, making every advertised advanced feature non-functional
when loaded from config.yaml.

Add regression test that asserts every param is wired through correctly.

* docs(mcp_zero_trust): add hero image

* docs(mcp_zero_trust): apply Linear-style edits

- Lead with the problem (unsigned direct calls bypass access controls)
- Shorter statement section headers instead of question-form headers
- Move diagram/OIDC discovery block after the reader is bought in
- Add 'read further only if you need to' callout after basic setup
- Two-token section now opens from the user problem not product jargon
- Add concrete 403 error response example in required_claims section
- Debug section opens from the symptom (MCP server returning 401)
- Lowercase claims reference header for consistency

* fix(mcp_jwt_signer): fix algorithm confusion attack + add OIDC discovery 24h TTL

- Remove alg from unverified JWT header; use signing_jwk.algorithm_name from JWKS key instead.
  Reading alg from attacker-controlled headers enables alg:none / HS256 confusion attacks.
- Add _oidc_discovery_fetched_at timestamp and _OIDC_DISCOVERY_TTL = 86400 (24h).
  Without a TTL the cached discovery doc never refreshes, so IdP key rotation is invisible.

---------

Co-authored-by: Noah Nistler <60981020+noahnistler@users.noreply.github.com>

* fix(ci): stabilize CI - formatting, type errors, test polling, security CVEs, router bug, batch resolution

Fix 1: Run Black formatter on 35 files
Fix 2: Fix MyPy type errors:
  - setup_wizard.py: add type annotation for 'selected' set variable
  - user_api_key_auth.py: remove redundant type annotation on jwt_claims reassignment
Fix 3: Fix spend accuracy test burst 2 polling to wait for expected total
  spend instead of just 'any increase' from burst 2
Fix 4: Bump Next.js 16.1.6 -> 16.1.7 to fix CVE-2026-27978, CVE-2026-27979,
  CVE-2026-27980, CVE-2026-29057
Fix 5: Fix router _pre_call_checks model variable being overwritten inside
  loop, causing wrong model lookups on subsequent deployments. Use local
  _deployment_model variable instead.
Fix 6: Add missing resolve_output_file_ids_to_unified call in batch retrieve
  non-terminal-to-terminal path (matching the terminal path behavior)

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* chore: regenerate poetry.lock to sync with pyproject.toml

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* fix: format merged files from main and regenerate poetry.lock

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* fix(mypy): annotate jwt_claims as Optional[dict] to fix type incompatibility

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* fix(ci): update router region test to use gpt-4.1-mini (fix flaky model lookup)

Replace deprecated gpt-3.5-turbo-1106 with gpt-4.1-mini + mock_response in
test_router_region_pre_call_check, following the same pattern used in commit
717d37cc5b for test_router_context_window_check_pre_call_check_out_group.

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* ci: retry flaky logging_testing (async event loop race condition)

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* fix(ci): aggregate all mock calls in langfuse e2e test to fix race condition

The _verify_langfuse_call helper only inspected the last mock call
(mock_post.call_args), but the Langfuse SDK may split trace-create and
generation-create events across separate HTTP flush cycles. This caused
an IndexError when the last call's batch contained only one event type.

Fix: iterate over mock_post.call_args_list to collect batch items from
ALL calls. Also add a safety assertion after filtering by trace_id and
mark all langfuse e2e tests with @pytest.mark.flaky(retries=3) as an
extra safety net for any residual timing issues.

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* fix(ci): black formatting + update OpenAPI compliance tests for spec changes

- Apply Black 26.x formatting to litellm_logging.py (parenthesized style)
- Update test_input_types_match_spec to follow $ref to InteractionsInput schema
  (Google updated their OpenAPI spec to use $ref instead of inline oneOf)
- Update test_content_schema_uses_discriminator to handle discriminator without
  explicit mapping (Google removed the mapping key from Content discriminator)

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* revert: undo incorrect Black 26.x formatting on litellm_logging.py

The file was correctly formatted for Black 23.12.1 (the version pinned
in pyproject.toml). The previous commit applied Black 26.x formatting
which was incompatible with the CI's Black version.

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

* fix(ci): deduplicate and sort langfuse batch events after aggregation

The Langfuse SDK may send the same event (e.g., trace-create) in
multiple flush cycles, causing duplicates when we aggregate from all
mock calls. After filtering by trace_id, deduplicate by keeping only
the first event of each type, then sort to ensure trace-create is at
index 0 and generation-create at index 1.

Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>

---------

Co-authored-by: Noah Nistler <60981020+noahnistler@users.noreply.github.com>
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: Ishaan Jaff <ishaan-jaff@users.noreply.github.com>
2026-03-18 15:09:01 -07:00
..
claude_code_marketplace docs plugin marketplaces 2026-01-19 19:42:15 -08:00
claude_code_max Litellm cc docs max (#19466) 2026-01-20 20:08:36 -08:00
release_notes docs: add performance & reliability section to v1.81.14 release notes 2026-02-23 11:23:29 -08:00
1_instance_proxy.png (docs) Add docs on load testing benchmarks (#7499) 2025-01-01 18:33:20 -08:00
2_instance_proxy.png (docs) Add docs on load testing benchmarks (#7499) 2025-01-01 18:33:20 -08:00
10_instance_proxy.png (docs) Add docs on load testing benchmarks (#7499) 2025-01-01 18:33:20 -08:00
a2a_agent_spend.png a2a agent Header-Based Context Propagation (#19504) 2026-01-23 19:56:04 -08:00
a2a_gateway.png [Docs] A2a - Permission management (#17515) 2025-12-04 17:29:47 -08:00
a2a_gateway2.png docs a2a gateway 2025-12-14 11:51:35 -08:00
a2a_trace_grouping.png a2a agent Header-Based Context Propagation (#19504) 2026-01-23 19:56:04 -08:00
add_agent.png Agents - AI Hub, make agents discoverable on model hub page for internal discovery (#16678) 2025-11-15 18:25:16 -08:00
add_agent1.png [Docs] Agent Gateway (#17454) 2025-12-03 18:57:41 -08:00
add_agent_1.png [Docs] Agent Gateway (#17454) 2025-12-03 18:57:41 -08:00
add_Guard2.gif [Docs] litellm content filter guard (#16413) 2025-11-08 16:30:13 -08:00
add_guard5.gif [Docs] litellm content filter guard (#16413) 2025-11-08 16:30:13 -08:00
add_internal_user.png docs(self_serve.md): cleanup images 2024-06-05 17:20:57 -07:00
add_mcp.png docs mcp 2025-06-14 18:10:37 -07:00
add_model_access.png [Docs] Add docs on APIs for model access management (#16673) 2025-11-14 17:07:54 -08:00
add_model_key.png [Docs] Add docs on APIs for model access management (#16673) 2025-11-14 17:07:54 -08:00
add_prompt.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
add_prompt_use_var.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
add_prompt_use_var1.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
add_prompt_var.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
add_stdio_mcp.png [MCP Gateway] Allow using stdio MCPs with LiteLLM (#12530) 2025-07-11 20:21:02 -07:00
admin_settings_ui_theme.png docs: update admin UI branding section and add admin settings UI images 2025-09-05 22:15:25 -07:00
admin_settings_ui_theme_logo.png docs: update admin UI branding section and add admin settings UI images 2025-09-05 22:15:25 -07:00
admin_team_guardrails.png feat(guardrails): team-based guardrail registration and approval workflow (#22459) 2026-03-02 22:06:49 -08:00
admin_ui_2.png (docs) hosted ui litellm 2024-01-29 09:43:55 -08:00
admin_ui_disabled.png LiteLLM Minor Fixes & Improvements (09/17/2024) (#5742) 2024-09-17 23:00:04 -07:00
admin_ui_spend.png doc - spend tracking with litellm 2024-06-03 13:39:38 -07:00
admin_ui_viewer.png docs(ui.md): update 2024-02-28 21:25:39 -08:00
agent2.png [Docs] Agent Gateway (#17454) 2025-12-03 18:57:41 -08:00
agent_1.png docs cost tracking coding 2025-08-02 15:29:44 -07:00
agent_2.png docs cost tracking coding 2025-08-02 15:29:44 -07:00
agent_3.png agent 4.png 2025-08-02 15:34:14 -07:00
agent_4.png agent 4.png 2025-08-02 15:34:14 -07:00
agent_hub_clean.png docs(index.md): document new agent hub 2025-11-15 18:49:51 -08:00
agent_id.png [Docs] A2a - Permission management (#17515) 2025-12-04 17:29:47 -08:00
agent_key.png [Docs] A2a - Permission management (#17515) 2025-12-04 17:29:47 -08:00
agent_team.png [Docs] A2a - Permission management (#17515) 2025-12-04 17:29:47 -08:00
agent_usage.png Adding image 2025-12-13 12:03:24 -08:00
agent_usage_analytics.png Agent Usage Doc 2025-12-13 12:46:56 -08:00
agent_usage_filter.png Agent Usage Doc 2025-12-13 12:46:56 -08:00
agent_usage_ui_navigation.png Agent Usage Doc 2025-12-13 12:46:56 -08:00
ai_hub_with_agents.png Agents - AI Hub, make agents discoverable on model hub page for internal discovery (#16678) 2025-11-15 18:25:16 -08:00
alerting_metadata.png docs(alerting.md): add alerting metadata to docs 2024-06-14 19:04:16 -07:00
alt_dashboard.png update dashboard tutorial 2023-08-24 15:39:41 -07:00
aporia_post.png doc aporia_w_litellm 2024-08-19 14:36:55 -07:00
aporia_pre.png doc aporia_w_litellm 2024-08-19 14:36:55 -07:00
aporia_projs.png doc aporia_w_litellm 2024-08-19 14:36:55 -07:00
app_role2.png [Docs] SSO - Manage User Roles via Azure App Roles (#16796) 2025-11-18 16:00:36 -08:00
app_role3.png [Docs] SSO - Manage User Roles via Azure App Roles (#16796) 2025-11-18 16:00:36 -08:00
app_roles.png [Docs] SSO - Manage User Roles via Azure App Roles (#16796) 2025-11-18 16:00:36 -08:00
argilla.png docs(argilla.md): add doc on argilla logging 2024-10-17 22:51:55 -07:00
arize.png docs(arize_integration.md): update docs with more details 2025-03-22 19:36:37 -07:00
athina_dashboard.png Support for Athina logging 2024-02-23 21:49:40 +05:30
auto_prompt_caching.png [Docs] Auto prompt caching (#10044) 2025-04-15 22:29:47 -07:00
auto_router.png docs auto routing 2025-07-25 08:50:16 -07:00
auto_router2.png docs - auto router on litellm proxy 2025-07-25 08:58:54 -07:00
azure_blob.png (feat) Add Azure Blob Storage Logging Integration (#7265) 2024-12-16 22:18:22 -08:00
azure_content_safety_guardrails.jpg docs(index.md): add to release note 2025-07-06 21:54:02 -07:00
basic_litellm.gif (Docs) connect litellm to open web ui (#9040) 2025-03-06 21:13:00 -08:00
batches_cost_tracking.png release notes 2024-12-23 21:38:56 -08:00
bench_llm.png update tutorial 2023-09-08 06:35:02 -07:00
bulk_edit_graphic.png docs(index.md): cleanup 2025-07-22 08:47:26 -07:00
bulk_select_users.png docs(bulk_edit_users.md): add guide on bulk editing existing users 2025-07-19 18:26:09 -07:00
callback_api.png [Feat] v2 Custom Logger API Endpoints (#10575) 2025-05-05 16:57:55 -07:00
claude_cli_tag_usage.png /v1/messages - Remove hardcoded model name on streaming + Tags - enable setting custom header tags (#12131) 2025-06-28 21:49:35 -07:00
claude_code_byok_screenshot.png feat(proxy): client-side provider API key precedence for Anthropic /v1/messages 2026-03-06 18:20:46 +05:30
claude_code_max.png Litellm cc docs max (#19466) 2026-01-20 20:08:36 -08:00
claude_code_websearch.png add img to doc 2026-01-17 18:05:16 -08:00
cloud_run0.png (docs) proxy server instructions 2023-10-23 10:10:55 -07:00
cloud_run1.png (docs) set env variables on google cloud run 2023-10-23 09:36:11 -07:00
cloud_run2.png (docs) set env variables on google cloud run 2023-10-23 09:36:11 -07:00
cloud_run3.png (docs) set env variables on google cloud run 2023-10-23 09:36:11 -07:00
code_interp.png [docs] add docs for containers files api + code interpreter on LiteLLM (#17749) 2025-12-09 18:11:28 -08:00
codellama_formatted_input.png fix(proxy_server): cleaning up print statements 2023-10-13 20:16:31 -07:00
codellama_input.png fix(proxy_server): cleaning up print statements 2023-10-13 20:16:31 -07:00
compare_llms.png docs update 2023-08-31 17:23:46 -07:00
control_model_access_jwt.png feat(handle_jwt.py): initial commit adding custom RBAC support on jwt… (#8037) 2025-01-28 16:27:06 -08:00
create_budget_modal.png docs(customers.md): tutorial for setting customer budgets on proxy 2024-05-29 17:46:47 -07:00
create_default_team.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
create_guard.gif [Docs] litellm content filter guard (#16413) 2025-11-08 16:30:13 -08:00
create_guard3.gif [Docs] litellm content filter guard (#16413) 2025-11-08 16:30:13 -08:00
create_guard_tool_permission.png doc: add images for tool permission guardrail (#17322) 2025-12-01 12:38:49 -08:00
create_key_in_team.gif docs - setting team budgets on ui 2024-06-19 15:04:01 -07:00
create_key_in_team_oweb.gif (Docs) OpenWeb x LiteLLM Docker compose + Instructions on spend tracking + logging (#9059) 2025-03-07 17:01:39 -08:00
create_key_no_team.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
create_key_with_default_team.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
create_key_with_default_team_success.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
create_rule_tool_permission.png doc: add images for tool permission guardrail (#17322) 2025-12-01 12:38:49 -08:00
create_service_account.png docs service accounts (#5900) 2024-09-25 15:46:13 -07:00
create_team_gif_good.gif docs - setting team budgets on ui 2024-06-19 15:04:01 -07:00
create_team_member_rate_limits.png [UI QA] - Allow setting Team Member RPM/TPM limits when creating a team (#13943) 2025-08-25 09:12:50 -07:00
create_user.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
cursor_add_credential.png Development environment setup (#22432) 2026-02-28 14:50:06 -08:00
cursor_log_detail.png Development environment setup (#22432) 2026-02-28 14:50:06 -08:00
cursor_logs.png Development environment setup (#22432) 2026-02-28 14:50:06 -08:00
cursor_mcp_installed.png docs: add cursor with mcp 2026-01-18 06:51:09 +09:00
custom_prompt_management.png docs custom prompt management 2025-03-19 20:25:09 -07:00
custom_root_path.png docs - run custom path 2024-06-12 14:16:31 -07:00
custom_swagger.png docs(enterprise.md): add swagger - custom routes + branding to docs 2024-05-17 15:31:02 -07:00
custom_tag_headers.png /v1/messages - Remove hardcoded model name on streaming + Tags - enable setting custom header tags (#12131) 2025-06-28 21:49:35 -07:00
customer_usage.png Customer Usage Docs 2025-12-06 13:17:54 -08:00
customer_usage_analytics.png Customer Usage Docs 2025-12-06 13:17:54 -08:00
customer_usage_filter.png Changed image 2025-12-06 13:23:49 -08:00
customer_usage_ui_navigation.png Customer Usage Docs 2025-12-06 13:17:54 -08:00
cyberark1.png [Feat] Add CyberArk Secrets Manager Integration (#16278) 2025-11-05 14:00:45 -08:00
cyberark2.png [Feat] Add CyberArk Secrets Manager Integration (#16278) 2025-11-05 14:00:45 -08:00
dash_output.png docs 2023-08-24 09:34:41 -07:00
dashboard_log.png update dashboard tutorial 2023-08-24 15:39:41 -07:00
dd_llm_obs.png [Feat] Allow redacting message / response content for specific logging integrations - DD LLM Observability (#13158) 2025-07-31 16:44:16 -07:00
dd_small1.png (docs) litellm + datadog 2024-03-18 17:06:00 -07:00
deadlock_fix_1.png doc update 2025-04-02 23:11:22 -07:00
deadlock_fix_2.png doc update 2025-04-02 23:11:22 -07:00
debug_langfuse.png docs - show langfuse debug on docs 2024-06-03 12:40:22 -07:00
debug_sso.png [Feat SSO] Debug route - allow admins to debug SSO JWT fields (#9835) 2025-04-09 15:29:35 -07:00
deepeval_dashboard.png [feature] ConfidentAI logging enabled for proxy and sdk (#10649) 2025-05-23 11:40:48 -07:00
deepeval_visible_trace.png [feature] ConfidentAI logging enabled for proxy and sdk (#10649) 2025-05-23 11:40:48 -07:00
default_teams_product_ss.jpg docs(index.md): update release notes with default team for new users 2025-06-21 23:09:47 -07:00
default_user_settings_admin_ui.png Corrected docs updates sept 2025 (#14916) 2025-09-25 15:49:19 -07:00
default_user_settings_with_default_team.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
delete_spend_logs.jpg docs: update release notes 2025-05-17 19:47:57 -07:00
deploy-to-aws.png (docs) proxy server deploy to AWS 2023-10-25 17:07:53 -07:00
edit_prompt.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
edit_prompt2.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
edit_prompt3.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
edit_prompt4.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
elastic_otel.png (docs) OTEL simple proxy 2023-12-01 21:28:46 -08:00
elasticsearch_demo.png Add Elasticsearch Logging Tutorial (#11761) 2025-06-25 15:17:37 -07:00
email_2.png [Docs] Email notifs (#10733) 2025-05-10 17:24:18 -07:00
email_2_0.png docs - stable release 2025-05-10 22:35:05 -07:00
email_event_1.png docs - stable release 2025-05-10 22:35:05 -07:00
email_event_2.png docs - stable release 2025-05-10 22:35:05 -07:00
email_notifs.png docs- email notifs 2024-05-25 18:07:36 -07:00
email_regen.png [Feat] Email Notifications - Ensure Users get Key Rotated Email (#16292) 2025-11-05 15:56:49 -08:00
email_regen2.png [Feat] Email Notifications - Ensure Users get Key Rotated Email (#16292) 2025-11-05 15:56:49 -08:00
end_user_enforcement.png docs(call_hooks.md): show result in docs 2024-03-27 21:04:51 -07:00
enterprise_vs_oss_2.png Prometheus - make OSS (#16689) 2025-11-15 11:06:34 -08:00
entra_create_team.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
ephemeral_token.png Improve doc for WebRTC 2026-03-12 22:41:39 +05:30
fallback_login.png docs(admin_ui_sso.md): document /fallback/login flow 2025-07-16 09:07:42 -07:00
favicon.png Updated the favicon 2023-08-22 14:50:17 +03:00
favicon_converted.ico Change favicon (#16837) 2025-11-19 20:38:22 -08:00
files_api_graphic.png docs: doc improvements 2025-05-24 19:06:00 -07:00
final_public_model_hub_view.png Updated release notes (#12594) 2025-07-14 17:03:11 -07:00
gcp_acc_1.png docs(vertex.md): add tutorial for using vertex ai with gcp service account 2024-04-04 21:28:28 -07:00
gcp_acc_2.png docs(vertex.md): add tutorial for using vertex ai with gcp service account 2024-04-04 21:28:28 -07:00
gcp_acc_3.png docs(vertex.md): add tutorial for using vertex ai with gcp service account 2024-04-04 21:28:28 -07:00
gcs_bucket.png docs using gcs 2024-08-01 15:23:17 -07:00
gd_fail.png (Feat) Log Guardrails run, guardrail response on logging integrations (#7445) 2024-12-27 15:01:56 -08:00
gd_success.png (Feat) Log Guardrails run, guardrail response on logging integrations (#7445) 2024-12-27 15:01:56 -08:00
gemini_context_caching.png LiteLLM Minor Fixes & Improvements (12/23/2024) - p3 (#7394) 2024-12-23 22:02:52 -08:00
gemini_realtime.png docs: update release notes 2025-05-17 19:47:57 -07:00
google_oauth2.png (docs) hosted ui litellm 2024-01-29 09:43:55 -08:00
google_redirect.png (docs) hosted ui litellm 2024-01-29 09:43:55 -08:00
grafana_1.png (feat proxy) add v2 maintained LiteLLM grafana dashboard (#6098) 2024-10-07 18:11:20 +05:30
grafana_2.png (feat proxy) add v2 maintained LiteLLM grafana dashboard (#6098) 2024-10-07 18:11:20 +05:30
grafana_3.png (feat proxy) add v2 maintained LiteLLM grafana dashboard (#6098) 2024-10-07 18:11:20 +05:30
guardrail_playground.png docs playground 2025-11-08 18:15:52 -08:00
hcorp.png (Feat) Add support for reading secrets from Hashicorp vault (#7497) 2025-01-01 18:35:05 -08:00
hcorp_create_virtual_key.png (Feat) Hashicorp Secret Manager - Allow storing virtual keys in secret manager (#7549) 2025-01-04 11:35:59 -08:00
hcorp_virtual_key.png (Feat) Hashicorp Secret Manager - Allow storing virtual keys in secret manager (#7549) 2025-01-04 11:35:59 -08:00
hero.png update: ui and layout change 2026-03-17 01:55:27 +05:30
hf_filter_inference_providers.png Add inference providers support for Hugging Face (#8258) (#9738) (#9773) 2025-04-05 10:50:15 -07:00
hf_inference_endpoint.png add huggingface 2023-08-30 16:05:33 -07:00
hosted_debugger_usage_page.png add to hosted debugger back to docs 2023-09-07 21:11:37 -07:00
image_handling.png docs(image_handling.md): architecture doc on image handling on the proxy 2025-03-21 14:19:05 -07:00
instances_vs_rps.png (docs) Add docs on load testing benchmarks (#7499) 2025-01-01 18:33:20 -08:00
invitation_link.png docs(self_serve.md): cleanup images 2024-06-05 17:20:57 -07:00
kb.png [Docs] Using LiteLLM with vector stores / knowledge bases (#10534) 2025-05-03 11:28:33 -07:00
kb_2.png [Docs] Using LiteLLM with vector stores / knowledge bases (#10534) 2025-05-03 11:28:33 -07:00
kb_3.png [Docs] Using LiteLLM with vector stores / knowledge bases (#10534) 2025-05-03 11:28:33 -07:00
kb_4.png [Docs] Using LiteLLM with vector stores / knowledge bases (#10534) 2025-05-03 11:28:33 -07:00
kb_openai1.png docs - vector stores (#12781) 2025-07-19 17:07:44 -07:00
kb_pg1.png docs - vector stores (#12781) 2025-07-19 17:07:44 -07:00
kb_vertex1.png docs - vector stores (#12781) 2025-07-19 17:07:44 -07:00
kb_vertex2.png docs - vector stores (#12781) 2025-07-19 17:07:44 -07:00
kb_vertex3.png docs - vector stores (#12781) 2025-07-19 17:07:44 -07:00
key_delete.png docs add audit logs to release note 2025-06-07 18:27:27 -07:00
key_email.png docs email notifs 2.0 2025-05-10 23:00:20 -07:00
key_email_2.png docs email notifs 2.0 2025-05-10 23:00:20 -07:00
key_logging.png new img 2025-07-05 16:27:46 -07:00
key_logging2.png new img 2025-07-05 16:27:46 -07:00
key_logging_arize.png new img 2025-07-05 16:27:46 -07:00
key_r.png [Docs] Key Rotations (#15455) 2025-10-11 13:24:47 -07:00
key_u.png [Docs] Key Rotations (#15455) 2025-10-11 13:24:47 -07:00
lago.jpeg docs(lago.md): add lago usage-based billing quick-start to docs 2024-05-16 13:24:04 -07:00
lago_2.png docs(billing.md): update lago screenshot 2024-05-16 15:30:33 -07:00
langfuse-example-trace-multiple-models-min.png [docs] updated langfuse integration guide (#5921) 2024-09-27 07:49:47 -07:00
langfuse-litellm-ui.png [docs] updated langfuse integration guide (#5921) 2024-09-27 07:49:47 -07:00
langfuse.png fix img langfuse 2023-08-31 12:18:39 -07:00
langfuse_otel.png Litellm dev 07 03 2025 p2 (#12301) 2025-07-03 22:40:21 -07:00
langfuse_prmpt_mgmt.png add img to release notes 2024-12-21 21:24:16 -08:00
langfuse_prompt_id.png fix(main.py): fix retries being multiplied when using openai sdk (#7221) 2024-12-14 11:56:55 -08:00
langfuse_prompt_management_model_config.png Litellm dev 2024 12 19 p3 (#7322) 2024-12-20 13:30:16 -08:00
langfuse_small.png (docs) using litellm proxy + langfuse 2023-11-15 14:29:14 -08:00
langsmith.png (docs) add langsmith callback docs 2023-10-18 12:13:39 -07:00
langsmith_new.png langsmith logs 2024-07-17 16:37:24 -07:00
latency.png (docs) proxy 2023-11-24 17:09:38 -08:00
levo_logo.png feat: Add Levo AI integration (#18529) 2026-01-05 08:49:21 +05:30
levo_logo_dark.png feat: Add Levo AI integration (#18529) 2026-01-05 08:49:21 +05:30
litellm_adk.png [Docs] Using litellm with Google ADK (#10777) 2025-05-12 16:41:49 -07:00
litellm_codex.gif [Feat] Support for all litellm providers on Responses API (works with Codex) - Anthropic, Bedrock API, VertexAI, Ollama (#10132) 2025-04-18 19:53:59 -07:00
litellm_create_team.gif (Docs) OpenWeb x LiteLLM Docker compose + Instructions on spend tracking + logging (#9059) 2025-03-07 17:01:39 -08:00
litellm_custom_ai.png (docs) custom ui branding 2024-02-21 22:07:40 -08:00
litellm_entra_id.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
litellm_gateway.png add arch diagram 2024-09-07 15:49:51 -07:00
litellm_hosted_ui_add_models.png docs(hosted.md): add hosted proxy info to docs 2024-04-20 09:30:28 -07:00
litellm_hosted_ui_create_key.png docs(hosted.md): add hosted proxy info to docs 2024-04-20 09:30:28 -07:00
litellm_hosted_ui_router.png docs(hosted.md): add hosted proxy info to docs 2024-04-20 09:30:28 -07:00
litellm_hosted_usage_dashboard.png docs(hosted.md): add hosted proxy info to docs 2024-04-20 09:30:28 -07:00
litellm_load_test.png (docs) how to run a locust load test 2024-03-15 07:37:50 -07:00
litellm_mcp.png litellm mcp bridge docs 2025-03-21 17:00:56 -07:00
litellm_proxy_setup.png Add OpenAI Agents SDK tutorial with LiteLLM Proxy to docs (#21221) 2026-02-23 12:10:01 -08:00
litellm_setup_openweb.gif (Docs) connect litellm to open web ui (#9040) 2025-03-06 21:13:00 -08:00
litellm_streamlit_playground.png completed tutorial 2023-08-25 19:20:35 -07:00
litellm_thinking_openweb.gif (Docs) connect litellm to open web ui (#9040) 2025-03-06 21:13:00 -08:00
litellm_ui_3.gif docs(ui.md): update ui docs 2024-02-10 17:26:04 -08:00
litellm_ui_admin.png docs(ui.md): add proxy admin view to docs 2024-02-07 11:38:27 -08:00
litellm_ui_copy_id.png docs(ui.md): add proxy admin view to docs 2024-02-07 11:38:27 -08:00
litellm_ui_create_key.png docs(ui.md): add proxy admin view to docs 2024-02-07 11:38:27 -08:00
litellm_ui_login.png docs(ui.md): ui doc updates 2024-02-07 11:38:27 -08:00
litellm_user_heirarchy.png docs: update litellm user management heirarchy doc 2025-02-16 00:31:13 -08:00
litellm_virtual_key.gif Add Retool Assist tutorial with LiteLLM Proxy to docs (#21952) 2026-03-11 13:17:08 -07:00
literalai.png Litellm Minor Fixes & Improvements (10/03/2024) (#6049) 2024-10-03 18:02:28 -04:00
locust.png (docs) load test litellm 2024-03-08 15:18:06 -08:00
locust_load_test.png (docs) how to run a locust load test 2024-03-15 07:37:50 -07:00
locust_load_test1.png (docs) add 1k rps load test doc (#6059) 2024-10-04 16:56:34 +05:30
locust_load_test2.png (docs) add 1k rps load test doc (#6059) 2024-10-04 16:56:34 +05:30
locust_load_test2_setup.png (docs) add 1k rps load test doc (#6059) 2024-10-04 16:56:34 +05:30
logfire.png Revert "Revert "Logfire Integration"" 2024-05-21 11:07:40 +04:00
lunary-trace.png [integrations/lunary] Improve Lunary documentaiton (#7770) 2025-01-15 15:00:25 -08:00
make_agents_public.png Agents - AI Hub, make agents discoverable on model hub page for internal discovery (#16678) 2025-11-15 18:25:16 -08:00
make_public_modal.png Updated release notes (#12594) 2025-07-14 17:03:11 -07:00
make_public_modal_confirmation.png Updated release notes (#12594) 2025-07-14 17:03:11 -07:00
managed_files_arch.png Litellm managed files docs (#9948) 2025-04-12 13:02:33 -07:00
max_budget_for_internal_users.png docs(self_serve.md): cleanup docs on how to onboard new users + teams 2024-08-07 19:58:36 -07:00
mcp_2.png docs litellm mcp 2025-03-29 22:28:03 -07:00
mcp_allow_all_ui.png fix: missing mcp_allow_all_ui.png 2026-01-06 11:23:22 +09:00
mcp_aws_sigv4_ui.png feat(mcp): add AWS SigV4 auth support in UI and fix credential merge on edit (#23282) 2026-03-11 09:43:28 -07:00
mcp_cost.png docs mcp fix 2025-07-12 17:38:43 -07:00
mcp_create_access_group.png [MCP Gateway] Ensure we use the same param for specifying groups (#12561) 2025-07-12 16:41:58 -07:00
mcp_key.png docs mcp 2025-06-14 18:10:37 -07:00
mcp_key_access_group.png [MCP Gateway] Ensure we use the same param for specifying groups (#12561) 2025-07-12 16:41:58 -07:00
mcp_oauth.png feat: add allow_all_keys doc 2026-01-05 16:56:19 +09:00
mcp_on_public_ai_hub.png docs(ai_hub.md): document mcp servers on ai hub 2025-11-22 16:07:38 -08:00
mcp_openapi_custom_name_badge.png feat(mcp): allow admins to override tool name and description per MCP server (#22828) 2026-03-04 17:58:05 -08:00
mcp_openapi_tool_edit_panel.png feat(mcp): allow admins to override tool name and description per MCP server (#22828) 2026-03-04 17:58:05 -08:00
mcp_openapi_tools_loaded.png feat(mcp): allow admins to override tool name and description per MCP server (#22828) 2026-03-04 17:58:05 -08:00
mcp_playground.png doc: add MCP troubleshooting guide 2026-01-15 08:01:59 +09:00
mcp_server_on_ai_hub.png docs(ai_hub.md): document mcp servers on ai hub 2025-11-22 16:07:38 -08:00
mcp_tool_testing_playground.png doc: add MCP troubleshooting guide 2026-01-15 08:01:59 +09:00
mcp_tools.png [Bug]: Fix Authorization header not being sent to configured MCP servers (#14422) 2025-09-10 16:41:08 -07:00
mcp_ui.png docs add mcp graphic to stable release notes 2025-03-29 19:00:26 -07:00
mcp_updates.jpg docs(index.md): document mcp oauth support 2025-10-11 15:14:15 -07:00
mcp_zero_trust_gateway.png [Staging] - Ishaan March 17th (#23903) 2026-03-18 15:09:01 -07:00
message_redaction_logging.png Litellm staging (#8270) 2025-02-04 22:35:48 -08:00
message_redaction_spend_logs.png Litellm staging (#8270) 2025-02-04 22:35:48 -08:00
mlflow_tool_calling_tracing.png Update MLflow calllback and documentation (#7809) 2025-01-21 20:56:48 -08:00
mlflow_tracing.png LiteLLM Minor Fixes & Improvements (11/13/2024) (#6729) 2024-11-15 11:18:31 +05:30
model_compare_overview.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
model_hub.png docs(enterprise.md): update enterprise docs with public model hub and custom email branding information 2024-06-01 09:01:05 -07:00
model_hub_admin_view.png Updated release notes (#12594) 2025-07-14 17:03:11 -07:00
model_hub_public.png Updated release notes (#12594) 2025-07-14 17:03:11 -07:00
ms_teams_alerting.png docs(alerting.md): add expected response teams alerting image to docs 2024-06-13 14:28:43 -07:00
msft_auto_team.png update docs 2025-04-10 20:18:54 -07:00
msft_default_settings.png docs msft default team settings 2025-04-10 20:22:46 -07:00
msft_enterprise_app.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
msft_enterprise_assign_group.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
msft_enterprise_select_group.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
msft_member_1.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
msft_member_2.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
msft_member_3.png update docs 2025-04-10 20:18:54 -07:00
msft_sso_sign_in.png [Docs] Tutorial using MSFT auto team assignment with LiteLLM (#9898) 2025-04-10 20:07:55 -07:00
multi_instance_rate_limiting.png docs(index.md): add graphic 2025-05-05 20:49:47 -07:00
multiple_deployments.png docs(routing.md): adding comparison to docs 2023-11-06 18:57:50 -08:00
new_user_email.png docs email notifs 2.0 2025-05-10 23:00:20 -07:00
new_user_login.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
ngrok_public_url.gif Add Retool Assist tutorial with LiteLLM Proxy to docs (#21952) 2026-03-11 13:17:08 -07:00
oauth_2_success.png docs(claude_responses_api.md): update docs with mcp server tutorial 2025-10-11 15:07:54 -07:00
okta_access_policies.png docs: improve Okta SSO setup guide with step-by-step instructions (#20353) 2026-02-04 18:39:51 -08:00
okta_authorization_server.png docs: improve Okta SSO setup guide with step-by-step instructions (#20353) 2026-02-04 18:39:51 -08:00
okta_callback_url.png docs(ui.md): add okta sso support to docs 2024-06-11 13:17:41 -07:00
okta_client_credentials.png docs: improve Okta SSO setup guide with step-by-step instructions (#20353) 2026-02-04 18:39:51 -08:00
okta_redirect_uri.png docs: improve Okta SSO setup guide with step-by-step instructions (#20353) 2026-02-04 18:39:51 -08:00
okta_security_api.png docs: improve Okta SSO setup guide with step-by-step instructions (#20353) 2026-02-04 18:39:51 -08:00
openmeter.png docs(openmeter.md): add openmeter to docs 2024-05-01 18:31:45 -07:00
openmeter_img_2.png docs(openmeter.md): add openmeter to docs 2024-05-01 18:31:45 -07:00
opik.png [Feat] Observability integration - Opik by Comet (#6062) 2024-10-10 18:27:50 +05:30
opik_key_metadata.png Opik user auth key metadata Documentation (#16004) 2025-10-29 19:13:19 -07:00
otel_debug_trace.png Litellm dev 11 20 2024 (#6838) 2024-11-21 05:20:37 +05:30
otel_parent.png doc - OTEL trace propogation 2024-06-11 14:25:33 -07:00
pagerduty_fail.png (Feat) - Add PagerDuty Alerting Integration (#7478) 2025-01-01 07:12:51 -08:00
pagerduty_hanging.png (Feat) - Add PagerDuty Alerting Integration (#7478) 2025-01-01 07:12:51 -08:00
passthrough_method_setup.png Add documentation for adding method 2026-02-19 11:59:09 +05:30
passthrough_query_default.png Add allow defining default query params for a pass through 2026-02-19 12:48:03 +05:30
perf_imp.png docs release notes 2025-05-24 21:24:44 -07:00
pii_masking_v2.png docs: update release notes 2025-05-17 19:47:57 -07:00
policy_team_attach.png [Docs] Add docs guide for using policies (#20914) 2026-02-10 18:52:31 -08:00
policy_test_matching.png [Docs] Add docs guide for using policies (#20914) 2026-02-10 18:52:31 -08:00
presidio_1.png [Docs] Pii masking with LiteLLM (#10924) 2025-05-17 18:35:33 -07:00
presidio_2.png [Docs] Pii masking with LiteLLM (#10924) 2025-05-17 18:35:33 -07:00
presidio_3.png [Docs] Pii masking with LiteLLM (#10924) 2025-05-17 18:35:33 -07:00
presidio_4.png [Docs] Pii masking with LiteLLM (#10924) 2025-05-17 18:35:33 -07:00
presidio_5.png [Docs] Pii masking with LiteLLM (#10924) 2025-05-17 18:35:33 -07:00
presidio_screenshot.png docs(pii_masking.md): add pii masking to proxy docs 2024-02-12 21:40:34 -08:00
prevent_deadlocks.jpg docs: cleanup 2025-04-06 14:39:28 -07:00
project_spend.png docs project management 2025-11-12 16:24:23 -08:00
prom_config.png [Feat] Prometheus - Allow controlling exposed metrics and labels (#11489) 2025-06-14 13:56:40 -07:00
prompt_history.png fix 1.80.5 2025-11-22 19:24:46 -08:00
prompt_management_architecture_doc.png Litellm dev 2024 12 19 p3 (#7322) 2024-12-20 13:30:16 -08:00
prompt_table.png docs - ai gateway prompt management (#16990) 2025-11-22 18:49:29 -08:00
promptlayer.png update docs 2023-08-26 12:33:47 -07:00
proxy_langfuse.png docs - pass through langfuse requests on proxy 2024-06-28 17:53:13 -07:00
pt_1.png docs add imgs 2025-06-21 15:11:58 -07:00
pt_2.png docs add imgs 2025-06-21 15:11:58 -07:00
pt_guard1.png [Feat] UI - allow adding pass through guardrails through UI (#17226) 2025-11-27 12:27:16 -08:00
pt_guard2.png [Feat] UI - allow adding pass through guardrails through UI (#17226) 2025-11-27 12:27:16 -08:00
public_agent_hub.png Agents - AI Hub, make agents discoverable on model hub page for internal discovery (#16678) 2025-11-15 18:25:16 -08:00
raw_request_log.png fix(utils.py): allow user to opt in to raw request logging to langfuse 2024-06-11 13:35:22 -07:00
raw_response_headers.png docs(raw_request_response.md): show how to get openai headers from response 2024-07-23 11:40:26 -07:00
realtime_api.png docs(index.md): update changelog with realtime api cost tracking details 2025-04-12 19:15:40 -07:00
render1.png (docs) on deploying render 2023-10-24 21:28:37 -07:00
render2.png (docs) on deploying render 2023-10-24 21:28:37 -07:00
response_cost_img.png fix cost tracking img 2024-06-29 11:35:57 -07:00
retool_litellm_connection.gif Add Retool Assist tutorial with LiteLLM Proxy to docs (#21952) 2026-03-11 13:17:08 -07:00
retool_litellm_logs.gif Add Retool Assist tutorial with LiteLLM Proxy to docs (#21952) 2026-03-11 13:17:08 -07:00
retool_llm_setup.gif Add Retool Assist tutorial with LiteLLM Proxy to docs (#21952) 2026-03-11 13:17:08 -07:00
retool_resource_setup.gif Add Retool Assist tutorial with LiteLLM Proxy to docs (#21952) 2026-03-11 13:17:08 -07:00
router_architecture.png docs(router_architecture.md): add router architecture docs 2024-11-26 12:54:38 +05:30
sagemaker_deploy.png add sagemaker to docs 2023-09-04 21:53:52 -07:00
sagemaker_domain.png add sagemaker to docs 2023-09-04 21:53:52 -07:00
sagemaker_endpoint.png add sagemaker to docs 2023-09-04 21:53:52 -07:00
sagemaker_jumpstart.png add sagemaker to docs 2023-09-04 21:53:52 -07:00
scaling_architecture.png Control Plane + Data Plane support (#12601) 2025-07-14 21:31:56 -07:00
scim_0.png Litellm docs SCIM (#10174) 2025-04-19 18:29:09 -07:00
scim_1.png Litellm docs SCIM (#10174) 2025-04-19 18:29:09 -07:00
scim_2.png Litellm docs SCIM (#10174) 2025-04-19 18:29:09 -07:00
scim_3.png Litellm docs SCIM (#10174) 2025-04-19 18:29:09 -07:00
scim_4.png Litellm docs SCIM (#10174) 2025-04-19 18:29:09 -07:00
scim_integration.png docs: cleanup 2025-04-20 09:26:05 -07:00
secret_manager_hashicorp_vault_settings.png doc: improve secret manager settings 2025-12-19 07:06:26 +09:00
secret_manager_settings.png doc: improve secret manager settings 2025-12-19 07:06:26 +09:00
secret_manager_settings_additional_settings.png doc: improve secret manager settings 2025-12-19 07:06:26 +09:00
secret_manager_settings_create_button.png doc: improve secret manager settings 2025-12-19 07:06:26 +09:00
secret_manager_settings_create_team.png doc: improve secret manager settings 2025-12-19 07:06:26 +09:00
select_default_team.png docs(bulk_edit_users.md): add guide on bulk editing existing users 2025-07-19 18:26:09 -07:00
sentinel.png [Feat] New Logging Integration - Azure Sentinel Logger (#18146) 2025-12-18 02:04:49 +05:30
sentry.png (docs) improve sentry callback 2023-10-27 16:33:12 -07:00
separate_health_app_architecture.png [Add health check] add architecture diagram (#12879) 2025-07-22 23:12:19 -07:00
slack.png (docs) add slack callback for litellm 2023-10-19 09:32:29 -07:00
soft_budget_alert.png update docs 2025-01-07 22:35:07 -08:00
spend_log_deletion_multi_pod.jpg add docs for spend logs (#10913) 2025-05-17 16:00:28 -07:00
spend_log_deletion_working.png add docs for spend logs (#10913) 2025-05-17 16:00:28 -07:00
spend_logs_table.png docs(sidebars.js): add custom pricing to docs 2024-01-22 15:15:34 -08:00
spend_per_user.png (docs) spend per user 2024-01-24 12:17:23 -08:00
static_headers.png [MCP] configure static mcp header (#16179) 2025-11-03 21:06:36 -08:00
success_bulk_edit.png docs(bulk_edit_users.md): add guide on bulk editing existing users 2025-07-19 18:26:09 -07:00
swagger.png (docs) proxy server instructions 2023-10-23 10:10:55 -07:00
tag_budget1.png [Feat] Tag Management - Add support for setting tag based budgets (#15433) 2025-10-10 19:24:50 -07:00
tag_budget2.png [Feat] Tag Management - Add support for setting tag based budgets (#15433) 2025-10-10 19:24:50 -07:00
tag_create.png [Docs] v1.66.0-stable fixes (#9953) 2025-04-12 16:57:25 -07:00
tag_invalid.png [Docs] v1.66.0-stable fixes (#9953) 2025-04-12 16:57:25 -07:00
tag_valid.png [Docs] v1.66.0-stable fixes (#9953) 2025-04-12 16:57:25 -07:00
team_logging1.png docs - team based logging 2025-07-05 17:55:18 -07:00
team_logging2.png docs - team based logging 2025-07-05 17:55:18 -07:00
team_logging3.png docs - team based logging 2025-07-05 17:55:18 -07:00
team_logging4.png docs - team based logging 2025-07-05 17:55:18 -07:00
team_member_permissions.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
test_key_budget.gif docs - setting team budgets on ui 2024-06-19 15:04:01 -07:00
test_python_server_1.png update playground tutorial 2023-08-25 18:34:46 -07:00
test_python_server_2.png update playground tutorial 2023-08-25 18:34:46 -07:00
throughput.png (docs) proxy 2023-11-24 17:09:38 -08:00
traceloop_dash.png fix: updates to traceloop docs 2023-10-18 19:37:12 +02:00
ui_3.gif (docs) update ui 2024-02-03 20:43:43 -08:00
ui_access_groups.png access groups docs 2026-02-14 18:00:22 -08:00
ui_add_cred_2.png docs ui credentials 2025-03-15 14:38:14 -07:00
ui_auto_prompt_caching.png [Docs] Auto prompt caching (#10044) 2025-04-15 22:29:47 -07:00
ui_clean_login.png docs(self_serve.md): cleanup images 2024-06-05 17:20:57 -07:00
ui_cloudzero.png docs 2025-12-20 12:36:32 -08:00
ui_cred_3.png docs ui credentials 2025-03-15 14:38:14 -07:00
ui_cred_4.png docs ui credentials 2025-03-15 14:38:14 -07:00
ui_cred_add.png docs ui credentials 2025-03-15 14:38:14 -07:00
ui_deleted_keys_table.png deleted keys and teams docs 2026-01-17 13:19:48 -08:00
ui_endpoint_activity.png png fixes 2026-01-17 10:28:41 -08:00
ui_granular_router_settings.png UI Keys Teams Router Settings docs 2026-01-24 16:23:46 -08:00
ui_invite_link.png docs - how to invite users to view usage, caching analytics 2024-07-16 17:56:06 -07:00
ui_invite_user.png docs - how to invite users to view usage, caching analytics 2024-07-16 17:56:06 -07:00
ui_key.png docs release notes 2024-12-27 21:41:21 -08:00
ui_link.png (docs) update proxy ui docs 2024-01-31 19:54:04 -08:00
ui_logout.png docs - custom logout url 2024-06-13 20:54:08 -07:00
ui_model_compare_cost_metrics.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_enter_prompt.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_guardrails_config.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_model_parameters.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_overview.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_responses.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_select_model.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_sync_across_models.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_tags_config.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_model_compare_vector_stores_config.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_playground_navigation.png Docs for Model Compare UI and Org Usage (#16928) 2025-11-21 16:45:55 -08:00
ui_request_logs.png docs Stop storing Spend Logs in DB 2025-03-15 11:09:24 -07:00
ui_request_logs_content.png ui show logs page 2025-03-15 11:21:38 -07:00
ui_self_serve_create_key.png docs(self_serve.md): cleanup images 2024-06-05 17:20:57 -07:00
ui_session_logs.png [Docs] UI Session Logs (#10334) 2025-04-26 08:26:23 -07:00
ui_spend_logs_settings.png UI spend logs setting docs 2026-01-31 15:16:59 -08:00
ui_store_model_in_db.png release note docs 2026-02-21 17:58:36 -08:00
ui_team_soft_budget_alerts.png UI team soft budget docs 2026-02-07 14:27:53 -08:00
ui_team_soft_budget_email_example.png UI team soft budget docs 2026-02-07 14:27:53 -08:00
ui_tools.png docs Tracing Tools 2026-02-02 19:48:00 -08:00
ui_usage.png docs - how to invite users to view usage, caching analytics 2024-07-16 17:56:06 -07:00
use_model_cred.png docs ui credentials 2025-03-15 14:38:14 -07:00
user_info_with_default_team.png (Tutorial) Onboard Users for AI Exploration (#11955) 2025-06-21 16:54:23 -07:00
wandb.png (docs) add wandb callback 2023-10-17 18:15:58 -07:00
webrtc_flow.png Improve doc for WebRTC 2026-03-12 22:41:39 +05:30