jarif commited on
Commit
7e9669e
β€’
1 Parent(s): c191ddc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,7 +21,7 @@ st.set_page_config(page_title="DocWizard Instant Insights and Analysis", layout=
21
 
22
  # Header and Instructions
23
  st.markdown("""
24
- ## Document Intelligence Explorer: Real-Time Insights and Analysis
25
 
26
  This chatbot utilizes the Retrieval-Augmented Generation (RAG) framework with Google's Generative AI model Gemini-PRO. It processes uploaded PDF documents by segmenting them into chunks, creating a searchable vector store, and generating precise answers to your questions. This method ensures high-quality, contextually relevant responses for an efficient user experience.
27
 
@@ -99,7 +99,7 @@ def main():
99
  """
100
  Main function to run the Streamlit app.
101
  """
102
- st.header("AI Chatbot πŸ’")
103
 
104
  user_question = st.text_input("Ask a Question from the PDF Files", key="user_question")
105
 
 
21
 
22
  # Header and Instructions
23
  st.markdown("""
24
+ ## Document Intelligence Explorer πŸ€–
25
 
26
  This chatbot utilizes the Retrieval-Augmented Generation (RAG) framework with Google's Generative AI model Gemini-PRO. It processes uploaded PDF documents by segmenting them into chunks, creating a searchable vector store, and generating precise answers to your questions. This method ensures high-quality, contextually relevant responses for an efficient user experience.
27
 
 
99
  """
100
  Main function to run the Streamlit app.
101
  """
102
+ st.header("AI Assistant πŸ€–")
103
 
104
  user_question = st.text_input("Ask a Question from the PDF Files", key="user_question")
105