radi02's picture
calculator_gradio
9447bb7
raw
history blame contribute delete
820 Bytes
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
elif operation == "power":
return num1 ** num2
demo = gr.Interface(
calculator,
inputs=[gr.Number(0), gr.Radio(["add", "subtract", "multiply", "divide","power"]), "number"],
outputs="number",
examples=[
[5, "add", 3],
[4, "divide", 2],
[-4, "multiply", 2.5],
[0, "subtract", 1.2],
[6,"power",2],
],
title="calculator!!",
description="heres a sample toy calculator. enjoy!",
flagging_options=["this", "or", "that"],
)
demo.launch(share=True)