From 7df01c41b48fc6e6354e65c9b5de9f0250fe1607 Mon Sep 17 00:00:00 2001 From: Mikhail Yevchenko Date: Tue, 9 Jun 2026 12:08:10 +0300 Subject: [PATCH] Update log action configuration to specify model loading message --- workers/openai/worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workers/openai/worker.py b/workers/openai/worker.py index 1eded5f..a27c15c 100644 --- a/workers/openai/worker.py +++ b/workers/openai/worker.py @@ -79,7 +79,7 @@ worker_config = WorkerConfig( ) ], log_action_config=LogActionConfig( - on_load=["llama runner started in "], + on_load=["llama_server: model loaded"], on_error=["Traceback (most recent call last):","Error:"], #on_info=["load_tensors:","llama_context:","print_info:","llama_model_loader:"] )