3ac154d
43a5ab6
80973c7
3ac154d
c5f1d43
43a5ab6 | | 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() |