|
12 | 12 | LocalShellCall, |
13 | 13 | McpApprovalRequest, |
14 | 14 | ImageGenerationCall, |
| 15 | + McpApprovalResponse, |
15 | 16 | LocalShellCallAction, |
| 17 | + LocalShellCallOutput, |
16 | 18 | ) |
17 | 19 | from .response_output_text import ResponseOutputText |
18 | 20 | from .response_output_message import ResponseOutputMessage |
|
30 | 32 | from .response_function_shell_tool_call import ResponseFunctionShellToolCall |
31 | 33 | from .response_code_interpreter_tool_call import ResponseCodeInterpreterToolCall |
32 | 34 | from .response_apply_patch_tool_call_output import ResponseApplyPatchToolCallOutput |
| 35 | +from .response_custom_tool_call_output_item import ResponseCustomToolCallOutputItem |
| 36 | +from .response_computer_tool_call_output_item import ResponseComputerToolCallOutputItem |
| 37 | +from .response_function_tool_call_output_item import ResponseFunctionToolCallOutputItem |
33 | 38 | from .response_function_shell_tool_call_output import ResponseFunctionShellToolCallOutput |
34 | 39 |
|
35 | 40 | __all__ = ["ParsedResponse", "ParsedResponseOutputMessage", "ParsedResponseOutputText"] |
@@ -72,22 +77,27 @@ class ParsedResponseFunctionToolCall(ResponseFunctionToolCall): |
72 | 77 | ResponseFileSearchToolCall, |
73 | 78 | ResponseFunctionWebSearch, |
74 | 79 | ResponseComputerToolCall, |
| 80 | + ResponseComputerToolCallOutputItem, |
75 | 81 | ResponseToolSearchCall, |
76 | 82 | ResponseToolSearchOutputItem, |
77 | 83 | ResponseReasoningItem, |
78 | 84 | McpCall, |
79 | 85 | McpApprovalRequest, |
| 86 | + McpApprovalResponse, |
80 | 87 | ImageGenerationCall, |
81 | 88 | LocalShellCall, |
| 89 | + LocalShellCallOutput, |
82 | 90 | LocalShellCallAction, |
83 | 91 | McpListTools, |
84 | 92 | ResponseCodeInterpreterToolCall, |
85 | | - ResponseCustomToolCall, |
86 | 93 | ResponseCompactionItem, |
87 | 94 | ResponseFunctionShellToolCall, |
88 | 95 | ResponseFunctionShellToolCallOutput, |
89 | 96 | ResponseApplyPatchToolCall, |
90 | 97 | ResponseApplyPatchToolCallOutput, |
| 98 | + ResponseFunctionToolCallOutputItem, |
| 99 | + ResponseCustomToolCall, |
| 100 | + ResponseCustomToolCallOutputItem, |
91 | 101 | ], |
92 | 102 | PropertyInfo(discriminator="type"), |
93 | 103 | ] |
|
0 commit comments