We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ca985c + 871dae8 commit e540875Copy full SHA for e540875
3 files changed
engine/query_executor.py
@@ -49,7 +49,6 @@ def execute_query(
49
- "messages": 전체 LLM 응답 메시지 목록
50
- "searched_tables": 참조된 테이블 목록 등 추가 정보
51
"""
52
-
53
logger.info("Processing query: %s", query)
54
55
# 그래프 선택
interface/app_pages/lang2sql.py
@@ -142,5 +142,6 @@
142
retriever_name=user_retriever,
143
top_n=user_top_n,
144
device=device,
145
+ use_enriched=use_enriched,
146
)
147
display_result(res=res)
interface/core/lang2sql_runner.py
@@ -16,6 +16,7 @@ def run_lang2sql(
16
retriever_name,
17
top_n,
18
device,
19
+ use_enriched,
20
):
21
22
Lang2SQL 실행 함수.
@@ -40,4 +41,5 @@ def run_lang2sql(
40
41
retriever_name=retriever_name,
42
top_n=top_n,
43
44
+ use_enriched_graph=use_enriched,
45
0 commit comments