Spaces:
Paused
Paused
File size: 864 Bytes
1070765 | 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 | """Avalon (Werewolf) multi-agent plugin."""
from watchdog_env.plugins.avalon.avalon_config import AvalonConfig, LEVEL_CONFIG
from watchdog_env.plugins.avalon.avalon_game import AvalonGame
from watchdog_env.plugins.avalon.avalon_models import (
GameState,
Player,
create_game,
_DAY_EVENTS,
_DAY_EVENTS_NO_DEATH,
_DAY_OPENERS,
)
from watchdog_env.plugins.avalon.avalon_plugin import AvalonPlugin
from watchdog_env.plugins.avalon.llm import (
ChatResponse,
GamePlayModel,
get_game_play_model,
_generate_player_response_llm,
_get_llm,
_llm,
)
__all__ = [
"AvalonPlugin",
"AvalonConfig",
"AvalonGame",
"LEVEL_CONFIG",
"GameState",
"Player",
"create_game",
"_generate_player_response_llm",
"_get_llm",
"_llm",
"ChatResponse",
"GamePlayModel",
"get_game_play_model",
]
|