CoolFace
Apppublic

Jaswin-27/MetaXSCALER_Hackathon

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
openenv.yaml36 linesDownload Raw Back to root
1name: life-decision-simulator
2description: A real-world environment where an agent makes life decisions like work, rest, and study to optimize money, energy, and happiness.
3
4entry_point: main:app
5
6tasks:
7  - name: survive
8    description: Survive for at least 5 days
9    grader: graders:grade_survive
10
11  - name: earn_money
12    description: Earn at least 200 money
13    grader: graders:grade_money
14
15  - name: balance_life
16    description: Maintain balance between money, happiness, and energy
17    grader: graders:grade_balance
18
19actions:
20  type: object
21  properties:
22    type:
23      type: string
24      enum: ["work", "rest", "study"]
25
26observations:
27  type: object
28  properties:
29    energy:
30      type: integer
31    money:
32      type: integer
33    happiness:
34      type: integer
35    day:
36      type: integer