hotfix: fix multiple case match syntax (#24204)

This commit is contained in:
NeatGuyCoding 2025-08-20 14:45:46 +08:00 committed by GitHub
parent 4c1ad40f8e
commit 870e3daa95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ class LLMGenerator:
model=model_config.get("name", ""),
)
match node_type:
case "llm", "agent":
case "llm" | "agent":
system_prompt = LLM_MODIFY_PROMPT_SYSTEM
case "code":
system_prompt = LLM_MODIFY_CODE_SYSTEM