Refactor LLM config to payload-based approach and add NORMAL/CUSTOM select-agent handlers (#3723)

This commit is contained in:
pedrohsdb
2025-10-15 12:14:22 -07:00
committed by GitHub
parent 0b05582cc7
commit dfe8d6fb85
3 changed files with 14 additions and 2 deletions

View File

@@ -130,6 +130,8 @@ class Settings(BaseSettings):
LLM_API_KEY: str | None = None # API key for the model
SECONDARY_LLM_KEY: str | None = None
SELECT_AGENT_LLM_KEY: str | None = None
NORMAL_SELECT_AGENT_LLM_KEY: str | None = None
CUSTOM_SELECT_AGENT_LLM_KEY: str | None = None
SINGLE_CLICK_AGENT_LLM_KEY: str | None = None
SINGLE_INPUT_AGENT_LLM_KEY: str | None = None
PROMPT_BLOCK_LLM_KEY: str | None = None