This commit is contained in:
team3
2026-06-14 17:57:40 +02:00
parent 77fd6156f6
commit 54adcdc50c
2 changed files with 2 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ export function useChat(performRequest) {
}
const text = input.value.trim()
if (!text) return null
stick.value = true // eigenes Senden = ans Ende; Hochscrollen während des Wartens setzt es wieder false
const current = ++run
messages.value.push({ role: 'user', content: text })
input.value = ''