Skip to content

Commit

Permalink
Update vicuna-chat.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
LLukas22 committed May 12, 2023
1 parent e6fb66b commit da3e390
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/llm/examples/vicuna-chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ fn load_progress_callback(
prev_load_time = std::time::Instant::now();
}
}
LoadProgress::LoraApplied { name } => {
if let Some(sp) = sp.as_mut() {
sp.update_text(format!("Applied Lora: {}", name));
};
}
LoadProgress::Loaded {
file_size,
tensor_count,
Expand Down

0 comments on commit da3e390

Please sign in to comment.