Files
candle/candle-wasm-examples/llama2-c/src/lib.rs
Laurent Mazare 186c308d51 Wasm llama2 tweaks (#309)
* Clean-up the llama2.c wasm example.

* Use a proper tokenizer.
2023-08-02 15:49:43 +01:00

6 lines
74 B
Rust

mod app;
mod model;
mod worker;
pub use app::App;
pub use worker::Worker;