every-other-token 4.1.2

A real-time LLM stream interceptor for token-level interaction research
Documentation
1
2
3
4
5
6
7
8
9
//! Build script: tracks changes to the embedded web UI.
//!
//! The web UI is a single embedded HTML file at `static/index.html`,
//! loaded at compile time by `include_str!` in `src/web.rs`.
//! Cargo will recompile when this file changes.

fn main() {
    println!("cargo:rerun-if-changed=static/index.html");
}