Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2023-11-14 19:02:10 +00:00 committed by GitHub
parent 656452343d
commit 17d0952151
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ pub struct LlmPrompt {
top_k: Option<usize>,
top_p: Option<f64>,
n_predict: Option<isize>, // isize to accommodate -1
n_keep: Option<isize>, // isize to accommodate -1
n_keep: Option<isize>, // isize to accommodate -1
stream: Option<bool>,
stop: Option<Vec<String>>,
tfs_z: Option<f64>,