Skip to content

Commit 3d2f46e

Browse files
committed
minor
1 parent c80561f commit 3d2f46e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

libs/remix-ai-core/src/helpers/streamHandler.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -395,14 +395,7 @@ export const HandleOllamaResponse = async (aiResponse: IAIStreamResponse | any,
395395

396396
// Handle tool calls in Ollama format
397397
if (parsed.message?.tool_calls && tool_callback) {
398-
// Show tool execution status with spinner
399-
reasoning_cb?.('__TOOL_EXECUTING__');
400-
401398
const response = await tool_callback(parsed.message.tool_calls)
402-
403-
// Clear status - will be replaced by streaming content
404-
reasoning_cb?.('__TOOL_DONE__');
405-
406399
cb("\n\n");
407400
HandleOllamaResponse(response, cb, done_cb, reasoning_cb)
408401
return;

0 commit comments

Comments
 (0)