make text promtp llm pickable in settings (#1894)

This commit is contained in:
Shuchang Zheng 2025-03-05 22:12:23 -08:00 committed by GitHub
parent ab02998d19
commit 7b9fab05b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -1186,7 +1186,7 @@ async def user_code():
)
DEFAULT_TEXT_PROMPT_LLM_KEY = settings.SECONDARY_LLM_KEY or settings.LLM_KEY
DEFAULT_TEXT_PROMPT_LLM_KEY = settings.TEXT_ONLY_AGENT_LLM_KEY or settings.LLM_KEY
class TextPromptBlock(Block):