IndividualQ1 / final_answer.py
Ventahana's picture
Update final_answer.py
faca57e verified
raw
history blame contribute delete
418 Bytes
# final_answer.py
from smolagents import Tool
class FinalAnswerTool(Tool):
name = "final_answer"
description = "Call this with the final answer to the user's question"
inputs = {
"answer": {
"type": "string",
"description": "The final answer to send back to the user"
}
}
output_type = "string"
def forward(self, answer: str):
return answer