swarms-rs 0.2.0

The Enterprise-Grade Production-Ready Multi-Agent Orchestration Framework in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Swarms-rs is a Rust implementation of the Swarms framework for building multi-agent systems.
//! This crate provides core abstractions and implementations for agents, workflows and swarms.
pub mod agent;
pub mod llm;
pub mod logging;
pub mod prompts;
pub mod structs;
pub use swarms_macro;

// Re-export commonly used traits and types
pub use structs::agent::Agent;