Expand description
§EdgeQuake Rust SDK
A production-ready Rust client for the EdgeQuake RAG API.
§Quick start
use edgequake_sdk::EdgeQuakeClient;
#[tokio::main]
async fn main() -> edgequake_sdk::Result<()> {
let client = EdgeQuakeClient::builder()
.base_url("http://localhost:8080")
.api_key("my-api-key")
.build()?;
let health = client.health().check().await?;
println!("status: {}", health.status);
Ok(())
}Re-exports§
pub use client::ClientBuilder;pub use client::EdgeQuakeClient;pub use config::Auth;pub use config::ClientConfig;pub use config::TenantContext;pub use error::Error;pub use error::Result;