gradio_test / app.py
jonghhhh's picture
Create app.py
4d22555 verified
raw
history blame
176 Bytes
import gradio as gr
def greet(name):
return f"μ•ˆλ…•ν•˜μ„Έμš”, {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(debug=True, share=True)