starflask 0.1.1

Rust SDK for the Starflask AI agent platform
Documentation
//! Rust SDK for the Starflask AI agent platform.
//!
//! ```rust,no_run
//! use starflask::Starflask;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), starflask::Error> {
//!     let sf = Starflask::new("sk_...", None)?;
//!     let agents = sf.list_agents().await?;
//!     let session = sf.query(&agents[0].id, "Hello!").await?;
//!     println!("{:?}", session.result);
//!     Ok(())
//! }
//! ```

mod client;
mod error;
mod models;

pub use client::{PollConfig, Starflask};
pub use error::Error;
pub use models::*;