Successful LLM call

This commit is contained in:
aodulov
2025-10-10 15:35:37 +03:00
parent b8c42c4604
commit 2fdc83091f
3 changed files with 9 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ export class LLMService {
constructor(apiKey: string) {
this.genAI = new GoogleGenerativeAI(apiKey);
this.model = this.genAI.getGenerativeModel({ model: "gemini-pro" });
this.model = this.genAI.getGenerativeModel({ model: "gemini-2.5-flash-lite" });
}
async analyzeDesires(desireSets: DesireSet[]): Promise<Record<string, string>> {