@microsoft/opentelemetry
    Preparing search index...

    Interface ToolCallResponsePart

    Result of a tool call.

    interface ToolCallResponsePart {
        id?: string;
        response?: unknown;
        type: "tool_call_response";
    }
    Index
    id?: string

    Identifier of the originating tool call.

    response?: unknown

    The value returned by the tool.

    type: "tool_call_response"

    Discriminator identifying this as a tool-call response part.