swarms_rs/lib.rs
1//! Swarms-rs is a Rust implementation of the Swarms framework for building multi-agent systems.
2//! This crate provides core abstractions and implementations for agents, workflows and swarms.
3pub mod agent;
4pub mod llm;
5pub mod logging;
6pub mod prompts;
7pub mod structs;
8pub use swarms_macro;
9
10// Re-export commonly used traits and types
11pub use structs::agent::Agent;