Skip to content

Commit

Permalink
remove seed=42 to fix All-Hands-AI#813 (All-Hands-AI#830)
Browse files Browse the repository at this point in the history
  • Loading branch information
xingyaoww committed Apr 6, 2024
1 parent 5dda0dd commit 229fa98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions agenthub/codeact_agent/codeact_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ def step(self, state: State) -> Action:
response = self.llm.completion(
messages=self.messages,
stop=["</execute>"],
temperature=0.0,
seed=42,
temperature=0.0
)
action_str: str = parse_response(response)
self.messages.append({"role": "assistant", "content": action_str})
Expand Down

0 comments on commit 229fa98

Please sign in to comment.