From d5e799fe2cf053aa813c3cff1e850879fb4b498c Mon Sep 17 00:00:00 2001 From: Elisabeth Rulke <221610566+erulkey@users.noreply.github.com> Date: Thu, 3 Sep 2026 13:32:11 -0400 Subject: [PATCH] docs: add Vercel AI Gateway provider guide Add Vercel AI Gateway as an LLM provider option, mirroring the existing provider pages. New guide, an overview card, and a nav entry after OpenRouter. Docs only. --- docs/docs.json | 1 + docs/llm-providers/overview.mdx | 3 ++ docs/llm-providers/vercel-ai-gateway.mdx | 39 ++++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 docs/llm-providers/vercel-ai-gateway.mdx diff --git a/docs/docs.json b/docs/docs.json index e51d98af..665874f8 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -36,6 +36,7 @@ "llm-providers/openai", "llm-providers/anthropic", "llm-providers/openrouter", + "llm-providers/vercel-ai-gateway", "llm-providers/vertex", "llm-providers/bedrock", "llm-providers/azure", diff --git a/docs/llm-providers/overview.mdx b/docs/llm-providers/overview.mdx index 2b5070f3..e10327e6 100644 --- a/docs/llm-providers/overview.mdx +++ b/docs/llm-providers/overview.mdx @@ -46,6 +46,9 @@ See the [Local Models guide](/llm-providers/local) for setup instructions and re Access 100+ models through a single API. + + Access models from multiple providers through one endpoint. + Gemini 3 models via Google Cloud. diff --git a/docs/llm-providers/vercel-ai-gateway.mdx b/docs/llm-providers/vercel-ai-gateway.mdx new file mode 100644 index 00000000..54d3a362 --- /dev/null +++ b/docs/llm-providers/vercel-ai-gateway.mdx @@ -0,0 +1,39 @@ +--- +title: "Vercel AI Gateway" +description: "Configure Strix with models via Vercel AI Gateway" +--- + +[Vercel AI Gateway](https://vercel.com/docs/ai-gateway) provides an OpenAI-compatible API for models from multiple providers. + +## Setup + +Create an [AI Gateway API key](https://vercel.com/docs/ai-gateway/authentication-and-byok), then configure Strix: + +```bash +export STRIX_LLM="openai/anthropic/claude-opus-5" +export LLM_API_KEY="your-ai-gateway-api-key" +export LLM_API_BASE="https://ai-gateway.vercel.sh/v1" +``` + +The first `openai/` segment tells Strix to use its OpenAI-compatible client. The remaining value is the [AI Gateway model ID](https://vercel.com/docs/ai-gateway/models-and-providers). + +## Available Models + +Use any language model returned by the AI Gateway models endpoint: + +```text +https://ai-gateway.vercel.sh/v1/models +``` + +Prefix its model ID with `openai/` when setting `STRIX_LLM`. For example, the Gateway model ID `anthropic/claude-opus-5` becomes `openai/anthropic/claude-opus-5` in Strix. + +## Get API Key + +1. Open the [AI Gateway API key settings](https://vercel.com/docs/ai-gateway/authentication-and-byok) +2. Create an API key +3. Set the key as `LLM_API_KEY` + +## Benefits + +- Access models from multiple providers through one endpoint +- Track Gateway usage and cost in Vercel