Spaces:
Running
Running
File size: 6,665 Bytes
bdafe83 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
from typing import List, Union
from ..agent import SIGNAL_END_OF_CONVERSATION, Moderator
from ..config import AgentConfig, EnvironmentConfig
from ..message import Message, MessagePool
from .base import Environment, TimeStep
class Conversation(Environment):
"""
Turn-based fully observable conversation environment.
Next speaker order is either parallel or round-robin.
"""
type_name = "conversation"
def __init__(self, player_names: List[str], parallel: bool = False, **kwargs):
super().__init__(player_names=player_names, parallel=parallel, **kwargs)
self.parallel = parallel
# The "state" of the environment is maintained by the message pool
self.message_pool = MessagePool()
self._current_turn = 0
self._next_player_index = 0
def reset(self):
self._current_turn = 0
self._next_player_index = 0
self.message_pool.reset()
init_timestep = TimeStep(
observation=[], reward=self.get_zero_rewards(), terminal=False
)
return init_timestep
@property
def phase_index(self):
return self._phase_index
@phase_index.setter
def phase_index(self, value):
self._phase_index = value
def to_config(self) -> EnvironmentConfig:
return EnvironmentConfig(
env_type=self.type_name,
player_names=self.player_names,
parallel=self.parallel,
)
def print(self):
self.message_pool.print()
def get_next_player(self) -> str:
"""Get the next player."""
return self.player_names[self._next_player_index]
def get_observation(self, player_name=None) -> List[Message]:
"""Get observation for the player."""
if player_name is None:
return self.message_pool.get_all_messages()
else:
return self.message_pool.get_visible_messages(
player_name, turn=self._current_turn
)
def is_terminal(self) -> bool:
"""Check if the conversation is over."""
# If the last message is the signal, then the conversation is over
if self.message_pool.last_message.content.startswith(
SIGNAL_END_OF_CONVERSATION
):
return True
def step(self, player_name: str, action: str) -> TimeStep:
"""
Step function that is called by the arena.
Args:
player_name: the name of the player that takes the action
action: the action that the agents wants to take
"""
message = Message(
agent_name=player_name, content=action, turn=self._current_turn
)
self.message_pool.append_message(message)
# Update the counters
if not self.parallel or self._next_player_index == 0:
self._current_turn += 1
self._next_player_index = (self._next_player_index + 1) % self.num_players
timestep = TimeStep(
observation=self.get_observation(),
reward=self.get_zero_rewards(),
terminal=self.is_terminal(),
) # Return all the messages
return timestep
class ModeratedConversation(Conversation):
"""
Turn-based fully observable conversation environment.
Next speaker order is either parallel or round-robin.
Moderator is a special agent that can see all messages and can decide whether the conversation is over.
"""
type_name = "moderated_conversation"
def __init__(
self,
player_names: List[str],
moderator: Union[Moderator, AgentConfig],
parallel: bool = False,
moderator_visibility="all",
moderator_period=None,
**kwargs,
):
super().__init__(player_names=player_names, parallel=parallel, **kwargs)
if isinstance(moderator, AgentConfig):
moderator_config = moderator
moderator = Moderator.from_config(moderator_config)
elif not isinstance(moderator, Moderator):
raise ValueError(
"moderator must be either an AgentConfig or a Moderator instance."
)
self.moderator = moderator
self.moderator_visibility = moderator_visibility
if moderator_period is None:
if parallel:
self.moderator_period = "round"
else:
self.moderator_period = "turn"
else:
self.moderator_period = moderator_period
def to_config(self) -> EnvironmentConfig:
# This environment contains some special config arguments that needs to be handle specially
return EnvironmentConfig(
env_type=self.type_name,
player_names=self.player_names,
parallel=self.parallel,
moderator=self.moderator.to_config(),
moderator_visibility=self.moderator_visibility,
moderator_period=self.moderator_period,
)
def step(self, player_name: str, action: str) -> TimeStep:
"""
Step function that is called by the arena.
Args:
player_name: the name of the player that takes the action
action: the action that the agents wants to take
"""
message = Message(
agent_name=player_name, content=action, turn=self._current_turn
)
self.message_pool.append_message(message)
# Round-robin order for the next player
self._next_player_index = (self._next_player_index + 1) % self.num_players
if self.moderator_period == "turn" or (
self.moderator_period == "round" and self._next_player_index == 0
):
# Moderator's turn
moderator_history = self.message_pool.get_all_messages()
moderator_response = self.moderator(moderator_history)
moderator_message = Message(
agent_name=self.moderator.name,
content=moderator_response,
turn=self._current_turn,
visible_to=self.moderator_visibility,
)
self.message_pool.append_message(moderator_message)
terminal = (
self.moderator.is_terminal(moderator_history) or self.is_terminal()
)
else:
terminal = self.is_terminal()
# Update the counters
if not self.parallel or self._next_player_index == 0:
self._current_turn += 1
timestep = TimeStep(
observation=self.get_observation(),
reward=self.get_zero_rewards(),
terminal=terminal,
) # Return all the messages
return timestep
|