honcho-ai 0.1.4

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
17
18
//! Blocking facade over the async Honcho SDK.
//!
//! Enable with the `blocking` feature flag. Uses an internal tokio runtime.

mod client;
mod conclusion;
mod iter;
mod peer;
mod runtime;
mod session;

pub use client::Honcho;
pub use conclusion::{Conclusion, ConclusionScope};
pub use peer::{ChatStreamIterator, Peer};
pub use session::{
    BlockingSessionContextBuilder, BlockingSessionRepresentationBuilder, BlockingUploadFileBuilder,
    Session,
};