1 2 3 4 5 6 7 8 9 10 11 12
//! CRAITE Rust SDK for Web3 AI Development pub mod client; pub mod mcp; pub use client::{CraiteClient, CraiteConfig}; pub use mcp::MCPTool; /// Create a new CRAITE client pub fn create_client(api_key: &str) -> CraiteClient { CraiteClient::new(api_key) }