Spaces:
Sleeping
Sleeping
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") | |
iface.launch() | |
iten=gr.Interface(fn=greet1, inputs="text", outputs="text",api_name="testing") | |
iten.launch() | |