Skip to content

Commit b69ac5b

Browse files
authored
fix mapping for claude (#224)
* add ai gateway support for claude * address feedback * fix mapping
1 parent 171bb7a commit b69ac5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/api/api-keys/check/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ type Provider = 'openai' | 'gemini' | 'cursor' | 'anthropic' | 'aigateway'
55

66
// Map agents to their required providers
77
const AGENT_PROVIDER_MAP: Record<string, Provider | null> = {
8-
claude: 'anthropic',
8+
claude: 'aigateway', // Claude uses Vercel AI Gateway
99
codex: 'aigateway', // Codex uses Vercel AI Gateway
1010
copilot: null, // Copilot uses user's GitHub token from their account
1111
cursor: 'cursor',

0 commit comments

Comments
 (0)