vtcode_core/core/agent/
mod.rs

1//! Agent system for intelligent conversation management
2
3pub mod chat;
4pub mod compaction; // Legacy - will be replaced by new modules
5pub mod config;
6pub mod core;
7pub mod engine;
8pub mod examples;
9pub mod intelligence;
10pub mod performance;
11pub mod semantic;
12pub mod snapshots;
13pub mod stats;
14pub mod types;
15
16// Re-export main types for convenience
17pub use config::CompactionConfig;
18pub use engine::CompactionEngine;
19pub use semantic::SemanticAnalyzer;
20pub use types::*;