From 2e036e5f1023db38b0d54499363888dc87972d69 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 27 Feb 2026 08:48:03 -0700 Subject: [PATCH] Clenaup --- frigate/genai/llama_cpp.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/genai/llama_cpp.py b/frigate/genai/llama_cpp.py index bed742756..69b4cac28 100644 --- a/frigate/genai/llama_cpp.py +++ b/frigate/genai/llama_cpp.py @@ -121,7 +121,10 @@ class LlamaCppClient(GenAIClient): elif tool_choice == "required": openai_tool_choice = "required" - payload: dict[str, Any] = {"messages": messages, "model": self.genai_config.model} + payload: dict[str, Any] = { + "messages": messages, + "model": self.genai_config.model, + } if stream: payload["stream"] = True if tools: