Spaces:
Runtime error
Runtime error
log -> print
Browse files
app.py
CHANGED
@@ -81,10 +81,10 @@ user_input = get_text()
|
|
81 |
|
82 |
if user_input:
|
83 |
docs = chain.get_relevant_documents(user_input)
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
output = 'nothing right now'
|
89 |
# output = docs[0].page_content
|
90 |
# console.log(output)
|
|
|
81 |
|
82 |
if user_input:
|
83 |
docs = chain.get_relevant_documents(user_input)
|
84 |
+
print('docs')
|
85 |
+
print(docs)
|
86 |
+
print('doc[0]')
|
87 |
+
print(docs[0])
|
88 |
output = 'nothing right now'
|
89 |
# output = docs[0].page_content
|
90 |
# console.log(output)
|