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()