hamzaherry commited on
Commit
887a604
·
verified ·
1 Parent(s): 8b1eefc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -84,8 +84,8 @@ if uploaded_files:
84
  for chunk in all_chunks[:3]:
85
  st.write(chunk)
86
 
87
- # User input for query with a magnifying glass emoji
88
- user_question = st.text_input("Ask a question about the uploaded papers:", help="Ask about specific research details", icon="🔍")
89
 
90
  if user_question:
91
  relevant_chunks = retrieve_relevant_chunks(user_question)
 
84
  for chunk in all_chunks[:3]:
85
  st.write(chunk)
86
 
87
+ # User input for query without the icon
88
+ user_question = st.text_input("Ask a question about the uploaded papers:", help="Ask about specific research details")
89
 
90
  if user_question:
91
  relevant_chunks = retrieve_relevant_chunks(user_question)