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 58ce2a3 commit 36af176Copy full SHA for 36af176
interface/streamlit_app.py
@@ -44,6 +44,8 @@ def summarize_total_tokens(data):
44
45
# 결과 출력
46
st.write("총 토큰 사용량:", total_tokens)
47
- st.write("결과:", res["generated_query"].content)
+ # st.write("결과:", res["generated_query"].content)
48
+ st.write("결과:", "\n\n```sql\n" + res["generated_query"] + "\n```")
49
+ st.write("결과 설명:\n\n", res["messages"][-1].content)
50
st.write("AI가 재해석한 사용자 질문:\n", res["refined_input"].content)
51
st.write("참고한 테이블 목록:", res["searched_tables"])
0 commit comments