Skip to content

Commit 05cb154

Browse files
vinod0mCopilot
andauthored
Update src/agents/deepagent.py
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent dc4faca commit 05cb154

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/agents/deepagent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,8 @@ def __init__(self):
146146
self.last_input = None
147147

148148
def invoke(self, input_dict: dict, config: dict):
149-
self.last_input = input_dict["input"]
149+
def invoke(self, input: dict, config: dict):
150+
self.last_input = input["input"]
150151
return {"output": f"dry-run-echo:{self.last_input}"}
151152

152153

0 commit comments

Comments
 (0)