Spaces:
Sleeping
Sleeping
import gradio as gr | |
# ์ ๋ ฅ์ 'world'๋ฅผ ์ถ๊ฐํ๋ ํจ์ | |
def add_world(input_text): | |
return input_text + " world" | |
# Gradio ์ธํฐํ์ด์ค ์ค์ | |
iface = gr.Interface(fn=add_world, inputs="text", outputs="text", title="Hello to World") | |
# ์ธํฐํ์ด์ค ์คํ | |
iface.launch() | |