pixAI / a
kuzneet
Create a
a9197c3
raw
history blame contribute delete
215 Bytes
git clone https://huggingface.co/spaces/PixArt-alpha/PixArt-alpha
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()