A tool definition from the request's tools array, normalised across formats.
tools
interface ToolDef { description?: string; name: string; parameters?: unknown;}
readonly description?: string
A description of what the tool does.
readonly name: string
The tool function name.
readonly parameters?: unknown
JSON Schema for the tool's parameters, passed through as-is.
A tool definition from the request's
toolsarray, normalised across formats.