claude-agents-sdk 0.1.2

Rust SDK for building agents with Claude Code CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Internal implementation details for the Claude Agents SDK.
//!
//! This module contains internal types and functions that are not part of the public API.
//! While exposed for advanced use cases, the API here may change between versions.

pub mod client;
pub mod message_parser;
pub mod query;
pub mod transport;

pub use client::InternalClient;
pub use message_parser::parse_message;
pub use query::Query;
pub use transport::{SubprocessTransport, Transport};