File size: 507 Bytes
4d22555
 
 
 
 
e1809b5
 
 
 
 
 
 
 
 
 
4d22555
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

def greet(name):
    return f"μ•ˆλ…•ν•˜μ„Έμš”, {name}!"

# Gradio μΈν„°νŽ˜μ΄μŠ€ μ •μ˜
iface = gr.Interface(
    fn=greet,
    inputs=gr.Textbox(lines=10, label="여기에 이름을 μž…λ ₯ν•˜μ„Έμš”"),
    outputs=gr.Textbox(label="응닡"),
    title="μΈμ‚¬ν•˜κΈ°",
    description="이 웹은 주어진 이름에 λŒ€ν•΄ μ•ˆλ…•ν•˜μ„Έμš”λ‘œ μΈμ‚¬ν•©λ‹ˆλ‹€.",
    article="이것은 파이썬 ν•¨μˆ˜μ™€ Gradioλ₯Ό ν™œμš©ν•œ μ›Ή μ˜ˆμ œμž…λ‹ˆλ‹€."
)

iface.launch(debug=True, share=True)