File size: 582 Bytes
9fe26be a82e2da 018cc24 9fe26be b60b612 9fe26be b60b612 371e045 9fe26be | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | import gradio as gr
from src.models.pipeline import PIPELINE
from src.content.transcription_tab import transcription_tab
from src.content.about_tab import about_tab
from src.content.front_image import image_tab
from src.content.results_tab import results_tab
from src.content.about_us_tab import about_us_tab
from src.content.others_tab import pdf_tab
with gr.Blocks(theme='Taithrah/Minimal') as demo:
image_tab()
with gr.Tabs():
about_tab()
results_tab()
transcription_tab(PIPELINE)
about_us_tab()
pdf_tab()
demo.launch() |