feat(models): add Vercel AI Gateway provider

This commit is contained in:
William Valentin
2026-02-15 10:52:03 -08:00
parent a8307012f5
commit 87e942b4c5
4 changed files with 38 additions and 1 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ const serverSchema = z.object({
});
/** All supported model provider identifiers. Used by the config schema and TUI autocompletion. */
export const MODEL_PROVIDERS = ['anthropic', 'openai', 'gemini', 'ollama', 'llamacpp', 'openrouter', 'bedrock', 'github', 'zhipuai', 'xai', 'synthetic'] as const;
export const MODEL_PROVIDERS = ['anthropic', 'openai', 'gemini', 'ollama', 'llamacpp', 'openrouter', 'vercel', 'bedrock', 'github', 'zhipuai', 'xai', 'synthetic'] as const;
export type ModelProvider = (typeof MODEL_PROVIDERS)[number];