shawmakesmagic commited on
Commit
d529222
·
verified ·
1 Parent(s): b4bb55e

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - reinforcement-learning
5
+ - game-simulation
6
+ - agent-training
7
+ tags:
8
+ - babylon
9
+ - prediction-markets
10
+ - game-worlds
11
+ - agent-trajectories
12
+ - offline-simulation
13
+ size_categories:
14
+ - 10K<n<100K
15
+ ---
16
+
17
+ # elizaos/babylon-game-data
18
+
19
+ ## Dataset Description
20
+
21
+ Complete Babylon game data for reinforcement learning and offline simulation.
22
+
23
+ **Version:** 1.0.0
24
+ **Collected:** 2025-11-16T04:18:42.175Z
25
+ **Game Worlds:** 2
26
+ **Agent Trajectories:** 20
27
+ **Benchmarks:** 4
28
+
29
+ ## What's Included
30
+
31
+ ### 1. Complete Game Worlds
32
+ - Prediction market scenarios
33
+ - 30-day timelines with events
34
+ - NPC conversations and interactions
35
+ - Feed posts and social dynamics
36
+ - Ground truth outcomes
37
+
38
+ ### 2. Agent Trajectories
39
+ - Complete agent decision sequences
40
+ - LLM calls (prompts and responses)
41
+ - Game environment at each step
42
+ - Actions taken and outcomes
43
+ - Rewards and ground truth
44
+
45
+ ### 3. Benchmark Results
46
+ - Model performance evaluations
47
+ - Comparison to baselines
48
+ - Detailed metrics
49
+
50
+ ## Data Organization
51
+
52
+ ### By Month
53
+ ```
54
+ by-month/
55
+ 2025-10.json - October 2025 data
56
+ 2025-11.json - November 2025 data
57
+ 2025-12.json - December 2025 data
58
+ ...
59
+ ```
60
+
61
+ Each month file contains:
62
+ - Game worlds generated that month
63
+ - Agent trajectories from that month
64
+ - Benchmark results from that month
65
+
66
+ ## Offline Simulation
67
+
68
+ This dataset enables **offline, faster-than-real-time simulation**:
69
+
70
+ ```bash
71
+ # Download dataset
72
+ from datasets import load_dataset
73
+ dataset = load_dataset("elizaos/babylon-game-data")
74
+
75
+ # Load into Babylon offline simulator
76
+ bun run scripts/run-offline-simulation.ts \
77
+ --data=path/to/downloaded/data.json \
78
+ --fast-forward \
79
+ --agent=my-agent
80
+ ```
81
+
82
+ ## Use Cases
83
+
84
+ 1. **RL Training** - Train agents on historical gameplay
85
+ 2. **Model Evaluation** - Test agents on past scenarios
86
+ 3. **Offline Development** - Develop without live system
87
+ 4. **Research** - Analyze agent behavior and game dynamics
88
+ 5. **Faster Testing** - Run simulations at high speed
89
+
90
+ ## Data Format
91
+
92
+ ### Game World
93
+ ```json
94
+ {
95
+ "worldId": "...",
96
+ "month": "2025-11",
97
+ "question": "Will Bitcoin reach $100k?",
98
+ "outcome": true,
99
+ "timeline": [ /* 30 days of events */ ],
100
+ "npcs": [ /* NPC data */ ],
101
+ "events": [ /* All events */ ],
102
+ "feedPosts": [ /* Social feed */ ]
103
+ }
104
+ ```
105
+
106
+ ### Agent Trajectory
107
+ ```json
108
+ {
109
+ "trajectoryId": "...",
110
+ "month": "2025-11",
111
+ "steps": [
112
+ {
113
+ "environment_state": { /* game state */ },
114
+ "llm_calls": [ /* agent decisions */ ],
115
+ "action": { /* what agent did */ },
116
+ "reward": 50
117
+ }
118
+ ],
119
+ "totalReward": 1500,
120
+ "finalPnL": 1500
121
+ }
122
+ ```
123
+
124
+ ## Citation
125
+
126
+ ```bibtex
127
+ @dataset{babylon_game_data_2025,
128
+ title = {Babylon Game Data - Complete RL Dataset},
129
+ author = {Babylon Labs},
130
+ year = {2025},
131
+ url = {https://huggingface.co/datasets/elizaos/babylon-game-data}
132
+ }
133
+ ```
134
+
135
+ ## License
136
+
137
+ MIT
benchmarks.jsonl ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {"benchmarkId":"bench-1","modelId":"llama8b","month":"2025-11","metrics":{"totalPnl":1500,"accuracy":1}}
2
+ {"benchmarkId":"bench-2","modelId":"qwen","month":"2025-11","metrics":{"totalPnl":1500,"accuracy":1}}
3
+ {"benchmarkId":"bench-3","modelId":"llama-8b-instant","month":"2025-11","metrics":{"totalPnl":-674,"accuracy":0.39}}
4
+ {"benchmarkId":"bench-4","modelId":"qwen-32b","month":"2025-11","metrics":{"totalPnl":-76,"accuracy":0.48}}
by-month/2025-10.json ADDED
@@ -0,0 +1,389 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "month": "2025-10",
3
+ "worlds": [
4
+ {
5
+ "worldId": "world-oct",
6
+ "question": "Will BTC hit $100k in October?",
7
+ "outcome": true,
8
+ "month": "2025-10",
9
+ "generatedAt": "2025-10-01T00:00:00Z",
10
+ "timeline": [],
11
+ "npcs": [],
12
+ "events": [],
13
+ "feedPosts": [],
14
+ "metadata": {}
15
+ }
16
+ ],
17
+ "trajectories": [
18
+ {
19
+ "trajectoryId": "traj-0",
20
+ "agentId": "agent-test",
21
+ "month": "2025-10",
22
+ "scenario": "scenario-0",
23
+ "steps": [
24
+ {
25
+ "stepNumber": 1,
26
+ "environmentState": {
27
+ "agentBalance": 10000,
28
+ "agentPnL": 0
29
+ },
30
+ "llm_calls": [
31
+ {
32
+ "model": "test-model",
33
+ "user_prompt": "What should I do?",
34
+ "response": "Buy shares"
35
+ }
36
+ ],
37
+ "action": {
38
+ "type": "BUY_SHARES",
39
+ "parameters": {
40
+ "amount": 100
41
+ },
42
+ "success": true
43
+ },
44
+ "reward": 50
45
+ }
46
+ ],
47
+ "totalReward": 50,
48
+ "finalPnL": 1000,
49
+ "metrics": {
50
+ "tradesExecuted": 1
51
+ }
52
+ },
53
+ {
54
+ "trajectoryId": "traj-1",
55
+ "agentId": "agent-test",
56
+ "month": "2025-10",
57
+ "scenario": "scenario-1",
58
+ "steps": [
59
+ {
60
+ "stepNumber": 1,
61
+ "environmentState": {
62
+ "agentBalance": 10000,
63
+ "agentPnL": 0
64
+ },
65
+ "llm_calls": [
66
+ {
67
+ "model": "test-model",
68
+ "user_prompt": "What should I do?",
69
+ "response": "Buy shares"
70
+ }
71
+ ],
72
+ "action": {
73
+ "type": "BUY_SHARES",
74
+ "parameters": {
75
+ "amount": 100
76
+ },
77
+ "success": true
78
+ },
79
+ "reward": 50
80
+ }
81
+ ],
82
+ "totalReward": 100,
83
+ "finalPnL": 1100,
84
+ "metrics": {
85
+ "tradesExecuted": 2
86
+ }
87
+ },
88
+ {
89
+ "trajectoryId": "traj-2",
90
+ "agentId": "agent-test",
91
+ "month": "2025-10",
92
+ "scenario": "scenario-2",
93
+ "steps": [
94
+ {
95
+ "stepNumber": 1,
96
+ "environmentState": {
97
+ "agentBalance": 10000,
98
+ "agentPnL": 0
99
+ },
100
+ "llm_calls": [
101
+ {
102
+ "model": "test-model",
103
+ "user_prompt": "What should I do?",
104
+ "response": "Buy shares"
105
+ }
106
+ ],
107
+ "action": {
108
+ "type": "BUY_SHARES",
109
+ "parameters": {
110
+ "amount": 100
111
+ },
112
+ "success": true
113
+ },
114
+ "reward": 50
115
+ }
116
+ ],
117
+ "totalReward": 150,
118
+ "finalPnL": 1200,
119
+ "metrics": {
120
+ "tradesExecuted": 3
121
+ }
122
+ },
123
+ {
124
+ "trajectoryId": "traj-3",
125
+ "agentId": "agent-test",
126
+ "month": "2025-10",
127
+ "scenario": "scenario-3",
128
+ "steps": [
129
+ {
130
+ "stepNumber": 1,
131
+ "environmentState": {
132
+ "agentBalance": 10000,
133
+ "agentPnL": 0
134
+ },
135
+ "llm_calls": [
136
+ {
137
+ "model": "test-model",
138
+ "user_prompt": "What should I do?",
139
+ "response": "Buy shares"
140
+ }
141
+ ],
142
+ "action": {
143
+ "type": "BUY_SHARES",
144
+ "parameters": {
145
+ "amount": 100
146
+ },
147
+ "success": true
148
+ },
149
+ "reward": 50
150
+ }
151
+ ],
152
+ "totalReward": 200,
153
+ "finalPnL": 1300,
154
+ "metrics": {
155
+ "tradesExecuted": 4
156
+ }
157
+ },
158
+ {
159
+ "trajectoryId": "traj-4",
160
+ "agentId": "agent-test",
161
+ "month": "2025-10",
162
+ "scenario": "scenario-4",
163
+ "steps": [
164
+ {
165
+ "stepNumber": 1,
166
+ "environmentState": {
167
+ "agentBalance": 10000,
168
+ "agentPnL": 0
169
+ },
170
+ "llm_calls": [
171
+ {
172
+ "model": "test-model",
173
+ "user_prompt": "What should I do?",
174
+ "response": "Buy shares"
175
+ }
176
+ ],
177
+ "action": {
178
+ "type": "BUY_SHARES",
179
+ "parameters": {
180
+ "amount": 100
181
+ },
182
+ "success": true
183
+ },
184
+ "reward": 50
185
+ }
186
+ ],
187
+ "totalReward": 250,
188
+ "finalPnL": 1400,
189
+ "metrics": {
190
+ "tradesExecuted": 5
191
+ }
192
+ },
193
+ {
194
+ "trajectoryId": "traj-5",
195
+ "agentId": "agent-test",
196
+ "month": "2025-10",
197
+ "scenario": "scenario-0",
198
+ "steps": [
199
+ {
200
+ "stepNumber": 1,
201
+ "environmentState": {
202
+ "agentBalance": 10000,
203
+ "agentPnL": 0
204
+ },
205
+ "llm_calls": [
206
+ {
207
+ "model": "test-model",
208
+ "user_prompt": "What should I do?",
209
+ "response": "Buy shares"
210
+ }
211
+ ],
212
+ "action": {
213
+ "type": "BUY_SHARES",
214
+ "parameters": {
215
+ "amount": 100
216
+ },
217
+ "success": true
218
+ },
219
+ "reward": 50
220
+ }
221
+ ],
222
+ "totalReward": 300,
223
+ "finalPnL": 1500,
224
+ "metrics": {
225
+ "tradesExecuted": 6
226
+ }
227
+ },
228
+ {
229
+ "trajectoryId": "traj-6",
230
+ "agentId": "agent-test",
231
+ "month": "2025-10",
232
+ "scenario": "scenario-1",
233
+ "steps": [
234
+ {
235
+ "stepNumber": 1,
236
+ "environmentState": {
237
+ "agentBalance": 10000,
238
+ "agentPnL": 0
239
+ },
240
+ "llm_calls": [
241
+ {
242
+ "model": "test-model",
243
+ "user_prompt": "What should I do?",
244
+ "response": "Buy shares"
245
+ }
246
+ ],
247
+ "action": {
248
+ "type": "BUY_SHARES",
249
+ "parameters": {
250
+ "amount": 100
251
+ },
252
+ "success": true
253
+ },
254
+ "reward": 50
255
+ }
256
+ ],
257
+ "totalReward": 350,
258
+ "finalPnL": 1600,
259
+ "metrics": {
260
+ "tradesExecuted": 7
261
+ }
262
+ },
263
+ {
264
+ "trajectoryId": "traj-7",
265
+ "agentId": "agent-test",
266
+ "month": "2025-10",
267
+ "scenario": "scenario-2",
268
+ "steps": [
269
+ {
270
+ "stepNumber": 1,
271
+ "environmentState": {
272
+ "agentBalance": 10000,
273
+ "agentPnL": 0
274
+ },
275
+ "llm_calls": [
276
+ {
277
+ "model": "test-model",
278
+ "user_prompt": "What should I do?",
279
+ "response": "Buy shares"
280
+ }
281
+ ],
282
+ "action": {
283
+ "type": "BUY_SHARES",
284
+ "parameters": {
285
+ "amount": 100
286
+ },
287
+ "success": true
288
+ },
289
+ "reward": 50
290
+ }
291
+ ],
292
+ "totalReward": 400,
293
+ "finalPnL": 1700,
294
+ "metrics": {
295
+ "tradesExecuted": 8
296
+ }
297
+ },
298
+ {
299
+ "trajectoryId": "traj-8",
300
+ "agentId": "agent-test",
301
+ "month": "2025-10",
302
+ "scenario": "scenario-3",
303
+ "steps": [
304
+ {
305
+ "stepNumber": 1,
306
+ "environmentState": {
307
+ "agentBalance": 10000,
308
+ "agentPnL": 0
309
+ },
310
+ "llm_calls": [
311
+ {
312
+ "model": "test-model",
313
+ "user_prompt": "What should I do?",
314
+ "response": "Buy shares"
315
+ }
316
+ ],
317
+ "action": {
318
+ "type": "BUY_SHARES",
319
+ "parameters": {
320
+ "amount": 100
321
+ },
322
+ "success": true
323
+ },
324
+ "reward": 50
325
+ }
326
+ ],
327
+ "totalReward": 450,
328
+ "finalPnL": 1800,
329
+ "metrics": {
330
+ "tradesExecuted": 9
331
+ }
332
+ },
333
+ {
334
+ "trajectoryId": "traj-9",
335
+ "agentId": "agent-test",
336
+ "month": "2025-10",
337
+ "scenario": "scenario-4",
338
+ "steps": [
339
+ {
340
+ "stepNumber": 1,
341
+ "environmentState": {
342
+ "agentBalance": 10000,
343
+ "agentPnL": 0
344
+ },
345
+ "llm_calls": [
346
+ {
347
+ "model": "test-model",
348
+ "user_prompt": "What should I do?",
349
+ "response": "Buy shares"
350
+ }
351
+ ],
352
+ "action": {
353
+ "type": "BUY_SHARES",
354
+ "parameters": {
355
+ "amount": 100
356
+ },
357
+ "success": true
358
+ },
359
+ "reward": 50
360
+ }
361
+ ],
362
+ "totalReward": 500,
363
+ "finalPnL": 1900,
364
+ "metrics": {
365
+ "tradesExecuted": 10
366
+ }
367
+ }
368
+ ],
369
+ "benchmarks": [
370
+ {
371
+ "benchmarkId": "bench-1",
372
+ "modelId": "llama8b",
373
+ "month": "2025-11",
374
+ "metrics": {
375
+ "totalPnl": 1500,
376
+ "accuracy": 1
377
+ }
378
+ },
379
+ {
380
+ "benchmarkId": "bench-2",
381
+ "modelId": "qwen",
382
+ "month": "2025-11",
383
+ "metrics": {
384
+ "totalPnl": 1500,
385
+ "accuracy": 1
386
+ }
387
+ }
388
+ ]
389
+ }
by-month/2025-11.json ADDED
@@ -0,0 +1,389 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "month": "2025-11",
3
+ "worlds": [
4
+ {
5
+ "worldId": "world-nov",
6
+ "question": "Will ETH merge successfully in November?",
7
+ "outcome": true,
8
+ "month": "2025-11",
9
+ "generatedAt": "2025-11-01T00:00:00Z",
10
+ "timeline": [],
11
+ "npcs": [],
12
+ "events": [],
13
+ "feedPosts": [],
14
+ "metadata": {}
15
+ }
16
+ ],
17
+ "trajectories": [
18
+ {
19
+ "trajectoryId": "traj-10",
20
+ "agentId": "agent-test",
21
+ "month": "2025-11",
22
+ "scenario": "scenario-0",
23
+ "steps": [
24
+ {
25
+ "stepNumber": 1,
26
+ "environmentState": {
27
+ "agentBalance": 10000,
28
+ "agentPnL": 0
29
+ },
30
+ "llm_calls": [
31
+ {
32
+ "model": "test-model",
33
+ "user_prompt": "What should I do?",
34
+ "response": "Buy shares"
35
+ }
36
+ ],
37
+ "action": {
38
+ "type": "BUY_SHARES",
39
+ "parameters": {
40
+ "amount": 100
41
+ },
42
+ "success": true
43
+ },
44
+ "reward": 50
45
+ }
46
+ ],
47
+ "totalReward": 550,
48
+ "finalPnL": 2000,
49
+ "metrics": {
50
+ "tradesExecuted": 11
51
+ }
52
+ },
53
+ {
54
+ "trajectoryId": "traj-11",
55
+ "agentId": "agent-test",
56
+ "month": "2025-11",
57
+ "scenario": "scenario-1",
58
+ "steps": [
59
+ {
60
+ "stepNumber": 1,
61
+ "environmentState": {
62
+ "agentBalance": 10000,
63
+ "agentPnL": 0
64
+ },
65
+ "llm_calls": [
66
+ {
67
+ "model": "test-model",
68
+ "user_prompt": "What should I do?",
69
+ "response": "Buy shares"
70
+ }
71
+ ],
72
+ "action": {
73
+ "type": "BUY_SHARES",
74
+ "parameters": {
75
+ "amount": 100
76
+ },
77
+ "success": true
78
+ },
79
+ "reward": 50
80
+ }
81
+ ],
82
+ "totalReward": 600,
83
+ "finalPnL": 2100,
84
+ "metrics": {
85
+ "tradesExecuted": 12
86
+ }
87
+ },
88
+ {
89
+ "trajectoryId": "traj-12",
90
+ "agentId": "agent-test",
91
+ "month": "2025-11",
92
+ "scenario": "scenario-2",
93
+ "steps": [
94
+ {
95
+ "stepNumber": 1,
96
+ "environmentState": {
97
+ "agentBalance": 10000,
98
+ "agentPnL": 0
99
+ },
100
+ "llm_calls": [
101
+ {
102
+ "model": "test-model",
103
+ "user_prompt": "What should I do?",
104
+ "response": "Buy shares"
105
+ }
106
+ ],
107
+ "action": {
108
+ "type": "BUY_SHARES",
109
+ "parameters": {
110
+ "amount": 100
111
+ },
112
+ "success": true
113
+ },
114
+ "reward": 50
115
+ }
116
+ ],
117
+ "totalReward": 650,
118
+ "finalPnL": 2200,
119
+ "metrics": {
120
+ "tradesExecuted": 13
121
+ }
122
+ },
123
+ {
124
+ "trajectoryId": "traj-13",
125
+ "agentId": "agent-test",
126
+ "month": "2025-11",
127
+ "scenario": "scenario-3",
128
+ "steps": [
129
+ {
130
+ "stepNumber": 1,
131
+ "environmentState": {
132
+ "agentBalance": 10000,
133
+ "agentPnL": 0
134
+ },
135
+ "llm_calls": [
136
+ {
137
+ "model": "test-model",
138
+ "user_prompt": "What should I do?",
139
+ "response": "Buy shares"
140
+ }
141
+ ],
142
+ "action": {
143
+ "type": "BUY_SHARES",
144
+ "parameters": {
145
+ "amount": 100
146
+ },
147
+ "success": true
148
+ },
149
+ "reward": 50
150
+ }
151
+ ],
152
+ "totalReward": 700,
153
+ "finalPnL": 2300,
154
+ "metrics": {
155
+ "tradesExecuted": 14
156
+ }
157
+ },
158
+ {
159
+ "trajectoryId": "traj-14",
160
+ "agentId": "agent-test",
161
+ "month": "2025-11",
162
+ "scenario": "scenario-4",
163
+ "steps": [
164
+ {
165
+ "stepNumber": 1,
166
+ "environmentState": {
167
+ "agentBalance": 10000,
168
+ "agentPnL": 0
169
+ },
170
+ "llm_calls": [
171
+ {
172
+ "model": "test-model",
173
+ "user_prompt": "What should I do?",
174
+ "response": "Buy shares"
175
+ }
176
+ ],
177
+ "action": {
178
+ "type": "BUY_SHARES",
179
+ "parameters": {
180
+ "amount": 100
181
+ },
182
+ "success": true
183
+ },
184
+ "reward": 50
185
+ }
186
+ ],
187
+ "totalReward": 750,
188
+ "finalPnL": 2400,
189
+ "metrics": {
190
+ "tradesExecuted": 15
191
+ }
192
+ },
193
+ {
194
+ "trajectoryId": "traj-15",
195
+ "agentId": "agent-test",
196
+ "month": "2025-11",
197
+ "scenario": "scenario-0",
198
+ "steps": [
199
+ {
200
+ "stepNumber": 1,
201
+ "environmentState": {
202
+ "agentBalance": 10000,
203
+ "agentPnL": 0
204
+ },
205
+ "llm_calls": [
206
+ {
207
+ "model": "test-model",
208
+ "user_prompt": "What should I do?",
209
+ "response": "Buy shares"
210
+ }
211
+ ],
212
+ "action": {
213
+ "type": "BUY_SHARES",
214
+ "parameters": {
215
+ "amount": 100
216
+ },
217
+ "success": true
218
+ },
219
+ "reward": 50
220
+ }
221
+ ],
222
+ "totalReward": 800,
223
+ "finalPnL": 2500,
224
+ "metrics": {
225
+ "tradesExecuted": 16
226
+ }
227
+ },
228
+ {
229
+ "trajectoryId": "traj-16",
230
+ "agentId": "agent-test",
231
+ "month": "2025-11",
232
+ "scenario": "scenario-1",
233
+ "steps": [
234
+ {
235
+ "stepNumber": 1,
236
+ "environmentState": {
237
+ "agentBalance": 10000,
238
+ "agentPnL": 0
239
+ },
240
+ "llm_calls": [
241
+ {
242
+ "model": "test-model",
243
+ "user_prompt": "What should I do?",
244
+ "response": "Buy shares"
245
+ }
246
+ ],
247
+ "action": {
248
+ "type": "BUY_SHARES",
249
+ "parameters": {
250
+ "amount": 100
251
+ },
252
+ "success": true
253
+ },
254
+ "reward": 50
255
+ }
256
+ ],
257
+ "totalReward": 850,
258
+ "finalPnL": 2600,
259
+ "metrics": {
260
+ "tradesExecuted": 17
261
+ }
262
+ },
263
+ {
264
+ "trajectoryId": "traj-17",
265
+ "agentId": "agent-test",
266
+ "month": "2025-11",
267
+ "scenario": "scenario-2",
268
+ "steps": [
269
+ {
270
+ "stepNumber": 1,
271
+ "environmentState": {
272
+ "agentBalance": 10000,
273
+ "agentPnL": 0
274
+ },
275
+ "llm_calls": [
276
+ {
277
+ "model": "test-model",
278
+ "user_prompt": "What should I do?",
279
+ "response": "Buy shares"
280
+ }
281
+ ],
282
+ "action": {
283
+ "type": "BUY_SHARES",
284
+ "parameters": {
285
+ "amount": 100
286
+ },
287
+ "success": true
288
+ },
289
+ "reward": 50
290
+ }
291
+ ],
292
+ "totalReward": 900,
293
+ "finalPnL": 2700,
294
+ "metrics": {
295
+ "tradesExecuted": 18
296
+ }
297
+ },
298
+ {
299
+ "trajectoryId": "traj-18",
300
+ "agentId": "agent-test",
301
+ "month": "2025-11",
302
+ "scenario": "scenario-3",
303
+ "steps": [
304
+ {
305
+ "stepNumber": 1,
306
+ "environmentState": {
307
+ "agentBalance": 10000,
308
+ "agentPnL": 0
309
+ },
310
+ "llm_calls": [
311
+ {
312
+ "model": "test-model",
313
+ "user_prompt": "What should I do?",
314
+ "response": "Buy shares"
315
+ }
316
+ ],
317
+ "action": {
318
+ "type": "BUY_SHARES",
319
+ "parameters": {
320
+ "amount": 100
321
+ },
322
+ "success": true
323
+ },
324
+ "reward": 50
325
+ }
326
+ ],
327
+ "totalReward": 950,
328
+ "finalPnL": 2800,
329
+ "metrics": {
330
+ "tradesExecuted": 19
331
+ }
332
+ },
333
+ {
334
+ "trajectoryId": "traj-19",
335
+ "agentId": "agent-test",
336
+ "month": "2025-11",
337
+ "scenario": "scenario-4",
338
+ "steps": [
339
+ {
340
+ "stepNumber": 1,
341
+ "environmentState": {
342
+ "agentBalance": 10000,
343
+ "agentPnL": 0
344
+ },
345
+ "llm_calls": [
346
+ {
347
+ "model": "test-model",
348
+ "user_prompt": "What should I do?",
349
+ "response": "Buy shares"
350
+ }
351
+ ],
352
+ "action": {
353
+ "type": "BUY_SHARES",
354
+ "parameters": {
355
+ "amount": 100
356
+ },
357
+ "success": true
358
+ },
359
+ "reward": 50
360
+ }
361
+ ],
362
+ "totalReward": 1000,
363
+ "finalPnL": 2900,
364
+ "metrics": {
365
+ "tradesExecuted": 20
366
+ }
367
+ }
368
+ ],
369
+ "benchmarks": [
370
+ {
371
+ "benchmarkId": "bench-3",
372
+ "modelId": "llama-8b-instant",
373
+ "month": "2025-11",
374
+ "metrics": {
375
+ "totalPnl": -674,
376
+ "accuracy": 0.39
377
+ }
378
+ },
379
+ {
380
+ "benchmarkId": "bench-4",
381
+ "modelId": "qwen-32b",
382
+ "month": "2025-11",
383
+ "metrics": {
384
+ "totalPnl": -76,
385
+ "accuracy": 0.48
386
+ }
387
+ }
388
+ ]
389
+ }
complete-data.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "collectedAt": "2025-11-16T03:28:35.256Z",
4
+ "version": "1.0.0",
5
+ "totalWorlds": 0,
6
+ "totalTrajectories": 0,
7
+ "totalBenchmarks": 0,
8
+ "dateRange": {
9
+ "start": "2025-11",
10
+ "end": "2025-11"
11
+ }
12
+ },
13
+ "gameWorlds": [],
14
+ "trajectories": [],
15
+ "benchmarks": []
16
+ }
index.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "collectedAt": "2025-11-16T04:18:42.175Z",
3
+ "version": "1.0.0",
4
+ "totalWorlds": 2,
5
+ "totalTrajectories": 20,
6
+ "totalBenchmarks": 4,
7
+ "dateRange": {
8
+ "start": "2025-10",
9
+ "end": "2025-11"
10
+ }
11
+ }
summary.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "collectedAt": "2025-11-16T04:18:42.175Z",
3
+ "version": "1.0.0",
4
+ "totalWorlds": 2,
5
+ "totalTrajectories": 20,
6
+ "totalBenchmarks": 4,
7
+ "dateRange": {
8
+ "start": "2025-10",
9
+ "end": "2025-11"
10
+ }
11
+ }
trajectories.jsonl ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"trajectoryId":"traj-0","agentId":"agent-test","month":"2025-10","scenario":"scenario-0","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":50,"finalPnL":1000,"metrics":{"tradesExecuted":1}}
2
+ {"trajectoryId":"traj-1","agentId":"agent-test","month":"2025-10","scenario":"scenario-1","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":100,"finalPnL":1100,"metrics":{"tradesExecuted":2}}
3
+ {"trajectoryId":"traj-2","agentId":"agent-test","month":"2025-10","scenario":"scenario-2","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":150,"finalPnL":1200,"metrics":{"tradesExecuted":3}}
4
+ {"trajectoryId":"traj-3","agentId":"agent-test","month":"2025-10","scenario":"scenario-3","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":200,"finalPnL":1300,"metrics":{"tradesExecuted":4}}
5
+ {"trajectoryId":"traj-4","agentId":"agent-test","month":"2025-10","scenario":"scenario-4","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":250,"finalPnL":1400,"metrics":{"tradesExecuted":5}}
6
+ {"trajectoryId":"traj-5","agentId":"agent-test","month":"2025-10","scenario":"scenario-0","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":300,"finalPnL":1500,"metrics":{"tradesExecuted":6}}
7
+ {"trajectoryId":"traj-6","agentId":"agent-test","month":"2025-10","scenario":"scenario-1","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":350,"finalPnL":1600,"metrics":{"tradesExecuted":7}}
8
+ {"trajectoryId":"traj-7","agentId":"agent-test","month":"2025-10","scenario":"scenario-2","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":400,"finalPnL":1700,"metrics":{"tradesExecuted":8}}
9
+ {"trajectoryId":"traj-8","agentId":"agent-test","month":"2025-10","scenario":"scenario-3","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":450,"finalPnL":1800,"metrics":{"tradesExecuted":9}}
10
+ {"trajectoryId":"traj-9","agentId":"agent-test","month":"2025-10","scenario":"scenario-4","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":500,"finalPnL":1900,"metrics":{"tradesExecuted":10}}
11
+ {"trajectoryId":"traj-10","agentId":"agent-test","month":"2025-11","scenario":"scenario-0","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":550,"finalPnL":2000,"metrics":{"tradesExecuted":11}}
12
+ {"trajectoryId":"traj-11","agentId":"agent-test","month":"2025-11","scenario":"scenario-1","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":600,"finalPnL":2100,"metrics":{"tradesExecuted":12}}
13
+ {"trajectoryId":"traj-12","agentId":"agent-test","month":"2025-11","scenario":"scenario-2","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":650,"finalPnL":2200,"metrics":{"tradesExecuted":13}}
14
+ {"trajectoryId":"traj-13","agentId":"agent-test","month":"2025-11","scenario":"scenario-3","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":700,"finalPnL":2300,"metrics":{"tradesExecuted":14}}
15
+ {"trajectoryId":"traj-14","agentId":"agent-test","month":"2025-11","scenario":"scenario-4","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":750,"finalPnL":2400,"metrics":{"tradesExecuted":15}}
16
+ {"trajectoryId":"traj-15","agentId":"agent-test","month":"2025-11","scenario":"scenario-0","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":800,"finalPnL":2500,"metrics":{"tradesExecuted":16}}
17
+ {"trajectoryId":"traj-16","agentId":"agent-test","month":"2025-11","scenario":"scenario-1","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":850,"finalPnL":2600,"metrics":{"tradesExecuted":17}}
18
+ {"trajectoryId":"traj-17","agentId":"agent-test","month":"2025-11","scenario":"scenario-2","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":900,"finalPnL":2700,"metrics":{"tradesExecuted":18}}
19
+ {"trajectoryId":"traj-18","agentId":"agent-test","month":"2025-11","scenario":"scenario-3","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":950,"finalPnL":2800,"metrics":{"tradesExecuted":19}}
20
+ {"trajectoryId":"traj-19","agentId":"agent-test","month":"2025-11","scenario":"scenario-4","steps":[{"stepNumber":1,"environmentState":{"agentBalance":10000,"agentPnL":0},"llm_calls":[{"model":"test-model","user_prompt":"What should I do?","response":"Buy shares"}],"action":{"type":"BUY_SHARES","parameters":{"amount":100},"success":true},"reward":50}],"totalReward":1000,"finalPnL":2900,"metrics":{"tradesExecuted":20}}