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