Package:
@hexos/commonSummary of a completed tool execution, including timing information.
Returned as part of RuntimeOutput after a non-streaming conversation turn.
The duration field measures execution time in milliseconds, useful for performance monitoring.
Related: ToolCall is the in-flight representation, ToolDefinition defines the tool.
interface ToolCallResult {
toolName: string;
args: unknown;
result: unknown;
duration: number;
}