We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccf3671 commit daa8228Copy full SHA for daa8228
interface/app_pages/lang2sql.py
@@ -142,6 +142,6 @@
142
retriever_name=user_retriever,
143
top_n=user_top_n,
144
device=device,
145
- use_enriched=use_enriched
+ use_enriched=use_enriched,
146
)
147
display_result(res=res)
interface/core/lang2sql_runner.py
@@ -16,7 +16,7 @@ def run_lang2sql(
16
retriever_name,
17
top_n,
18
device,
19
- use_enriched
+ use_enriched,
20
):
21
"""
22
Lang2SQL 실행 함수.
@@ -41,5 +41,5 @@ def run_lang2sql(
41
retriever_name=retriever_name,
42
top_n=top_n,
43
44
- use_enriched_graph=use_enriched
+ use_enriched_graph=use_enriched,
45
0 commit comments