configure()

in src/app/gemini.service.ts [49:52]


  configure(modelVersion: string, apiKey: string) {
    const genAI = new GoogleGenerativeAI(apiKey);
    this.model = genAI.getGenerativeModel({ model: modelVersion });
  }