@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias AgentInstanceToolCall

    A tool call associated with a history item. Used in both ASSISTANT and TOOL_RESULT items. ASSISTANT items carry arguments; TOOL_RESULT items carry arguments as null.

    type AgentInstanceToolCall = {
        arguments: { [key: string]: unknown } | null;
        elementId: string | null;
        toolCallId: string;
        toolName: string;
    }
    Index

    Properties

    arguments: { [key: string]: unknown } | null

    The tool call arguments as provided by the LLM. Null on TOOL_RESULT items.

    elementId: string | null

    The BPMN element ID handling this tool.

    toolCallId: string

    The LLM-assigned tool call ID. Correlates ASSISTANT items to their matching TOOL_RESULT items.

    toolName: string

    The LLM-visible tool name.