in src/app/db-panel/db-panel.component.ts [46:55]
async generateResponse(prompt: string) {
this.waiting = true;
try {
await this.gemini.generateResponse(prompt);
} catch (e) {
this.log.catch(e);
} finally {
this.waiting = false;
}
}