joeyanuff commited on
Commit
76e7063
·
1 Parent(s): a332f43

log -> print

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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
- console.log('docs')
85
- console.log(docs)
86
- console.log('doc[0]')
87
- console.log(docs[0])
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)