Skip to main content

zagens_runtime/repl/
mod.rs

1//! Long-lived Python REPL runtime used by the RLM loop and by inline
2//! `` ```repl `` block execution in the agent loop.
3
4pub mod runtime;
5pub mod sandbox;
6
7pub use runtime::{
8    BatchResp, PythonRuntime, ReplRound, RpcDispatcher, RpcRequest, RpcResponse, SingleResp,
9};
10pub use sandbox::{ReplBlock, extract_repl_blocks, has_repl_block};