Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
4 |
|
5 |
def greet(name):
|
6 |
return "Hello " + name + "!!"
|
7 |
|
8 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text",
|
9 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
|
4 |
+
description="[Space for VQGAN_CLIP is now at https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP](https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP)"
|
5 |
|
6 |
def greet(name):
|
7 |
return "Hello " + name + "!!"
|
8 |
|
9 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text",description=desription)
|
10 |
iface.launch()
|