pi_agent_rust 0.1.13

High-performance AI coding agent CLI - Rust port of Pi Agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(test)]
mod tests {
    use asupersync::http::client::HttpClient;
    use asupersync::http::Method;
    use asupersync::http::Url;

    #[test]
    fn test_client_api() {
        let client = HttpClient::new();
        let url: Url = "http://example.com".parse().unwrap();
        let _req = client.request(Method::Post, url); 
    }
}