DrishtiSharma commited on
Commit
4facd52
·
verified ·
1 Parent(s): 27d90f3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -2
app.py CHANGED
@@ -185,16 +185,41 @@ with st.sidebar:
185
  This app allows users to upload documents, generate summaries, ask questions, and create podcasts.
186
  """
187
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  st.markdown("### Steps:")
189
  st.markdown("1. Upload documents.")
190
  st.markdown("2. Generate summary.")
191
  st.markdown("3. Ask questions.")
192
 
 
 
 
193
  st.markdown("### References:")
194
- st.markdown("[RAG_HW HuggingFace Space](https://huggingface.co/spaces/wint543/RAG_HW)")
 
195
 
196
  # Streamlit UI
197
- st.title("Medical Doc Summarizer and QA app)
198
  st.image("./cover_image.png", use_container_width=True)
199
 
200
 
 
185
  This app allows users to upload documents, generate summaries, ask questions, and create podcasts.
186
  """
187
  )
188
+
189
+
190
+
191
+
192
+ with st.sidebar:
193
+ st.title("About This Project")
194
+ st.markdown(
195
+ """
196
+ This prototype is part of a research project on **Multilingual Clinical Text Understanding**.
197
+
198
+ **Interim Goals:**
199
+ - Summarize clinical notes in local languages
200
+ - Enable question answering over clinical documents using Retrieval-Augmented Generation (RAG)
201
+ - Evaluate performance in under-resourced languages like Hindi and Bengali
202
+
203
+ **Tasks Covered:**
204
+ 1. Summarization
205
+ 2. Question Answering
206
+ """
207
+ )
208
+
209
  st.markdown("### Steps:")
210
  st.markdown("1. Upload documents.")
211
  st.markdown("2. Generate summary.")
212
  st.markdown("3. Ask questions.")
213
 
214
+ st.markdown("### Contributors:")
215
+ st.markdown("- Azmine Toushik Wasi, Drishti, Prahitha, Anik, Ashay, AbdurRahman, Iqramul")
216
+
217
  st.markdown("### References:")
218
+ st.markdown("[1. RAG_HW HuggingFace Space](https://huggingface.co/spaces/wint543/RAG_HW)")
219
+
220
 
221
  # Streamlit UI
222
+ st.title("Multilingual Clinical Summarization & QA with RAG")
223
  st.image("./cover_image.png", use_container_width=True)
224
 
225