akhaliq HF staff commited on
Commit
67bcefa
1 Parent(s): 7e5041c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ title="Space for VQGAN_CLIP is now at https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP"
4
+
5
+ def greet(name):
6
+ return "Hello " + name + "!!"
7
+
8
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text",title=title)
9
+ iface.launch()