File size: 288 Bytes
6e67f72 de81cf1 fe7e386 6d65fe9 e71c3d6 fe7e386 6d65fe9 e71c3d6 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
def echo(text):
return text
# Gradio ์ธํฐํ์ด์ค ์ ์
input_text = gr.Interface(fn=echo, inputs="text", outputs="text", title="Echo App", description="์
๋ ฅํ ํ
์คํธ๋ฅผ ๊ทธ๋๋ก ์ถ๋ ฅํฉ๋๋ค.")
# Gradio ์ธํฐํ์ด์ค ์คํ
input_text.launch()
|