Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions modules/playground/components/ai-chat-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ export default function AIChatPanel({
if (rawParts.length > 0) {
const toolParts = rawParts.filter((p) => typeof (p as Record<string,unknown>).type === "string" && ((p as Record<string,unknown>).type as string).startsWith("tool-"));
if (toolParts.length > 0) {
console.log("[AIChatPanel] Tool parts in last message:", JSON.stringify(toolParts, null, 2));
}
}

Expand Down Expand Up @@ -299,7 +298,6 @@ export default function AIChatPanel({

// Mark as processed BEFORE calling addToolResult to prevent re-execution on re-render
processedToolCallIds.current.add(toolCallId);
console.log(`[AIChatPanel] Executed tool ${toolName} (${toolCallId}), result:`, result.slice(0, 100));

addToolResult({
toolCallId,
Expand Down