AgentnessBench / proteus /game /agents /__init__.py
irregular6612's picture
refactor: restructure proteus into game/web subpackages
426093b
Raw
History Blame Contribute Delete
331 Bytes
"""proteus.game.agents — slim LLM agent abstraction (no forfeit/stake/risk)."""
from proteus.game.agents.base import Agent, ActResult, ProbeResult
from proteus.game.agents.human import HumanAgent
from proteus.game.agents.vanilla import VanillaAgent
__all__ = ["Agent", "ActResult", "ProbeResult", "HumanAgent", "VanillaAgent"]