We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 932935c commit 91dbb02Copy full SHA for 91dbb02
1 file changed
cli/src/components/message-block.tsx
@@ -130,6 +130,12 @@ export const MessageBlock = ({
130
if (toolBlock.toolName === 'end_turn') {
131
return null
132
}
133
+ if (
134
+ 'includeToolCall' in toolBlock.input &&
135
+ toolBlock.input.includeToolCall === false
136
+ ) {
137
+ return null
138
+ }
139
140
const displayInfo = getToolDisplayInfo(toolBlock.toolName)
141
const isCollapsed = collapsedAgents.has(toolBlock.toolCallId)
0 commit comments