honcho-ai 0.2.1

Rust SDK for Honcho — AI agent memory and social cognition infrastructure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! HTTP client internals.
//!
//! These modules are internal implementation details. While they are currently
//! `pub` for technical reasons (see `lib.rs`), they carry **no stability
//! guarantees** — types, functions, and signatures may change in any release.
//! The public API surface is the [`crate::Honcho`], [`crate::Peer`],
//! [`crate::Session`], and related wrapper types, not these transport modules.

/// Low-level HTTP client wrapper around `reqwest`.
pub mod client;
/// Response decoding helpers.
pub mod decode;
/// API route path builders.
pub mod routes;
/// Server-Sent Events (SSE) stream parsing.
pub mod sse;