nanocodex-agent 0.3.0

Owned OpenAI agent lifecycle for Nanocodex
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(not(target_family = "wasm"))]
#[path = "native.rs"]
mod platform;

#[cfg(all(target_family = "wasm", target_os = "unknown"))]
#[path = "web.rs"]
mod platform;

pub(crate) use platform::{AgentFactory, AgentSend};
pub(super) use platform::{ServiceFactory, spawn_driver};