Spaces:
Sleeping
Sleeping
Initial commit with full functionality extend app req tools
Browse files- tools/final_answer.py +4 -1
tools/final_answer.py
CHANGED
@@ -8,7 +8,7 @@ class FinalAnswerTool(Tool):
|
|
8 |
name = "final_answer"
|
9 |
description = "Tool for providing the final answer to the agent's task"
|
10 |
|
11 |
-
# Define inputs as a class attribute
|
12 |
inputs: Dict[str, Any] = {
|
13 |
"answer": {
|
14 |
"type": "str",
|
@@ -16,6 +16,9 @@ class FinalAnswerTool(Tool):
|
|
16 |
}
|
17 |
}
|
18 |
|
|
|
|
|
|
|
19 |
def __init__(self, description: Optional[str] = None):
|
20 |
super().__init__()
|
21 |
self.description = description or self.description
|
|
|
8 |
name = "final_answer"
|
9 |
description = "Tool for providing the final answer to the agent's task"
|
10 |
|
11 |
+
# Define inputs as a class attribute
|
12 |
inputs: Dict[str, Any] = {
|
13 |
"answer": {
|
14 |
"type": "str",
|
|
|
16 |
}
|
17 |
}
|
18 |
|
19 |
+
# Add output_type attribute
|
20 |
+
output_type = "str"
|
21 |
+
|
22 |
def __init__(self, description: Optional[str] = None):
|
23 |
super().__init__()
|
24 |
self.description = description or self.description
|