Spaces:
Sleeping
Sleeping
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) | |