Teecan's picture
Update tools/final_answer.py
6a50ecd verified
Raw
History Blame Contribute Delete
549 Bytes
from typing import Any
from smolagents.tools import Tool
class FinalAnswerTool(Tool):
name = "final_answer"
description = "Provides the final answer to the user. This can be text or an image."
inputs = {
"answer": {
"type": "any",
"description": "The final answer to the user, which can be text or an image."
}
}
output_type = "any"
def forward(self, answer: Any) -> Any:
return answer
def __init__(self, *args, **kwargs):
self.is_initialized = False