Spaces:
Runtime error
Runtime error
Upload tool
Browse files
tool.py
CHANGED
|
@@ -3,9 +3,9 @@ from smolagents.tools import Tool
|
|
| 3 |
|
| 4 |
class FinalAnswerTool(Tool):
|
| 5 |
name = "final_answer"
|
| 6 |
-
description = "This
|
| 7 |
-
inputs = {'answer': {'type': 'any', 'description': '
|
| 8 |
-
output_type = "
|
| 9 |
|
| 10 |
def forward(self, answer: str) -> str:
|
| 11 |
return answer
|
|
|
|
| 3 |
|
| 4 |
class FinalAnswerTool(Tool):
|
| 5 |
name = "final_answer"
|
| 6 |
+
description = "This tool sends the final answer to the user. This tool does not format the answer. Format the answer before using this tool."
|
| 7 |
+
inputs = {'answer': {'type': 'any', 'description': 'A well formatted and short final answer to the user`s problem.'}}
|
| 8 |
+
output_type = "string"
|
| 9 |
|
| 10 |
def forward(self, answer: str) -> str:
|
| 11 |
return answer
|