Skip to content

Commit

Permalink
Removed liniting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
aakash-a-dev committed Nov 22, 2024
1 parent 83dacd4 commit fca611f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/ai/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function getModel(): Promise<LanguageModel> {
if (!config.geminiKey) {
throw new Error('Gemini API key is not set');
}
const google = createGoogleGenerativeAI({apiKey: config.geminiKey})
const google = createGoogleGenerativeAI({ apiKey: config.geminiKey });
return google(model) as LanguageModel;

case 'Xai':
Expand Down

0 comments on commit fca611f

Please sign in to comment.