configure()

in src/app/model-config/model-config.component.ts [54:60]


  configure() {
    const modelVersion = this.modelVersion().nativeElement.value;
    const apiKey = this.apiKey().nativeElement.value
    if (modelVersion && apiKey) {
      this.gemini.configure(modelVersion, apiKey);
    }
  }