SNAPKITTYWEST's picture
push from SNAPKITTYWEST/rowm-polymorphic-notebook
1d3f990 verified
Raw
History Blame Contribute Delete
473 Bytes
//! Jupyter Notebook Kernel + Execution Ring
//!
//! - Jupyter Protocol Implementation
//! - Zero-copy IPC via shared memory
//! - Decentralized cell agent scheduling
//! - Live telemetry streaming
pub mod kernel;
pub mod ipc;
pub mod cell_agent;
pub mod execution_ring;
pub mod telemetry;
pub use kernel::NotebookKernel;
pub use ipc::IpcChannel;
pub use cell_agent::CellAgent;
pub use execution_ring::ExecutionRing;
pub use telemetry::TelemetryStream;