mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-11 11:19:58 +08:00
24 lines
491 B
Python
24 lines
491 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
|
|
|
|
|
|
demo = gr.Interface(
|
|
calculator,
|
|
["number", gr.Radio(["add", "subtract", "multiply", "divide"]), "number"],
|
|
"number",
|
|
live=True,
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|