chane35's picture
PERMANENCE: reversibility-aware RL environment for training LLM agents
796da7c verified
Raw
History Blame
471 Bytes
"""World state data structures and mutation logic."""
from .state import (
ActionRecord,
EmployeeState,
ExternalRelationshipState,
MutationType,
ProjectState,
WorldState,
WorldStateMutation,
)
from .consequence_engine import ConsequenceEngine
__all__ = [
"ActionRecord",
"EmployeeState",
"ExternalRelationshipState",
"MutationType",
"ProjectState",
"WorldState",
"WorldStateMutation",
"ConsequenceEngine",
]