diff --git a/ui/components/SettingsDialog.tsx b/ui/components/SettingsDialog.tsx index 788469b..174f996 100644 --- a/ui/components/SettingsDialog.tsx +++ b/ui/components/SettingsDialog.tsx @@ -57,6 +57,7 @@ interface SettingsType { openaiApiKey: string; groqApiKey: string; anthropicApiKey: string; + geminiApiKey: string; ollamaApiUrl: string; } @@ -456,6 +457,22 @@ const SettingsDialog = ({ } /> +
+ Gemini API Key +
+ + setConfig({ + ...config, + geminiApiKey: e.target.value, + }) + } + /> +