docs(cli): add Vercel provider to setup and doctor

This commit is contained in:
William Valentin
2026-02-15 10:53:29 -08:00
parent 87e942b4c5
commit a624f5efb5
5 changed files with 50 additions and 1 deletions
+2 -1
View File
@@ -280,11 +280,12 @@ const checkModelConnectivity: Check = async (ctx) => {
}
// Providers with API-key style auth (no auth store integration yet)
const needsKey = ['gemini', 'openrouter', 'xai', 'github'];
const needsKey = ['gemini', 'openrouter', 'vercel', 'xai', 'github'];
if (needsKey.includes(provider)) {
const envVarMap: Record<string, string> = {
gemini: 'GEMINI_API_KEY',
openrouter: 'OPENROUTER_API_KEY',
vercel: 'AI_GATEWAY_API_KEY',
xai: 'XAI_API_KEY',
github: 'GITHUB_TOKEN',
};