server: do not remove whitespace at the start of a completion chunk (#7524)

This commit is contained in:
mgroeber9110 2024-05-28 06:55:51 +02:00 committed by GitHub
parent c41767154e
commit 9335b969e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -594,7 +594,7 @@
message = html`<${Probabilities} data=${data} />`
} else {
const text = isArrayMessage ?
data.map(msg => msg.content).join('').replace(/^\s+/, '') :
data.map(msg => msg.content).join('') :
data;
message = isCompletionMode ?
text :