Interface AgentExecutionMetadata

Metadata about agent execution

interface AgentExecutionMetadata {
    model: string;
    totalTokens?: number;
    cost?: number;
    duration?: number;
    stage?: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

model: string
totalTokens?: number
cost?: number
duration?: number
stage?: string