rhythm_env / __init__.py
InosLihka's picture
env: enrich observation with history, anomalies, and discovery bonus
0a15ab5
raw
history blame contribute delete
724 Bytes
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""
RhythmEnv — Life Simulator RL Environment for OpenEnv.
A holistic life resource management RL environment where an agent balances
5 life meters (Vitality, Cognition, Progress, Serenity, Connection) across
a 7-day week with hidden personality profiles.
"""
from .client import RhythmEnv
from .models import ActionType, RhythmAction, RhythmObservation, RhythmState, StepRecord
__all__ = [
"RhythmEnv",
"RhythmAction",
"RhythmObservation",
"RhythmState",
"StepRecord",
"ActionType",
]