File size: 658 Bytes
001d877
 
ada2fcf
9ca8e1f
1389cb3
4b1e413
 
 
 
 
8f6b527
9ee5837
8f6b527
 
 
1389cb3
8f6b527
9ee5837
8f6b527
 
9ca8e1f
876a16e
9ca8e1f
 
 
 
 
1389cb3
8f6b527
9ca8e1f
8f6b527
 
 
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
26
27
28
29
30
31
32
33
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()