import gradio as gr def greet(image): return "Hello " + "name" + "!!" demo = gr.Interface(fn=greet, inputs="image", outputs="text") demo.launch()