refac: voice input styling

This commit is contained in:
Timothy J. Baek
2024-10-26 00:21:46 -07:00
parent 1cd036e768
commit 0cf8f58efe
8 changed files with 317 additions and 135 deletions

View File

@@ -361,8 +361,8 @@
document.getElementById('chat-input')?.focus();
}}
on:confirm={async (e) => {
const response = e.detail;
prompt = `${prompt}${response} `;
const { text, filename } = e.detail;
prompt = `${prompt}${text} `;
recording = false;