Commit
·
3fa499c
1
Parent(s):
9afa683
debug
Browse files
app.py
CHANGED
@@ -71,7 +71,7 @@ with st.form('my_form'):
|
|
71 |
response = generate_response(text)
|
72 |
st.markdown(response['answer'])
|
73 |
|
74 |
-
|
75 |
for context in response['context']:
|
76 |
with st.expander(context.metadata['codex']+" "+context.metadata['title']):
|
77 |
st.write(context.page_content)
|
|
|
71 |
response = generate_response(text)
|
72 |
st.markdown(response['answer'])
|
73 |
|
74 |
+
print(response['context'])
|
75 |
for context in response['context']:
|
76 |
with st.expander(context.metadata['codex']+" "+context.metadata['title']):
|
77 |
st.write(context.page_content)
|