mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
25 lines
518 B
Python
25 lines
518 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()
|