feat(llm): last test should be passing now

This commit is contained in:
perf3ct 2025-06-08 21:38:57 +00:00
parent 224cae6db2
commit 93cf868dcf
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -326,6 +326,15 @@ export async function processProviderStream(
chunk, chunk,
chunkCount chunkCount
); );
} else if (toolCalls.length > 0) {
// Send callback for tool-only chunks (no content but has tool calls)
await StreamProcessor.sendChunkToCallback(
streamCallback,
'',
!!chunk.done,
chunk,
chunkCount
);
} }
} }