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 717edda commit 396b364Copy full SHA for 396b364
1 file changed
src/CodexEventHandler.ts
@@ -202,19 +202,14 @@ export class CodexEventHandler {
202
switch (event.item.type) {
203
case "mcpToolCall":
204
case "fileChange":
205
+ case "dynamicToolCall":
206
return {
207
sessionUpdate: "tool_call_update",
208
toolCallId: event.item.id,
209
status: event.item.status === "completed" ? "completed" : "failed"
210
}
211
case "commandExecution":
212
return this.completeCommandExecutionEvent(event.item);
- case "dynamicToolCall":
213
- return {
214
- sessionUpdate: "tool_call_update",
215
- toolCallId: event.item.id,
216
- status: event.item.status === "completed" ? "completed" : "failed"
217
- }
218
case "reasoning":
219
const summary = event.item.summary[0];
220
if (!summary) return null;
0 commit comments