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