19 lines
475 B
Python
19 lines
475 B
Python
"""
|
|
Agents are players that can participate in a game. THey contain a unified
|
|
API that allows other systems to apply to them for communication.
|
|
For example:
|
|
|
|
1. The PyClient can locally run a game with agents as participants.
|
|
2. A PyServer can host a web server and asks a specific agent to respond.
|
|
"""
|
|
|
|
from .agent import Agent
|
|
from .chaos import AgentOfChaos
|
|
from .mute import MuteAgent
|
|
|
|
__all__ = [
|
|
"Agent",
|
|
"AgentOfChaos",
|
|
"MuteAgent",
|
|
]
|