Expand description
§agentkernel-sdk
Rust SDK for agentkernel — run AI coding agents in secure, isolated microVMs.
§Quick Start
use agentkernel_sdk::AgentKernel;
let client = AgentKernel::builder().build()?;
let output = client.run(&["echo", "hello"], None).await?;
println!("{}", output.output);Structs§
- Agent
Kernel - Client for the agentkernel HTTP API.
- Agent
Kernel Builder - Builder for constructing an
AgentKernelclient. - RunOptions
- Options for running a command.
- RunOutput
- Output from a command execution.
- Sandbox
Handle - Handle to a sandbox within a
with_sandboxclosure. - Sandbox
Info - Information about a sandbox.
- Stream
Event - SSE stream event.
Enums§
- Error
- Errors returned by the agentkernel SDK.
- Security
Profile - Security profile for sandbox execution.