AudioAssesment / app.py
arslanarjumand's picture
Upload 2 files
c82c4bf verified
raw history blame
No virus
391 Bytes
import gradio as gr
read_aloud_demo = gr.load(
"arslanarjumand/ReadAloud",
src="spaces",
hf_token=API_KEY
)
reapeat_sentence_demo = gr.load(
"arslanarjumand/RepeatSentence",
src="spaces",
hf_token=API_KEY
)
demo = gr.TabbedInterface([read_aloud_demo, reapeat_sentence_demo], ["Read Aloud", "Repeat Sentence"])
if __name__ == "__main__":
demo.launch()