rllama 0.3.0

Pure Rust implementation of LLaMA-family of models, executable
1
2
3
4
5
6
7
8
9
fn main() {
    protobuf_codegen::Codegen::new()
        .pure()
        .out_dir("src/protomodels")
        .include("proto")
        .input("proto/sentencepiece_model.proto")
        .run()
        .unwrap();
}