mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
4fd2ae081c
* ensure latex css is applied * remove z-index on error status * changelog * formatting * more styling fixes + adjust error message for non space * simplify test * simplify test * update notebook * pinning mdit-py-plugins * missed a thing --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
34 lines
834 B
Python
34 lines
834 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":
|
|
if num2 == 0:
|
|
raise gr.Error("Cannot divide by zero!")
|
|
return num1 / num2
|
|
|
|
demo = gr.Interface(
|
|
calculator,
|
|
[
|
|
"number",
|
|
gr.Radio(["add", "subtract", "multiply", "divide"]),
|
|
"number"
|
|
],
|
|
"number",
|
|
examples=[
|
|
[5, "add", 3],
|
|
[4, "divide", 2],
|
|
[-4, "multiply", 2.5],
|
|
[0, "subtract", 1.2],
|
|
],
|
|
title="Toy Calculator",
|
|
description="Here's a sample toy calculator. Allows you to calculate things like $2+2=4$",
|
|
)
|
|
if __name__ == "__main__":
|
|
demo.launch()
|