zakerytclarke commited on
Commit
8d6c903
·
verified ·
1 Parent(s): e48e44f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,8 +49,8 @@ def handle_chat(user_input, teapot_ai):
49
  results = brave_search(user_input)
50
 
51
  documents = [desc.replace('<strong>','').replace('</strong>','') for _, desc, _ in results]
52
- print(documents)
53
-
54
  for (title, description, url) in results:
55
  # Display Results
56
  st.sidebar.write(f"## {title}")
 
49
  results = brave_search(user_input)
50
 
51
  documents = [desc.replace('<strong>','').replace('</strong>','') for _, desc, _ in results]
52
+ st.sidebar.write("---")
53
+ st.sidebar.write("## RAG Documents")
54
  for (title, description, url) in results:
55
  # Display Results
56
  st.sidebar.write(f"## {title}")