BBox / abc_app.py
janasumit2911's picture
Rename app.py to abc_app.py
3bc45f8 verified
Raw
History Blame Contribute Delete
211 Bytes
import gradio as gr
def hello(name):
return {"output":"hi"+name}
application = gr.Interface(fn=hello, inputs="textbox", outputs="textbox", title="Image Detection with API Integration")
application.launch()