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 035f4a5 commit 92329d2Copy full SHA for 92329d2
1 file changed
src/components/Chat/Chat.tsx
@@ -133,8 +133,8 @@ export function Chat({
133
if (chunk.type === 'content') {
134
assistantMessage.content += chunk.content;
135
setStreamingMessage({ ...assistantMessage });
136
- } else if (
137
// v8 ignore start
+ } else if (
138
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
139
chunk.type === 'tool_calls'
140
// v8 ignore stop
@@ -244,8 +244,8 @@ export function Chat({
244
245
246
247
248
249
250
251
0 commit comments