Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,16 @@ def _get_attributes_from_response_output(
... # TODO
elif item.type == "tool_search_output":
... # TODO
elif item.type == "function_call_output":
... # TODO
elif item.type == "computer_call_output":
... # TODO
elif item.type == "local_shell_call_output":
... # TODO
elif item.type == "mcp_approval_response":
... # TODO
elif item.type == "custom_tool_call_output":
... # TODO
elif TYPE_CHECKING:
assert_never(item)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,21 @@ def _get_attributes_from_response_output_item(
elif obj.type == "tool_search_output":
# TODO: Handle tool search output response
pass
elif obj.type == "function_call_output":
# TODO: Handle function call output
pass
elif obj.type == "computer_call_output":
# TODO: Handle computer call output
pass
elif obj.type == "local_shell_call_output":
# TODO: Handle local shell call output
pass
elif obj.type == "mcp_approval_response":
# TODO: Handle mcp approval response
pass
elif obj.type == "custom_tool_call_output":
# TODO: Handle custom tool call output
pass
elif TYPE_CHECKING:
assert_never(obj.type)

Expand Down
Loading