Installation
Quick Start
What’s Next?
- Configuration - Learn how to configure and instantiate the SDK
- Send Method - Complete guide to the
send()method - Stream Method - Learn how to stream responses
- Tools - Detailed guide to function calling
Integrate the Rust SDK in your application.
cargo install edgee
use edgee::Edgee;
let client = Edgee::with_api_key("your-api-key");
let response = client.send("gpt-4o", "What is the capital of France?").await.unwrap();
println!("{}", response.text().unwrap_or(""));
// "The capital of France is Paris."
send() methodWas this page helpful?