Spaces:
Configuration error
Configuration error
import gradio as gr | |
title="ํ๊ธ ๋ฐ ๋ค๊ตญ์ด + ChatGPT + ๋ฉํฐ ๋ชจ๋ธ๋ง ๊ธฐ๋ฐ AI" | |
description=" Voice ์๋ ๋ถ์: https://seawolf2357-aivora.hf.space \n " | |
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!", | |
) | |
demo = gr.TabbedInterface([tts_demo, stt_demo], ["Article URL ๋ถ์", "PDF ๋ถ์"]) | |
if __name__ == "__main__": | |
demo.launch() |