Merge branch 'main' into pr1573

This commit is contained in:
Xi Yan 2025-03-13 11:05:04 -07:00
commit 78ec3d98f6
95 changed files with 14699 additions and 1156 deletions

View file

@ -117,13 +117,11 @@ class ToolResponseMessage(BaseModel):
:param role: Must be "tool" to identify this as a tool response
:param call_id: Unique identifier for the tool call this response is for
:param tool_name: Name of the tool that was called
:param content: The response content from the tool
"""
role: Literal["tool"] = "tool"
call_id: str
tool_name: Union[BuiltinTool, str]
content: InterleavedContent