import gradio as gr def greet(name): return "Hello " + name + "!! " + iface.api_name+" da el api name " def greet1(name): return "Hello ya client" +name iface = gr.Interface(fn=greet, inputs="text", outputs="text") iten=gr.Interface(fn=greet1, inputs="text", outputs="text",api_name="/testing") app=gr.Interface(interfaces=[iface, iten], share=True) app.launch()