jules-sdk 0.1.1

Facade crate for Google's Jules SDK
1
2
3
4
5
6
7
8
9
10
11
12
13
use jules_sdk::Config;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let config = Config::builder().api_key("test_key").timeout(30).build()?;

    println!(
        "Successfully created config with API key: {} and timeout: {:?}",
        config.api_key(),
        config.timeout()
    );

    Ok(())
}