Loading...
Start with quickstarts, then learn how decision agents share context, call your systems, and respect policy. Written for builders and technical program managers alike.
Complete REST & gRPC endpoint documentation for seamless integration.
Powerful command-line utilities for managing deployments and monitoring.
Longer reads on how we coordinate agents and keep decisions auditable.
Initialize the Veraius SDK and deploy your first orchestrated agent pipeline.
use veraius_sdk::prelude::*;
#[tokio::main]
async fn main() -> Result<()> {
let client = VeraiusClient::builder()
.api_key("vrs_live_...")
.region(Region::EU)
.build()?;
let pipeline = client
.orchestrate()
.with_model("veraius-4")
.with_governance(GovernanceLevel::Strict)
.execute()
.await?;
println!("Pipeline: {:?}", pipeline.status());
Ok(())
}