Spaces:
Running
Running
Update app.py
Browse filesAdded missing parenthesis in calculator tool definition.
app.py
CHANGED
@@ -66,6 +66,7 @@ calculator_tool = Tool(
|
|
66 |
calculator,
|
67 |
[("a", "int"), ("b", "int")],
|
68 |
"int",
|
|
|
69 |
|
70 |
# Below is an example of a tool that does nothing. Amaze us with your creativity!
|
71 |
|
|
|
66 |
calculator,
|
67 |
[("a", "int"), ("b", "int")],
|
68 |
"int",
|
69 |
+
)
|
70 |
|
71 |
# Below is an example of a tool that does nothing. Amaze us with your creativity!
|
72 |
|