Test / app.py
CarlosMF's picture
CarlosMF HF Staff
Create app.py
716dc0f
raw
history blame
151 Bytes
import gradio as gr
def greet(name):
return "Hello " + Carlos + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()