Skip to content

Commit

Permalink
- fix: kill llama process (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol authored May 13, 2024
1 parent ddb8fb0 commit 47a48b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ impl OllamaProcessHandler {
self.process_handler.is_running().await
}

pub async fn kill_llama_process() {
kill_process_by_name("ollama_");
pub fn kill_llama_process() {
kill_process_by_name("ollama_llama");
}
pub async fn kill(&self) {
Self::kill_llama_process();
Expand Down

0 comments on commit 47a48b7

Please sign in to comment.