John Graham Reynolds commited on
Commit
2828740
·
1 Parent(s): fb9ed3a

write history to see its format

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -134,6 +134,7 @@ def chat_api_call(history):
134
  # )
135
 
136
  # ** TODO update this next to take and do similarity search on user input!
 
137
  search_result = vector_store.similarity_search(query="Tell me about what a data lake is.", k=5)
138
  chat_completion = search_result # TODO update this after we implement our chain
139
  return chat_completion
 
134
  # )
135
 
136
  # ** TODO update this next to take and do similarity search on user input!
137
+ st.write(history)
138
  search_result = vector_store.similarity_search(query="Tell me about what a data lake is.", k=5)
139
  chat_completion = search_result # TODO update this after we implement our chain
140
  return chat_completion