File size: 358 Bytes
67bcefa
 
9a0b295
49e1c29
67bcefa
 
 
 
ea07e93
67bcefa
1
2
3
4
5
6
7
8
9
10
import gradio as gr


description="<a href='https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP' target='_blank'>Space for VQGAN_CLIP is now at https://huggingface.co/spaces/EleutherAI/VQGAN_CLIP</a></p>"

def greet(name):
    return "Hello " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text",description=description)
iface.launch()