mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
Remove unused LLMConfig from BotConfig
LLMConfig was stored in BotConfig but never accessed after construction — LLMClient receives it directly. https://claude.ai/code/session_01AKXQBuVBsW7J1YbukDiQ7A
This commit is contained in:
@@ -118,7 +118,6 @@ def main(
|
|||||||
config = BotConfig(
|
config = BotConfig(
|
||||||
signal_api_url=signal_api_url,
|
signal_api_url=signal_api_url,
|
||||||
phone_number=phone_number,
|
phone_number=phone_number,
|
||||||
llm=llm_config,
|
|
||||||
inventory_file=inventory_file,
|
inventory_file=inventory_file,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -81,5 +81,4 @@ class BotConfig(BaseModel):
|
|||||||
|
|
||||||
signal_api_url: str
|
signal_api_url: str
|
||||||
phone_number: str
|
phone_number: str
|
||||||
llm: LLMConfig
|
|
||||||
inventory_file: str = "van_inventory.json"
|
inventory_file: str = "van_inventory.json"
|
||||||
|
|||||||
Reference in New Issue
Block a user