We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc1aab4 commit ac00737Copy full SHA for ac00737
1 file changed
maseval/core/user.py
@@ -74,15 +74,15 @@ def is_done(self) -> bool:
74
"""
75
...
76
77
- def get_tool(self):
+ def get_tool(self) -> Any:
78
"""Return a framework-compatible tool for agent interaction.
79
80
Some frameworks (smolagents, CAMEL) use a tool-based pattern where
81
agents invoke an AskUser tool to interact with the user. Override
82
this in subclasses for frameworks that need it.
83
84
Returns:
85
- Framework-specific tool, or None if not applicable.
+ Framework-specific tool, or `None` if not applicable.
86
87
return None
88
0 commit comments