arjunanand13's picture
Update app2.py
3d01c54 verified
raw
history blame
157 Bytes
import gradio as gr
def greet(name):
return "Hello! " + name + "api" + api
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()