File size: 787 Bytes
77da5ce | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # openenv.yaml — LifeStack Manifest
# Defines the environment for OpenEnv CLI compatibility.
name: lifestack-v1
version: 1.1.0
description: "Premium multi-domain life conflict resolution simulation."
entry_point: "core.lifestack_env:LifeStackEnv"
action_cls: "core.lifestack_env:LifeStackAction"
observation_cls: "core.lifestack_env:LifeStackObservation"
metadata:
difficulty_range: [1, 5]
max_episode_steps: 50
task_domains: [career, finances, relationships, physical_health, mental_wellbeing, time, transport_crisis, code_merge_crisis]
domains: ["career", "finances", "relationships", "physical_health", "mental_wellbeing", "time"]
resources: ["time", "money", "energy"]
# Optional: Default serve configuration
serve:
host: "0.0.0.0"
port: 8000
enable_web: true
|