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

    Type Alias AgentInstanceHistoryItemMetrics

    Per-call token and latency metrics for an ASSISTANT history item.

    type AgentInstanceHistoryItemMetrics = {
        durationMs: number | null;
        inputTokens: number | null;
        outputTokens: number | null;
    }
    Index
    durationMs: number | null

    Wall-clock duration of the LLM call in milliseconds. Null when not provided.

    inputTokens: number | null

    Input tokens consumed by this LLM call. Null when not provided.

    outputTokens: number | null

    Output tokens produced by this LLM call. Null when not provided.