1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; /// Result of `swarms get`. /// /// Wire: `{"type":"notification","swarm":{...GetSwarmResponse...}}`. #[derive(Serialize, Deserialize, Debug, Clone)] pub struct Swarm { pub swarm: objectiveai_sdk::swarm::response::GetSwarmResponse, }