From 1c42f0e866ebdad3b7d5254d9727c786877ee816 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 4 Apr 2026 07:52:22 +0100 Subject: [PATCH] docs: refresh auth storage reference examples --- docs/gateway/configuration-reference.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/gateway/configuration-reference.md b/docs/gateway/configuration-reference.md index 38584371d1b..2925b985bfd 100644 --- a/docs/gateway/configuration-reference.md +++ b/docs/gateway/configuration-reference.md @@ -3041,11 +3041,13 @@ Notes: { auth: { profiles: { - "anthropic:me@example.com": { provider: "anthropic", mode: "oauth", email: "me@example.com" }, + "anthropic:default": { provider: "anthropic", mode: "api_key" }, "anthropic:work": { provider: "anthropic", mode: "api_key" }, + "openai-codex:personal": { provider: "openai-codex", mode: "oauth" }, }, order: { - anthropic: ["anthropic:me@example.com", "anthropic:work"], + anthropic: ["anthropic:default", "anthropic:work"], + "openai-codex": ["openai-codex:personal"], }, }, }