fix: user query be ignored if query_prompt_template is an empty string (#11103)

pull/11106/head
-LAN- 1 year ago committed by GitHub
parent e9c098d024
commit 20c091a5e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -137,7 +137,7 @@ class LLMNode(BaseNode[LLMNodeData]):
query = None
if self.node_data.memory:
query = self.node_data.memory.query_prompt_template
if query is None and (
if not query and (
query_variable := self.graph_runtime_state.variable_pool.get(
(SYSTEM_VARIABLE_NODE_ID, SystemVariableKey.QUERY)
)

Loading…
Cancel
Save