From ab2d8dbd5155ffb3f8f037a9654a9ea7ce3dfb4b Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 8 Mar 2026 20:51:23 +0000 Subject: [PATCH] Remove unused LLMConfig from BotConfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit LLMConfig was stored in BotConfig but never accessed after construction — LLMClient receives it directly. https://claude.ai/code/session_01AKXQBuVBsW7J1YbukDiQ7A --- python/signal_bot/main.py | 1 - python/signal_bot/models.py | 1 - 2 files changed, 2 deletions(-) diff --git a/python/signal_bot/main.py b/python/signal_bot/main.py index d142f30..7c37510 100644 --- a/python/signal_bot/main.py +++ b/python/signal_bot/main.py @@ -118,7 +118,6 @@ def main( config = BotConfig( signal_api_url=signal_api_url, phone_number=phone_number, - llm=llm_config, inventory_file=inventory_file, ) diff --git a/python/signal_bot/models.py b/python/signal_bot/models.py index c71f900..61e9562 100644 --- a/python/signal_bot/models.py +++ b/python/signal_bot/models.py @@ -81,5 +81,4 @@ class BotConfig(BaseModel): signal_api_url: str phone_number: str - llm: LLMConfig inventory_file: str = "van_inventory.json"