mirror of
https://github.com/geoffsee/predict-otron-9001.git
synced 2025-09-08 22:46:44 +00:00
8 lines
208 B
Rust
8 lines
208 B
Rust
pub mod llama_api;
|
|
|
|
use clap::ValueEnum;
|
|
pub use llama_api::{run_llama_inference, LlamaInferenceConfig, WhichModel};
|
|
|
|
// Re-export constants and types that might be needed
|
|
pub const EOS_TOKEN: &str = "</s>";
|