mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
23 lines
549 B
Python
23 lines
549 B
Python
|
import gradio as gr
|
||
|
|
||
|
def calculator(num1, operation, num2):
|
||
|
if operation == "add":
|
||
|
return num1 + num2
|
||
|
elif operation == "subtract":
|
||
|
return num1 - num2
|
||
|
elif operation == "multiply":
|
||
|
return num1 * num2
|
||
|
elif operation == "divide":
|
||
|
return num1 / num2
|
||
|
|
||
|
|
||
|
iface = gr.Interface(calculator,
|
||
|
["number", gr.inputs.Radio(["add", "subtract", "multiply", "divide"]), "number"],
|
||
|
"number",
|
||
|
examples=[
|
||
|
[5, "add", 3],
|
||
|
[12, "divide", -2]
|
||
|
]
|
||
|
)
|
||
|
if __name__ == "__main__":
|
||
|
iface.launch()
|