-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfound_items.jsonl
12436 lines (12436 loc) · 243 KB
/
found_items.jsonl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"inventory": [
{
"item": "Scratching post with feather attachments"
},
{
"item": "Fuzzy animal toy"
},
{
"item": "Small yellow ball",
"quantity": 2
},
{
"item": "Pink fluffy toy"
},
{
"item": "Sparkly pom-pom toy"
}
]
}
{
"inventory": [
{
"item": "Cat Scratching Post",
"description": "Tall with a fluffy feather toy on top"
},
{
"item": "Soft Plush Toy",
"description": "Round critter, perfect for snuggling or tossing"
},
{
"item": "Colorful Ball",
"description": "Bright balls that entice play"
},
{
"item": "Pink Cat Toy",
"description": "Stretchy pink toy for batting around"
},
{
"item": "Shiny Tinsel Ball",
"description": "Sparkly object that catches attention"
}
]
}
{
"inventory": [
{
"item": "Fluffy mouse toy",
"quantity": 1
},
{
"item": "Scratching post with feathers",
"quantity": 1
},
{
"item": "Yellow balls",
"quantity": 2
},
{
"item": "Pink fuzzy toy",
"quantity": 1
},
{
"item": "Purple fuzzy toy",
"quantity": 1
},
{
"item": "Cat",
"quantity": 1
}
]
}
{
"inventory": [
{
"item": "Plush mouse",
"description": "A soft toy mouse with a fuzzy tail"
},
{
"item": "Scratch post",
"description": "A post with feathers for scratching"
},
{
"item": "Colorful pom-poms",
"description": "Small, fluffy pom-poms in various colors"
},
{
"item": "Small balls",
"description": "Balls of different colors, including yellow"
},
{
"item": "Fluffy pink object",
"description": "A fluffy item that might be a toy"
},
{
"item": "Soft pink plush item",
"description": "A soft pink item that could be a cat accessory"
}
]
}
{
"inventory": [
"Fuzzy mouse toy",
"Cat scratch post with feathers",
"Sparkly toy",
"Bouncy balls"
]
}
{
"inventory": [
{
"item": "fluffy mouse toy",
"attributes": {
"design": "striped",
"category": "cat toy"
}
},
{
"item": "scratching post",
"attributes": {
"features": "colorful feathers",
"category": "cat furniture"
}
},
{
"item": "small colorful balls",
"attributes": {
"count": 2,
"colors": ["yellow", "pink"],
"category": "cat toy"
}
},
{
"item": "sparkly pom-pom toy",
"attributes": {
"features": "shiny and sparkly",
"category": "cat toy"
}
},
{
"item": "pink twisty cat toy",
"attributes": {
"category": "cat toy"
}
}
]
}
{
"inventory": [
{
"item": "Scratching post"
},
{
"item": "Furry toy (looks like a small animal)"
},
{
"item": "Shiny pom-pom"
},
{
"item": "Yellow ball"
},
{
"item": "Pink shapes (toys)"
}
]
}
1724448080.2598882|{
"inventory": [
{
"item": "White speaker"
},
{
"item": "Blue container"
},
{
"item": "Cat toys",
"details": [
"Scratching post",
"Small colorful toys"
]
}
]
}
1724448093.412896|{
"inventory": [
{
"item": "White speaker",
"description": "Sleek white speaker, possibly playing music."
},
{
"item": "Light blue container",
"description": "Container that may contain crafting supplies."
},
{
"item": "Small chair",
"description": "A small chair in the vicinity."
},
{
"item": "Scratching post with toys",
"description": "Scratching post with fuzzy toys hanging from it."
}
]
}
1724448103.466173|{
"inventory": [
{
"item": "Jamo unit",
"description": "possibly an audio unit",
"color": "white"
},
{
"item": "blue box",
"description": "could be a storage chest",
"color": "blue"
},
{
"item": "green chair",
"description": "adds a splash of color to the room",
"color": "green"
},
{
"item": "cat toy box",
"description": "with toys peeking out",
"color": "not specified"
}
]
}
1724448115.7575867|{
"inventory": [
{
"item": "Subwoofer",
"color": "white",
"features": "wood accents",
"description": "sturdy"
},
{
"item": "Container",
"color": "blue",
"description": "possibly a storage box"
},
{
"item": "Chair",
"description": "small or cute"
},
{
"item": "Table",
"size": "small",
"description": "possibly for work"
}
]
}
1724448130.647997|{
"inventory": [
{
"item": "circular cat food bowl"
},
{
"item": "green chair"
},
{
"item": "table with various colorful items"
},
{
"item": "blue box"
},
{
"item": "light streaming through a window"
}
]
}
1724448141.144399|{
"inventory": [
{
"item": "cat toy",
"description": "A small, colorful object probably enticing for playful feline friends."
},
{
"item": "food bowl",
"description": "A dish that looks like it belongs to a pet."
},
{
"item": "chair",
"description": "A simple chair that might be used for sitting while working on projects."
}
]
}
1724448151.7652535|{
"inventory": [
{
"item": "small chair",
"color": "green"
},
{
"item": "desk",
"material": "dark wood"
},
{
"item": "blue box",
"description": "possibly a container"
},
{
"item": "cables",
"description": "winding gently on the floor"
},
{
"item": "cat toy",
"description": "possibly a little ball or mouse"
},
{
"item": "couple of chairs",
"description": "stacked against the wall"
}
]
}
1724448164.1141057|{
"inventory": [
{
"item": "blue plastic container",
"quantity": 1
},
{
"item": "small table",
"quantity": 1
},
{
"item": "chairs",
"quantity": 2
},
{
"item": "colorful cat toy",
"quantity": 1
}
]
}
1724448174.723605|{
"inventory": [
{
"item": "teal table",
"quantity": 1
},
{
"item": "colorful chairs",
"quantity": "multiple"
},
{
"item": "cat toys",
"quantity": "few"
},
{
"item": "crafting supplies",
"quantity": "various (scattered papers or tools)"
}
]
}
1724448184.5630388|{
"inventory": [
{
"item": "Small table",
"description": "A table made for crafting or holding materials."
},
{
"item": "Chairs",
"description": "A couple of chairs for seating while working."
},
{
"item": "Colored bins",
"description": "Bright bins for organizing tools or supplies."
}
]
}
1724448195.5887299|{
"inventory": [
{
"item": "blue container",
"description": "A bright blue object, possibly a box or container"
},
{
"item": "chairs",
"description": "Two green chairs and one purple chair"
},
{
"item": "hose",
"description": "A coiled hose on the ground"
},
{
"item": "cat toy",
"description": "A small ball with a bell, used as a cat toy"
}
]
}
1724448207.4163983|{
"inventory": [
{
"item": "cat",
"description": "playful tabby cat"
},
{
"item": "toy",
"description": "colorful toy, possibly a ball"
},
{
"item": "chair",
"description": "a chair or two"
},
{
"item": "pet bed",
"description": "pet bed in the corner"
},
{
"item": "container",
"description": "container or bin for maker supplies"
}
]
}
1724448218.4386933|{
"inventory": [
{
"item": "Cat",
"description": "A striped feline with a collar, roaming around."
},
{
"item": "Flooring",
"description": "Shiny and new, perfect for little paws."
},
{
"item": "Green object",
"description": "A large, possibly soft item—could be a mat or a cushion."
},
{
"item": "Bowl",
"description": "A bowl on the ground, possibly holding some cat treats."
},
{
"item": "Toys",
"description": "A glimpse of a toy or two peeking out from somewhere nearby."
},
{
"item": "Cord",
"description": "A long cord, possibly for charging or connecting something."
}
]
}
1724448230.656136|{
"inventory": [
{
"item": "Cat",
"description": "Playing and grooming"
},
{
"item": "Table",
"description": "Colorful"
},
{
"item": "Chairs",
"description": "At least a couple"
},
{
"item": "Container",
"description": "Bright blue, looks like it could hold fun stuff"
}
]
}
1724448241.52953|{
"inventory": [
{
"item": "small cat",
"description": "A little kitty cat grooming itself"
},
{
"item": "colorful chairs",
"description": "Chairs with various colors"
},
{
"item": "storage bin",
"description": "A little storage bin in the background"
}
]
}
1724448252.9323552|{
"inventory": [
{
"item": "playful cat",
"description": "feline friend"
},
{
"item": "green box",
"description": "maybe a toy or storage"
},
{
"item": "colorful chairs",
"description": "a few colorful chairs nearby"
},
{
"item": "crafting or maker tools",
"description": "some crafting or maker tools, could be on the table, but not directly visible"
}
]
}
1724448264.370929|{
"inventory": [
{
"item": "cat",
"description": "A curious and possibly skittish cat."
},
{
"item": "blue storage box",
"description": "A storage box in the background."
},
{
"item": "set of chairs",
"description": "A lined-up set of colorful and comfy chairs."
},
{
"item": "table",
"description": "A table, possibly cluttered with tools or projects."
}
]
}
1724448276.678936|{
"inventory": [
{
"item": "cat",
"description": "sitting quietly"
},
{
"item": "blue container",
"description": "looks like it could hold something fun"
},
{
"item": "colorful tools",
"description": "a few colorful tools, exact types unknown"
},
{
"item": "length of tubing",
"description": "on the floor"
}
]
}
1724448287.7008107|{
"inventory": [
{
"item": "Cat",
"description": "fluffy, busy grooming"
},
{
"item": "Plastic storage bin",
"description": "in a vibrant color"
},
{
"item": "Chairs",
"description": "colorful, possibly in a grouping"
},
{
"item": "Hoses or cables",
"description": "partially visible along the floor"
}
]
}
1724448315.2755241|{
"inventory": [
{
"item": "cat",
"description": "the playful furry friend"
},
{
"item": "colorful toy",
"description": "possibly for the cat"
},
{
"item": "chairs",
"description": "several stacked chairs"
},
{
"item": "blue container",
"description": "might hold toys or supplies"
}
]
}
1724448331.353024|{
"inventory": [
{
"item": "green chair"
},
{
"item": "black basket"
},
{
"item": "blue container"
},
{
"item": "light fixture or other kind of adjustable tool"
},
{
"item": "hose on the ground"
}
]
}
1724448340.6698544|{
"inventory": [
{
"item": "flexible hose",
"quantity": 1
},
{
"item": "debris",
"quantity": "various"
},
{
"item": "machinery parts",
"quantity": "few"
}
]
}
1724448381.54668|{
"inventory": [
{
"item": "Cables",
"quantity": "various"
},
{
"item": "Power strip",
"quantity": 1
},
{
"item": "Whiskers",
"quantity": 2,
"description": "from a curious cat"
},
{
"item": "Colorful object",
"description": "possibly a small toy or a decorative item"
}
]
}
1724448394.6351092|{
"inventory": [
"Cables"
],
"notes": {
"wall_base": "For reference, not inventory",
"environment": "Tight space with wires and overhead light"
}
}
1724448404.0984836|{
"inventory": [
{
"item": "tube or cord",
"description": "possibly electrical"
}
],
"notes": [
{
"note": "Some flooring is present, but not counted as inventory."
}
]
}
1724448413.8022294|{
"inventory": [
{
"item": "device or cabinet",
"description": "a large object with a smooth surface, possibly a machine"
},
{
"item": "cables",
"description": "some cables on the floor"
},
{
"item": "toy",
"description": "a colorful, friendly-looking toy with googly eyes"
}
]
}
1724448423.8012805|{
"inventory": [
{
"item": "Small table or box",
"color": "blue"
},
{
"item": "Chairs"
},
{
"item": "Tools or parts",
"visibility": "not clearly visible"
}
]
}
1724448433.577259|{
"inventory": [
"Cat",
"Table",
"Containers"
]
}
1724448443.0830579|{
"inventory": [
"Blue storage box",
"Tall black chair",
"Green table",
"Cat"
]
}
1724448454.9858303|{
"inventory": [
"Cables",
"Base of an appliance"
]
}
1724448464.7590299|{
"inventory": [
{
"item": "blue storage box",
"quantity": 1
},
{
"item": "cat",
"quantity": 1
},
{
"item": "small table",
"quantity": 1
},
{
"item": "chairs",
"quantity": 2
},
{
"item": "tall objects (plant or decor)",
"quantity": 3
}
]
}
1724448474.835423|{
"inventory": [
{
"item": "Wires",
"description": "A bundle of wires draping down"
},
{
"item": "Appliance",
"description": "A small appliance, likely a fridge"
},
{
"item": "Baseboards",
"description": "Baseboards along the wall"
}
]
}
1724448485.255476|{
"inventory": [
{
"item": "small round wooden stool",
"quantity": 1
},
{
"item": "camera tripod",
"quantity": 1
},
{
"item": "boxes",
"quantity": 3
},
{
"item": "couch with cushions",
"quantity": 1
},
{
"item": "minor objects (cables, small items)",
"quantity": "various"
}
]
}
1724448495.3065364|{
"inventory": [
{
"item": "tangled cords",
"quantity": 1
},
{
"item": "white appliance or box",
"quantity": 1
},
{
"item": "flat surface (floor)",
"quantity": 1
}
]
}
1724448505.0186136|{
"inventory": [
{
"item": "green cabinet",
"quantity": 1
},
{
"item": "wooden stool",
"quantity": 1
},
{
"item": "tripod stand",
"quantity": 1
},
{
"item": "scattered boxes",
"quantity": "multiple"
},
{
"item": "shoes",
"quantity": 2
}
]
}
1724448516.4325902|{
"inventory": [
{
"item": "Cat",
"quantity": 1
},
{
"item": "Cat toy",
"description": "ball/feather",
"quantity": 1
},
{
"item": "Chair",
"quantity": 1
},
{
"item": "Table",
"quantity": 1
}
]
}
1724448526.850331|{
"inventory": [
{
"item": "Cat scratch post",
"quantity": 1
},
{
"item": "Cat toys",
"details": [
"fluffy brown toy",
"pink toy",
"shiny object"
],
"quantity": 3
},
{
"item": "Green decoration",
"description": "looks like a plant",
"quantity": 1
},
{
"item": "Black cabinet",
"description": "with a glass door",
"quantity": 1
},
{
"item": "Sofa",
"quantity": 1
}
]
}
1724448538.7004046|{
"inventory": [
{
"item": "Cat",
"description": "A cute cat sitting quietly."
},
{
"item": "Wooden Toy",
"description": "A small wooden object on the floor, probably a toy or something interesting."
},
{
"item": "Light from a window",
"description": "Natural light coming from a window."
}
]
}
1724448549.4292414|{
"inventory": [
"Baseboard",
"Floor"
]
}
1724448561.756211|{
"inventory": [
{
"item": "Cat",
"description": "Curious observer"
},
{
"item": "Blue storage box",
"description": "Nearby storage"
},
{
"item": "Cleaning supplies",
"description": "Bottles"
},
{
"item": "Green shelf",
"description": "Tall shelf"
},
{
"item": "Chairs",
"description": "A couple of chairs"
}
]
}
1724448573.9995928|{
"inventory": [
{
"item": "scratching post",
"description": "with toys (feather and ball)"
},
{
"item": "plush toy",
"description": "pink with sparkles"
},
{
"item": "fuzzy ball",
"description": ""
},
{
"item": "colorful toy",
"description": "looks a bit like a little octopus"
}
]
}
1724448584.6027546|{
"inventory": [
{
"item": "blue cooler",
"quantity": 1
},
{
"item": "green stool",
"quantity": 1
},
{
"item": "spray bottles",
"quantity": 2,
"description": "possibly cleaning supplies"
},
{
"item": "tall container",
"quantity": 1,
"description": "could be holding more supplies"
},
{
"item": "cat",
"quantity": 1,
"description": "very chill"
}
]
}
1724448595.544773|{
"inventory": [
{
"item": "colorful little rover",
"description": "A small, colorful rover"
},
{
"item": "baseboard",
"description": "A baseboard along the wall"
},
{
"item": "wires",
"description": "Wires possibly connected to a nearby device"
}
]
}
1724448606.2013714|{
"inventory": [
{
"item": "cute kitty",
"quantity": 1
},
{
"item": "blue storage box",
"quantity": 1
},
{
"item": "chairs",
"quantity": 2
}
],
"observations": {
"door_direction": "straight ahead",
"movement": "turn left"
}
}
1724448616.8354344|{
"inventory": [
{
"item": "pink container",
"description": "possibly a toy or storage box"
},
{