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 39eaad8ef2
commit b8ba3fbb2a
+1 -1
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