From 229fa988c575c291cff6ffc1f9d15814d9d2a884 Mon Sep 17 00:00:00 2001 From: Xingyao Wang Date: Sun, 7 Apr 2024 01:04:17 +0800 Subject: [PATCH] remove seed=42 to fix #813 (#830) --- agenthub/codeact_agent/codeact_agent.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/agenthub/codeact_agent/codeact_agent.py b/agenthub/codeact_agent/codeact_agent.py index 0e8f918f708f..17b8aadb25a3 100644 --- a/agenthub/codeact_agent/codeact_agent.py +++ b/agenthub/codeact_agent/codeact_agent.py @@ -123,8 +123,7 @@ def step(self, state: State) -> Action: response = self.llm.completion( messages=self.messages, stop=[""], - temperature=0.0, - seed=42, + temperature=0.0 ) action_str: str = parse_response(response) self.messages.append({"role": "assistant", "content": action_str})