Danwei commited on
Commit
07b878c
·
verified ·
1 Parent(s): a54e556

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,8 +9,8 @@ from Gradio_UI import GradioUI
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
- def temperature_covert(celsius: float) -> float: #it's import to specify the return type
13
- """
14
  Convert Celsius temperature to Fahrenheit.
15
 
16
  Args:
 
9
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
  @tool
12
+ def celsius_to_fahrenheit(celsius: float) -> float:
13
+ """
14
  Convert Celsius temperature to Fahrenheit.
15
 
16
  Args: