test / app.py
ndg04041's picture
Update app.py
e71c3d6 verified
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()