Skip to content

Commit

Permalink
RL error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim0x60 committed Apr 26, 2024
1 parent 1f304bc commit 31f7ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "seidr"
version = "3.2.3"
version = "3.2.4"
description = "Synthesize Execute Instruct Debug Rank"
authors = ["Vadim Liventsev <[email protected]>", "Anastasia Grishina <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion seidr/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def play(self):
self.tot_txt += info.get('memos', '')
except RuntimeError as e:
self.tot_reward = -1000
self.tot_txt = str(e)
self.tot_txt += f'FATAL {e}'

self.done = True

Expand Down

0 comments on commit 31f7ede

Please sign in to comment.