Skip to content
Entangle UI v0.13.0

ChatToolCallData

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:69

Represents a single tool/function invocation within a message.

optional durationMs?: number

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:83

Duration of execution in milliseconds


optional error?: string

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:81

Error message if status is ‘error’


id: string

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:71

Unique identifier


optional input?: Record<string, unknown>

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:77

Input parameters passed to the tool


name: string

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:73

Tool/function name (e.g., “create_nodes”, “modify_material”)


optional output?: Record<string, unknown>

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:79

Result returned by the tool


status: ChatToolCallStatus

Defined in: src/components/editor/ChatPanel/ChatPanel.types.ts:75

Current execution status