Files
zesdex/src/app/runtime/mod.rs
T
asepharyana e080d9fc6b feat(context): tambah context::shaping (port dari shortsend)
Perilaku should_shape/shape_messages tidak berubah, hanya sumber
penghitungan token yang sekarang lewat context::tokens (tiktoken-rs)
menggantikan heuristik char/3 bawaannya sendiri.
2026-07-16 07:55:48 +07:00

7 lines
177 B
Rust

//! Runtime layer: action dispatch, slash commands, short-send handling,
//! and the LLM streaming pipeline.
pub mod actions;
pub mod commands;
pub mod context;
pub mod stream;