We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4faca commit 05cb154Copy full SHA for 05cb154
src/agents/deepagent.py
@@ -146,7 +146,8 @@ def __init__(self):
146
self.last_input = None
147
148
def invoke(self, input_dict: dict, config: dict):
149
- self.last_input = input_dict["input"]
+ def invoke(self, input: dict, config: dict):
150
+ self.last_input = input["input"]
151
return {"output": f"dry-run-echo:{self.last_input}"}
152
153
0 commit comments