AyoubChLin commited on
Commit
8fe1189
·
1 Parent(s): 8699e3e
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -33,9 +33,10 @@ def main():
33
  if search_button:
34
  results = search_engine.query(query)
35
  st.subheader("Search Results:")
 
 
36
  for result in results:
37
- logging.info("result :")
38
- logging.info(result)
39
  st.write(f"Document ID: {result['id']}, Metadata: {result['metadata']}")
40
  st.write(f"Text: {result['text']}")
41
  st.markdown("---")
 
33
  if search_button:
34
  results = search_engine.query(query)
35
  st.subheader("Search Results:")
36
+ logging.info("result :")
37
+ logging.info(results)
38
  for result in results:
39
+
 
40
  st.write(f"Document ID: {result['id']}, Metadata: {result['metadata']}")
41
  st.write(f"Text: {result['text']}")
42
  st.markdown("---")