agent-infra-sdk 0.1.0

Gateway-backed Rust SDK for Agent Infra APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Agent Infra SDK

Gateway-backed Rust SDK for Agent Infra APIs. Applications configure one
Gateway URL and one credential provider, then use typed clients for context,
workspace, trace, runtime identity, model, deployment, and evaluation APIs.

```rust,no_run
use agent_infra_sdk::InfraClient;

let client = InfraClient::new("http://127.0.0.1:5200")?;
let context = client.context();
# Ok::<(), agent_infra_sdk::InfraClientError>(())
```

Feature flags can be used to include only the required typed clients.