Update README.md
Browse files
README.md
CHANGED
|
@@ -25,4 +25,14 @@ solve for 'x' in the equation 2x + 5 = 11?
|
|
| 25 |
"parameters": {"equation": {"description": "The equation to solve. The format is 'a*x + b = c'.
|
| 26 |
For example, '5x + 2 = 10' or '3x - 7 = 1'.", "type": "str"}, "operation": {"description": "The operation (add, sub, etc.) to perform the solving.",
|
| 27 |
"type": "str, optional"}, "variable": {"description": "The variable to solve for. Defaults to 'x' if not provided.", "default": "x"}}}]
|
| 28 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
"parameters": {"equation": {"description": "The equation to solve. The format is 'a*x + b = c'.
|
| 26 |
For example, '5x + 2 = 10' or '3x - 7 = 1'.", "type": "str"}, "operation": {"description": "The operation (add, sub, etc.) to perform the solving.",
|
| 27 |
"type": "str, optional"}, "variable": {"description": "The variable to solve for. Defaults to 'x' if not provided.", "default": "x"}}}]
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
What is the volume of a sphere with a radius of 6 cm?
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
```py
|
| 35 |
+
[{"name": "volume_of_sphere", "description": "Calculates the volume of a sphere given its radius using the formula (4/3)πr³.",
|
| 36 |
+
"parameters": {"radius": {"description": "The radius of the sphere.", "type": "int"}}}]
|
| 37 |
+
```
|
| 38 |
+
|