symposium_acp_agent/lib.rs
1//! Symposium ACP Agent library
2//!
3//! This crate provides the Symposium proxy chain orchestration and the VS Code
4//! Language Model Provider backend.
5
6pub mod config_agent;
7pub mod recommendations;
8pub mod registry;
9pub mod symposium;
10pub mod user_config;
11pub mod vscodelm;
12
13pub use config_agent::ConfigAgent;