Spaces:
Sleeping
Sleeping
Commit
·
1d0ef2d
1
Parent(s):
a77e11b
added logging to better understand the issue
Browse files
app.py
CHANGED
@@ -41,6 +41,7 @@ def use_streamlit():
|
|
41 |
repository.init()
|
42 |
with st.status("waiting for LLM"):
|
43 |
answer = repository.send_prompt(pm.verify_user_input_prompt(user_input))
|
|
|
44 |
with st.status("Checking for missing answers"):
|
45 |
st.session_state["answers"] = LlmParser.parse_verification_prompt_answers(answer['content'])
|
46 |
|
|
|
41 |
repository.init()
|
42 |
with st.status("waiting for LLM"):
|
43 |
answer = repository.send_prompt(pm.verify_user_input_prompt(user_input))
|
44 |
+
print(f"the LLM got these answers: {answer['content']}")
|
45 |
with st.status("Checking for missing answers"):
|
46 |
st.session_state["answers"] = LlmParser.parse_verification_prompt_answers(answer['content'])
|
47 |
|