We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d4adb commit 3cdc32cCopy full SHA for 3cdc32c
src/routes/messages/responses-stream-translation.ts
@@ -38,7 +38,7 @@ const updateWhitespaceRunState = (
38
let count = previousCount
39
40
for (const char of chunk) {
41
- if (char === "\r" || char === "\n") {
+ if (char === "\r" || char === "\n" || char === "\t") {
42
count += 1
43
if (count > MAX_CONSECUTIVE_FUNCTION_CALL_WHITESPACE) {
44
return { nextCount: count, exceeded: true }
0 commit comments