Spaces:
Runtime error
Runtime error
notSoNLPnerd
commited on
Commit
•
3e5f42e
1
Parent(s):
7ab905d
removed print statement
Browse files
app.py
CHANGED
@@ -47,7 +47,6 @@ if st.session_state.get('query') and run_pressed:
|
|
47 |
'\n This may take a few mins and might also fail if OpenAI API server is down.'):
|
48 |
answers_2 = p3.run(ip)
|
49 |
placeholder_retrieval_augmented.markdown(answers_2['results'][0])
|
50 |
-
print(answers_2['invocation_context']['documents'])
|
51 |
with st.expander("See source:"):
|
52 |
src = answers_2['invocation_context']['documents'][0].replace("$", "\$")
|
53 |
split_marker = "\n\n" if "\n\n" in src else "\n"
|
|
|
47 |
'\n This may take a few mins and might also fail if OpenAI API server is down.'):
|
48 |
answers_2 = p3.run(ip)
|
49 |
placeholder_retrieval_augmented.markdown(answers_2['results'][0])
|
|
|
50 |
with st.expander("See source:"):
|
51 |
src = answers_2['invocation_context']['documents'][0].replace("$", "\$")
|
52 |
split_marker = "\n\n" if "\n\n" in src else "\n"
|