agtrace-engine 0.7.1

Internal core engine for the agtrace CLI. Not intended for direct use.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-export session types from agtrace-types.
//!
//! All session-related types have been moved to agtrace-types to improve
//! architecture clarity and reduce dependency weight for consumers that
//! only need data structures without assembly logic.

pub use agtrace_types::{
    AgentSession, AgentStep, AgentTurn, MessageBlock, ReasoningBlock, SessionStats, StepStatus,
    ToolCallBlock, ToolExecution, ToolResultBlock, TurnMetrics, TurnStats, UserMessage,
};