Kosmos-2 / app.py
ydshieh's picture
ydshieh HF staff
Create app.py
e8d738f
raw
history blame
150 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()