ToolCallStartPayload
Payload for “tool_call_start” events — the LLM has requested a tool call.
Class Diagram
Section titled “Class Diagram”---
title: ToolCallStartPayload
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class ToolCallStartPayload {
+string name
+string arguments
}
Yaml Example
Section titled “Yaml Example”name: get_weatherarguments: '{"city": "Paris"}'Properties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| name | string | The name of the tool being called |
| arguments | string | The serialized JSON arguments for the tool call |