Type Alias: AgentInstanceMetrics
type AgentInstanceMetrics = object;
Aggregated metrics for an agent instance across all model calls.
Properties
inputTokens
inputTokens: number;
Total input tokens consumed across all model calls.
modelCalls
modelCalls: number;
Total number of LLM calls made.
outputTokens
outputTokens: number;
Total output tokens produced across all model calls.
toolCalls
toolCalls: number;
Total number of tool calls made.