File size: 663 Bytes
2de8044
 
 
a73ac5d
2de8044
a73ac5d
 
 
 
 
 
 
 
 
 
 
 
 
fed4554
2de8044
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import gradio as gr

def greet(name):
    return "Hello " + name + "!"

def another_endpoint(text):
    return f"You said: {text}"

with gr.Blocks() as iface:
    name_input = gr.Textbox(label="Enter your name")
    output = gr.Textbox(label="Greeting")
    greet_button = gr.Button("Greet")
    greet_button.click(greet, inputs=name_input, outputs=output, api_name="/greet")

    text_input = gr.Textbox(label="Enter some text")
    text_output = gr.Textbox(label="Echo")
    echo_button = gr.Button("Echo")
    echo_button.click(another_endpoint, inputs=text_input, outputs=text_output, api_name="/echo")

if __name__ == "__main__":
    iface.launch(share=True)