From 847c2148a63275715bf02c4955a8320ce6b3af1c Mon Sep 17 00:00:00 2001 From: Hesham <61054665+h9-tect@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:15:23 +0200 Subject: [PATCH] update messages (#156) * update messages * Update opendevin/action/agent.py Co-authored-by: Robert Brennan * Update opendevin/action/agent.py Co-authored-by: Robert Brennan --------- Co-authored-by: Hesham Haroon Co-authored-by: Robert Brennan --- opendevin/action/agent.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/opendevin/action/agent.py b/opendevin/action/agent.py index 48463dbb88..c040ec93a8 100644 --- a/opendevin/action/agent.py +++ b/opendevin/action/agent.py @@ -19,7 +19,8 @@ class AgentRecallAction(ExecutableAction): @property def message(self) -> str: - return f"Recalling memories with query: {self.query}" + return f"Let me dive into my memories to find what you're looking for! Searching for: '{self.query}'. This might take a moment." + @dataclass @@ -32,7 +33,8 @@ class AgentThinkAction(NotExecutableAction): @property def message(self) -> str: - return f"Thinking: {self.thought}" + return self.thought + @dataclass class AgentEchoAction(ExecutableAction): @@ -44,7 +46,8 @@ class AgentEchoAction(ExecutableAction): @property def message(self) -> str: - return f"Echoing: {self.content}" + return self.content + @dataclass class AgentFinishAction(NotExecutableAction): @@ -55,4 +58,4 @@ class AgentFinishAction(NotExecutableAction): @property def message(self) -> str: - return "Finished!" + return "All done! What's next on the agenda?"