mirror of
https://github.com/geoffsee/predict-otron-9001.git
synced 2025-09-08 22:46:44 +00:00
17 lines
271 B
Rust
17 lines
271 B
Rust
#[cfg(feature = "accelerate")]
|
|
extern crate accelerate_src;
|
|
#[cfg(feature = "mkl")]
|
|
extern crate intel_mkl_src;
|
|
mod llama_api;
|
|
mod llama_cli;
|
|
|
|
use anyhow::Result;
|
|
|
|
use crate::llama_cli::run_cli;
|
|
|
|
const EOS_TOKEN: &str = "</s>";
|
|
|
|
fn main() -> Result<()> {
|
|
run_cli()
|
|
}
|