Spaces:
Build error
Build error
File size: 2,219 Bytes
01523b5 |
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 |
from __future__ import annotations
from typing import TYPE_CHECKING, Any, List, Optional, Dict
from copy import deepcopy
from . import describer_registry as DescriberRegistry
from .base import BaseDescriber
if TYPE_CHECKING:
from agentverse.environments.pokemon import PokemonEnvironment
@DescriberRegistry.register("pokemon")
class PokemonDescriber(BaseDescriber):
def get_env_description(
self,
environment: PokemonEnvironment,
player_content: str = "",
) -> List[str]:
time = environment.time
if player_content == "":
agent_to_location = environment.get_agent_to_location()
descriptions = []
for agent in environment.agents:
description = ""
if agent.name not in agent_to_location:
# Agent is on the way to a location
descriptions.append("")
continue
location = agent_to_location[agent.name]
agents_in_same_loc = deepcopy(environment.locations_to_agents[location])
agents_in_same_loc.remove(agent.name)
agents_in_same_loc = list(agents_in_same_loc)
description += f"It is now {time}. You are at {location}."
if len(agents_in_same_loc) == 0:
description += " There is no one else here."
elif len(agents_in_same_loc) == 1:
description += f" {agents_in_same_loc[0]} is also here."
else:
other_agents = ", ".join(agents_in_same_loc)
description += f" {other_agents} are also here."
# description += " The locations you can go to include: \n"
# for loc, dsec in environment.locations_descriptions.items():
# description += f"{loc}: {dsec}\n"
descriptions.append(description)
return descriptions
else:
description = ""
description += f"It is now {time}. Brendan is talking to you.\n"
description += f"[Brendan]: {player_content}\n"
return [description for _ in range(len(environment.agents))]
|