typeduck-codex-async-utils 0.3.0

Support package for the standalone Codex Web runtime (codex-agent-graph-store)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Storage-neutral parent/child topology for thread-spawned agents.

mod error;
mod local;
mod store;
mod types;

pub use error::AgentGraphStoreError;
pub use error::AgentGraphStoreResult;
pub use local::LocalAgentGraphStore;
pub use store::AgentGraphStore;
pub use store::AgentGraphStoreFuture;
pub use types::ThreadSpawnEdgeStatus;