sd3-turbo / app.py
worcestershire's picture
Create app.py
b30bbe9 verified
raw
history blame
151 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()