Spaces:
Paused
Paused
| 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() |