Spaces:
Sleeping
Sleeping
File size: 347 Bytes
32653f7 80ae5a7 32653f7 80ae5a7 e8ccc6c b70a00f 80ae5a7 e38fd70 e8ccc6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
def greet(name):
return "Hello" + name + '!!'
title = "moogeul-moogeul"
iface = gr.Interface(
fn=greet,
inputs = gr.Textbox(lines=2, placeholder= 'λΉμ μ κΈμ λ£μ΄λ³΄μΈμ'),
outputs = gr.Textbox(lines=10, placeholder = 'κΈ μμ μλ 무μμμ μ°Ύμλ립λλ€.')
)
iface.launch(share =True)
|