From 4a8629ce8ba7b115f1aac622bd4e6f9d91b7fb62 Mon Sep 17 00:00:00 2001 From: ryan-crabbe <128659760+ryan-crabbe@users.noreply.github.com> Date: Thu, 11 Dec 2025 17:57:56 -0800 Subject: [PATCH] updated docs links for mistral and anthropic (#17852) --- .../proxy/pass_through_endpoints/llm_passthrough_endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/pass_through_endpoints/llm_passthrough_endpoints.py b/litellm/proxy/pass_through_endpoints/llm_passthrough_endpoints.py index 7afb6868c73..84550092d2e 100644 --- a/litellm/proxy/pass_through_endpoints/llm_passthrough_endpoints.py +++ b/litellm/proxy/pass_through_endpoints/llm_passthrough_endpoints.py @@ -382,7 +382,7 @@ async def mistral_proxy_route( user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth), ): """ - [Docs](https://docs.litellm.ai/docs/anthropic_completion) + [Docs](https://docs.litellm.ai/docs/pass_through/mistral) """ base_target_url = os.getenv("MISTRAL_API_BASE") or "https://api.mistral.ai" encoded_endpoint = httpx.URL(endpoint).path @@ -578,7 +578,7 @@ async def anthropic_proxy_route( user_api_key_dict: UserAPIKeyAuth = Depends(user_api_key_auth), ): """ - [Docs](https://docs.litellm.ai/docs/anthropic_completion) + [Docs](https://docs.litellm.ai/docs/pass_through/anthropic_completion) """ base_target_url = os.getenv("ANTHROPIC_API_BASE") or "https://api.anthropic.com" encoded_endpoint = httpx.URL(endpoint).path