Spaces:
Sleeping
Sleeping
File size: 288 Bytes
27ec240 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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()
|