Multi-Complex / app.py
seawolf2357's picture
initial commit
9ca8e1f
raw
history blame
658 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,
)
stt_demo = gr.Interface.load(
"spaces/seawolf2357/PDF-text-extractor",
title=None,
inputs="mic",
)
gpt_demo = gr.Interface.load(
"spaces/seawolf2357/kochatgpt",
title=None,
inputs="mic",
)
demo = gr.TabbedInterface([tts_demo, stt_demo, gpt_demo], ["Article URL 분석", "PDF 분석", "ChatGPT"])
if __name__ == "__main__":
demo.launch()