AgentSnapshot constructor

const AgentSnapshot({
  1. required String agentId,
  2. required String statePath,
  3. required int tokens,
  4. required int contextTokens,
})

Creates a snapshot record.

Implementation

const AgentSnapshot({
  required this.agentId,
  required this.statePath,
  required this.tokens,
  required this.contextTokens,
});