arjunanand13's picture
Rename app.py to app2.py
0814755 verified
raw
history blame
156 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "api" + api
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()