File size: 566 Bytes
fe6452f
 
16bfd42
 
fe6452f
 
 
 
 
3a3a245
17fd359
fe6452f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import gradio as gr

def calculator(num):
    return 1


demo = gr.Interface(
    fn=calculator,
    inputs=[
            gr.CheckboxGroup(label="Please select the emotions.", choices=["I'm feeling along.", "I'm happy.", "I feel honored.", "I feel magnets", "I feel eager", "I;m feeling angry."])
    ],
    outputs="number",
    examples=[
        [5, "add", 3],
        [4, "divide", 2],
        [-4, "multiply", 2.5],
        [0, "subtract", 1.2],
    ],
    title="test calculator",
    description="heres a sample **toy calculator**. enjoy!",
)

demo.launch()