From 3f67dd57d279787583154d0398bf8d692b6db421 Mon Sep 17 00:00:00 2001 From: lasseedfast Date: Mon, 22 Sep 2025 17:44:57 +0200 Subject: [PATCH] Fix typo in LLM class constructor: change 'siltent' to 'silent' --- _llm/llm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_llm/llm.py b/_llm/llm.py index 8506cbe..3705721 100644 --- a/_llm/llm.py +++ b/_llm/llm.py @@ -88,7 +88,7 @@ class LLM: timeout: int = 240, local_available: bool = False, on_vpn: bool = False, - siltent: bool = False, + silent: bool = False, ) -> None: """ Initialize the assistant with the given parameters. @@ -121,7 +121,7 @@ class LLM: self.tools = tools or [] self.local_available = local_available self.chosen_backend = chosen_backend - self.silent = siltent + self.silent = silent headers = { "Authorization": f"Basic {self.get_credentials()}",