Spaces:
Runtime error
Runtime error
docs x3
Browse files
app.py
CHANGED
@@ -85,9 +85,10 @@ if user_input:
|
|
85 |
print(docs)
|
86 |
print('docs[0]')
|
87 |
print(docs[0])
|
|
|
|
|
|
|
88 |
output = 'nothing right now'
|
89 |
-
content = docs[0].page_content
|
90 |
-
print(content)
|
91 |
|
92 |
st.session_state.past.append(user_input)
|
93 |
st.session_state.generated.append(output)
|
|
|
85 |
print(docs)
|
86 |
print('docs[0]')
|
87 |
print(docs[0])
|
88 |
+
print('docs[0].page_content')
|
89 |
+
print(docs[0].page_content)
|
90 |
+
|
91 |
output = 'nothing right now'
|
|
|
|
|
92 |
|
93 |
st.session_state.past.append(user_input)
|
94 |
st.session_state.generated.append(output)
|