Spaces:
Sleeping
Sleeping
File size: 324 Bytes
32653f7 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)
|