agent-infra-sdk 0.1.0

Gateway-backed Rust SDK for Agent Infra APIs
Documentation

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.

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.