File size: 340 Bytes
bb1715e
 
55d4581
 
 
bb1715e
 
 
55d4581
bb1715e
1
2
3
4
5
6
7
8
9
10
import gradio as gr


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

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

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