symposium-acp-proxy 0.2.0

Symposium ACP proxy - orchestrates component chains to enrich agent capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Symposium ACP Proxy - Main entry point

use sacp::Component;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    symposium_acp_proxy::Symposium::new()
        .serve(sacp_tokio::Stdio::new())
        .await?;
    Ok(())
}