llm 1.3.8

A Rust library unifying multiple LLM backends.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! PTY (Pseudo-Terminal) session management for interactive shell execution.
//!
//! Provides persistent shell sessions with stdin/stdout streaming.

#![allow(unused_imports)]

mod manager;
pub mod session;

pub use manager::PtySessionManager;
pub use session::{PtyOutput, PtySession, SessionId};