We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83dacd4 commit fca611fCopy full SHA for fca611f
packages/api/ai/config.mts
@@ -35,7 +35,7 @@ export async function getModel(): Promise<LanguageModel> {
35
if (!config.geminiKey) {
36
throw new Error('Gemini API key is not set');
37
}
38
- const google = createGoogleGenerativeAI({apiKey: config.geminiKey})
+ const google = createGoogleGenerativeAI({ apiKey: config.geminiKey });
39
return google(model) as LanguageModel;
40
41
case 'Xai':
0 commit comments