We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3a1cb4 commit 52d86b0Copy full SHA for 52d86b0
src/connections/goat_connection.py
@@ -253,7 +253,7 @@ def _register_actions_with_wallet(self) -> None:
253
254
register_action(tool.name)(
255
lambda agent, tool_name=tool.name, **kwargs: self.perform_action(
256
- tool_name, **kwargs
+ tool_name, kwargs
257
)
258
259
@@ -393,7 +393,7 @@ def configure(self, **kwargs) -> bool:
393
logger.error(error_msg)
394
raise GoatConfigurationError(error_msg)
395
396
- def perform_action(self, action_name: str, **kwargs) -> Any:
+ def perform_action(self, action_name: str, kwargs) -> Any:
397
"""Execute a GOAT action using a plugin's tool"""
398
action = self.actions.get(action_name)
399
if not action:
0 commit comments