From 471eec09c348528d0fc26238a722e16cbc60504b Mon Sep 17 00:00:00 2001 From: joshualipman123 Date: Wed, 30 Jul 2025 14:19:33 -0700 Subject: [PATCH] Add site url and app name env var instructions to docs --- docs/my-website/docs/providers/vercel_ai_gateway.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/my-website/docs/providers/vercel_ai_gateway.md b/docs/my-website/docs/providers/vercel_ai_gateway.md index 9a122edfa53..91f0a18ea1c 100644 --- a/docs/my-website/docs/providers/vercel_ai_gateway.md +++ b/docs/my-website/docs/providers/vercel_ai_gateway.md @@ -28,6 +28,14 @@ os.environ["VERCEL_AI_GATEWAY_API_KEY"] = "" # your Vercel AI Gateway API key os.environ["VERCEL_OIDC_TOKEN"] = "" # your Vercel OIDC token for authentication ``` +## Optional Variables + +```python showLineNumbers title="Environment Variables" +os.environ["VERCEL_SITE_URL"] = "" # your site url +# OR +os.environ["VERCEL_APP_NAME"] = "" # your app name +``` + Note: see the [Vercel AI Gateway docs](https://vercel.com/docs/ai-gateway#using-the-ai-gateway-with-an-api-key) for instructions on obtaining a key. ## Usage - LiteLLM Python SDK