deepseek-tui 0.8.18

Terminal UI for DeepSeek
1
2
3
4
5
6
7
8
9
10
//! Long-lived Python REPL runtime used by the RLM loop and by inline
//! `` ```repl `` block execution in the agent loop.

pub mod runtime;
pub mod sandbox;

pub use runtime::{
    BatchResp, PythonRuntime, ReplRound, RpcDispatcher, RpcRequest, RpcResponse, SingleResp,
};
pub use sandbox::{ReplBlock, extract_repl_blocks, has_repl_block};