Spaces:
Configuration error
Configuration error
seawolf2357
commited on
Commit
•
8be6f71
1
Parent(s):
25a3a2b
Delete app.py
Browse files
app.py
DELETED
@@ -1,33 +0,0 @@
|
|
1 |
-
import gradio as gr
|
2 |
-
|
3 |
-
title="한글 및 다국어 + ChatGPT + 멀티 모델링 기반 AI"
|
4 |
-
|
5 |
-
|
6 |
-
tts_examples = [
|
7 |
-
"I love learning machine learning",
|
8 |
-
"How do you do?",
|
9 |
-
]
|
10 |
-
|
11 |
-
tts_demo = gr.Interface.load(
|
12 |
-
"spaces/seawolf2357/multi_test",
|
13 |
-
title=None,
|
14 |
-
examples=tts_examples,
|
15 |
-
)
|
16 |
-
|
17 |
-
stt_demo = gr.Interface.load(
|
18 |
-
"spaces/seawolf2357/PDF-text-extractor",
|
19 |
-
title=None,
|
20 |
-
inputs="mic",
|
21 |
-
)
|
22 |
-
|
23 |
-
gpt_demo = gr.Interface.load(
|
24 |
-
"spaces/seawolf2357/kochatgpt",
|
25 |
-
title=None,
|
26 |
-
inputs="mic",
|
27 |
-
|
28 |
-
)
|
29 |
-
|
30 |
-
demo = gr.TabbedInterface([tts_demo, stt_demo, gpt_demo], ["Article URL 분석", "PDF 분석", "ChatGPT"])
|
31 |
-
|
32 |
-
if __name__ == "__main__":
|
33 |
-
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|