mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-07-17 16:41:05 +02:00
Merge pull request #1184 from better629/feat_werewolf
Feat fix test_an ut failed without simulator
This commit is contained in:
commit
aa715fcace
2 changed files with 13 additions and 1 deletions
|
|
@ -39,7 +39,9 @@ def get_observation_space() -> spaces.Dict:
|
|||
(spaces.Text(16), spaces.Text(16))
|
||||
), # TODO should be tuple of variable length
|
||||
"player_hunted": spaces.Text(16),
|
||||
"player_current_dead": spaces.Tuple((spaces.Text(16))), # TODO should be tuple of variable length
|
||||
"player_current_dead": spaces.Tuple(
|
||||
(spaces.Text(16), spaces.Text(16))
|
||||
), # TODO should be tuple of variable length
|
||||
"witch_poison_left": spaces.Discrete(2),
|
||||
"witch_antidote_left": spaces.Discrete(2),
|
||||
"winner": spaces.Text(16),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue