raviix46 commited on
Commit
9eb8be3
·
verified ·
1 Parent(s): bd2cc64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -4,6 +4,7 @@ import gradio as gr
4
  from components.style import custom_css
5
  from tabs.therapy_chat import therapy_chat_tab
6
  from tabs.faq_assistant import faq_assistant_tab
 
7
  from tabs.symptom_checker import symptom_checker_tab
8
  from tabs.report_analyzer import report_analyzer_tab
9
 
@@ -33,6 +34,9 @@ with gr.Blocks(css=custom_css) as demo:
33
 
34
  with gr.Tab("🧾 Report Analyzer"):
35
  report_analyzer_tab()
 
 
 
36
 
37
  gr.Markdown("Made by Ravi⚡️", elem_classes="centered-text")
38
 
 
4
  from components.style import custom_css
5
  from tabs.therapy_chat import therapy_chat_tab
6
  from tabs.faq_assistant import faq_assistant_tab
7
+ from tabs.image_ocr_llm import image_ocr_llm_tab
8
  from tabs.symptom_checker import symptom_checker_tab
9
  from tabs.report_analyzer import report_analyzer_tab
10
 
 
34
 
35
  with gr.Tab("🧾 Report Analyzer"):
36
  report_analyzer_tab()
37
+
38
+ with gr.Tab("📸 OCR (LLM)"):
39
+ image_ocr_llm_tab()
40
 
41
  gr.Markdown("Made by Ravi⚡️", elem_classes="centered-text")
42