craite/
lib.rs

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