send()

in src/app/db-panel/db-panel.component.ts [25:44]


  send(prompt: string) {
    if (this.waiting) {
      this.log.warn("Unable to send, still waiting for response." +
        " Reload page to restart."
      );
      // Prevent form submission.
      return false;
    }
    if (!prompt) {
      this.log.warn("Prompt is empty. Nothing to send.");
      // Prevent form submission.
      return false;
    }

    // Async call.
    this.generateResponse(prompt);

    // Prevent form submission.
    return false;
  }