Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
马一丁
2025-12-19 10:16:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
84560edb258f33d4003001b9e120ebf460ed6f8e
84560edb
1 parent
7b86e055
Call llm_client.invoke with positional prompts
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
ReportEngine/nodes/graphrag_query_node.py
ReportEngine/nodes/graphrag_query_node.py
View file @
84560ed
...
...
@@ -225,8 +225,8 @@ class GraphRAGQueryNode(BaseNode):
"""调用 LLM 获取查询决策"""
try
:
response
=
self
.
llm_client
.
invoke
(
system
=
prompt
[
'system'
],
user
=
prompt
[
'user'
]
system_prompt
=
prompt
[
'system'
],
user_prompt
=
prompt
[
'user'
]
)
# 解析 JSON 响应
...
...
Please
register
or
login
to post a comment