Spaces:
Running
Running
Update app.py
Browse files
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
|
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:
|