File size: 418 Bytes
9cb71ea
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
# pip install gradio

import gradio as gr

def greeting(string):
    return "μ•ˆλ…•ν•˜μ„Έμš”, " + string + "λ‹˜!"

input_box = gr.inputs.Textbox()
output_box = gr.outputs.Textbox()

title = "μΈμ‚¬ν•˜λŠ” ν”„λ‘œκ·Έλž¨"
description = "이름을 μž…λ ₯ν•˜λ©΄ 'μ•ˆλ…•ν•˜μ„Έμš”, μ΄λ¦„λ‹˜!'이 좜λ ₯λ©λ‹ˆλ‹€."
gr.Interface(fn=greeting, inputs=input_box, outputs=output_box, title=title, description=description).launch();