Skip to main content

Crate agentkernel_sdk

Crate agentkernel_sdk 

Source
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§

AgentKernel
Client for the agentkernel HTTP API.
AgentKernelBuilder
Builder for constructing an AgentKernel client.
RunOptions
Options for running a command.
RunOutput
Output from a command execution.
SandboxHandle
Handle to a sandbox within a with_sandbox closure.
SandboxInfo
Information about a sandbox.
StreamEvent
SSE stream event.

Enums§

Error
Errors returned by the agentkernel SDK.
SecurityProfile
Security profile for sandbox execution.

Type Aliases§

Result