orkes.shared.ToolCallSchema#

pydantic model orkes.shared.ToolCallSchema[source]#

Represents a tool call requested by the LLM.

This schema defines the structure of a tool call, which includes the name of the function to be called and the arguments to pass to it.

function_name#

The name of the function to be called.

Type:

str

arguments#

A dictionary of arguments for the function.

Type:

Dict[str, Any]

Fields:
  • arguments (Dict[str, Any])

  • function_name (str)

field arguments: Dict[str, Any] [Required]#
field function_name: str [Required]#