Multi-Complex / app.py
seawolf2357's picture
initial commit
876a16e
raw
history blame
847 Bytes
import gradio as gr
title="ํ•œ๊ธ€ ๋ฐ ๋‹ค๊ตญ์–ด ์ง€์› + ChatGPT + ๋ฉ€ํ‹ฐ ๋ชจ๋ธ๋ง ๊ธฐ๋ฐ˜ ์‘์šฉ AI"
tts_examples = [
"I love learning machine learning",
"How do you do?",
]
tts_demo = gr.Interface.load(
"spaces/seawolf2357/multi_test",
title=None,
examples=tts_examples,
description="Give me something to say!",
)
stt_demo = gr.Interface.load(
"spaces/seawolf2357/PDF-text-extractor",
title=None,
inputs="mic",
description="Let me try to guess what you're saying!",
vts_demo = gr.Interface.load(
"spaces/seawolf2357/vts-whisper",
title=None,
inputs="mic",
description="Let me try to guess what you're saying!",
)
demo = gr.TabbedInterface([tts_demo, stt_demo, vts_demo], ["Article+URL: ๋ถ„์„", "PDF: ๋ถ„์„", "๋ณด์ด์Šค+URL: ๋ถ„์„"])
if __name__ == "__main__":
demo.launch()