Spaces:
Sleeping
Sleeping
corrected indent error
Browse files
agent.py
CHANGED
|
@@ -8,7 +8,7 @@ from smolagents import tool
|
|
| 8 |
def real_number_calculator(
|
| 9 |
a: float, b: float, operation: Literal["add", "subtract", "multiply", "divide"]
|
| 10 |
) -> float:
|
| 11 |
-
|
| 12 |
Perform basic arithmetic operations on two real numbers.
|
| 13 |
|
| 14 |
This function acts as a simple calculator that can add, subtract,
|
|
|
|
| 8 |
def real_number_calculator(
|
| 9 |
a: float, b: float, operation: Literal["add", "subtract", "multiply", "divide"]
|
| 10 |
) -> float:
|
| 11 |
+
"""
|
| 12 |
Perform basic arithmetic operations on two real numbers.
|
| 13 |
|
| 14 |
This function acts as a simple calculator that can add, subtract,
|