From e4f1111cdd2239aad0898fc5de21a1169ff512e3 Mon Sep 17 00:00:00 2001 From: Ayush8923 <80516839+Ayush8923@users.noreply.github.com> Date: Mon, 6 Jul 2026 12:44:14 +0530 Subject: [PATCH] fix(credentials): added the antropic credentials --- app/lib/types/credentials.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/app/lib/types/credentials.ts b/app/lib/types/credentials.ts index 54a9f03..b5fae9e 100644 --- a/app/lib/types/credentials.ts +++ b/app/lib/types/credentials.ts @@ -73,6 +73,20 @@ export const PROVIDERS: ProviderDef[] = [ }, ], }, + { + id: "anthropic", + name: "Anthropic", + description: "Connect your Anthropic account to use Claude models", + credentialKey: "anthropic", + fields: [ + { + key: "api_key", + label: "API Key", + placeholder: "sk-ant-xxxxx", + type: "password", + }, + ], + }, { id: "elevenlabs", name: "ElevenLabs",