From 64ec11df8b014e6b86e775cef1d7c58df874d4e6 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Tue, 31 Mar 2026 16:32:17 -0700 Subject: [PATCH] docs: fix unused import, clarify Claude Code JWT env var --- docs/my-website/docs/proxy/jwt_key_mapping.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/my-website/docs/proxy/jwt_key_mapping.md b/docs/my-website/docs/proxy/jwt_key_mapping.md index 9e54d5f177..3e8672ed05 100644 --- a/docs/my-website/docs/proxy/jwt_key_mapping.md +++ b/docs/my-website/docs/proxy/jwt_key_mapping.md @@ -1,6 +1,3 @@ -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; - # JWT → Virtual Key Mapping :::info Enterprise @@ -188,7 +185,10 @@ curl -X POST 'http://0.0.0.0:4000/jwt_client/new' \ Set the proxy as the API base in your team's Claude Code config: ```bash -export ANTHROPIC_API_KEY="" +# Point Claude Code at the LiteLLM proxy instead of Anthropic directly. +# ANTHROPIC_API_KEY here is the bearer token sent to the proxy — set it to +# the user's SSO/OIDC JWT token (obtained from your IdP at login). +export ANTHROPIC_API_KEY="" export ANTHROPIC_BASE_URL="http://your-litellm-proxy:4000" ```