synth-ai 0.2.4.dev3__py3-none-any.whl → 0.2.4.dev5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. synth_ai/environments/examples/__init__.py +1 -0
  2. synth_ai/environments/examples/crafter_classic/__init__.py +8 -0
  3. synth_ai/environments/examples/crafter_classic/config_logging.py +111 -0
  4. synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
  5. synth_ai/environments/examples/crafter_classic/engine.py +575 -0
  6. synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +63 -0
  7. synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +5 -0
  8. synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +74 -0
  9. synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +266 -0
  10. synth_ai/environments/examples/crafter_classic/environment.py +364 -0
  11. synth_ai/environments/examples/crafter_classic/taskset.py +233 -0
  12. synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +229 -0
  13. synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +298 -0
  14. synth_ai/environments/examples/crafter_custom/__init__.py +4 -0
  15. synth_ai/environments/examples/crafter_custom/crafter/__init__.py +7 -0
  16. synth_ai/environments/examples/crafter_custom/crafter/config.py +182 -0
  17. synth_ai/environments/examples/crafter_custom/crafter/constants.py +8 -0
  18. synth_ai/environments/examples/crafter_custom/crafter/engine.py +269 -0
  19. synth_ai/environments/examples/crafter_custom/crafter/env.py +266 -0
  20. synth_ai/environments/examples/crafter_custom/crafter/objects.py +418 -0
  21. synth_ai/environments/examples/crafter_custom/crafter/recorder.py +187 -0
  22. synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +119 -0
  23. synth_ai/environments/examples/crafter_custom/dataset_builder.py +373 -0
  24. synth_ai/environments/examples/crafter_custom/environment.py +312 -0
  25. synth_ai/environments/examples/crafter_custom/run_dataset.py +305 -0
  26. synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +156 -0
  27. synth_ai/environments/examples/enron/art_helpers/local_email_db.py +280 -0
  28. synth_ai/environments/examples/enron/art_helpers/types_enron.py +24 -0
  29. synth_ai/environments/examples/enron/engine.py +291 -0
  30. synth_ai/environments/examples/enron/environment.py +165 -0
  31. synth_ai/environments/examples/enron/taskset.py +112 -0
  32. synth_ai/environments/examples/minigrid/__init__.py +48 -0
  33. synth_ai/environments/examples/minigrid/engine.py +589 -0
  34. synth_ai/environments/examples/minigrid/environment.py +274 -0
  35. synth_ai/environments/examples/minigrid/environment_mapping.py +242 -0
  36. synth_ai/environments/examples/minigrid/puzzle_loader.py +416 -0
  37. synth_ai/environments/examples/minigrid/taskset.py +583 -0
  38. synth_ai/environments/examples/nethack/__init__.py +7 -0
  39. synth_ai/environments/examples/nethack/achievements.py +337 -0
  40. synth_ai/environments/examples/nethack/engine.py +738 -0
  41. synth_ai/environments/examples/nethack/environment.py +255 -0
  42. synth_ai/environments/examples/nethack/helpers/__init__.py +42 -0
  43. synth_ai/environments/examples/nethack/helpers/action_mapping.py +301 -0
  44. synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +401 -0
  45. synth_ai/environments/examples/nethack/helpers/observation_utils.py +433 -0
  46. synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +201 -0
  47. synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +268 -0
  48. synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +308 -0
  49. synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +430 -0
  50. synth_ai/environments/examples/nethack/taskset.py +323 -0
  51. synth_ai/environments/examples/red/__init__.py +7 -0
  52. synth_ai/environments/examples/red/config_logging.py +110 -0
  53. synth_ai/environments/examples/red/engine.py +693 -0
  54. synth_ai/environments/examples/red/engine_helpers/__init__.py +1 -0
  55. synth_ai/environments/examples/red/engine_helpers/memory_map.py +28 -0
  56. synth_ai/environments/examples/red/engine_helpers/reward_components.py +275 -0
  57. synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +142 -0
  58. synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +56 -0
  59. synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +283 -0
  60. synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +149 -0
  61. synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +137 -0
  62. synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +56 -0
  63. synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +330 -0
  64. synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +120 -0
  65. synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +558 -0
  66. synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +312 -0
  67. synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +147 -0
  68. synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +246 -0
  69. synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +367 -0
  70. synth_ai/environments/examples/red/engine_helpers/state_extraction.py +139 -0
  71. synth_ai/environments/examples/red/environment.py +235 -0
  72. synth_ai/environments/examples/red/taskset.py +77 -0
  73. synth_ai/environments/examples/sokoban/__init__.py +1 -0
  74. synth_ai/environments/examples/sokoban/engine.py +675 -0
  75. synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +1 -0
  76. synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +656 -0
  77. synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +17 -0
  78. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +3 -0
  79. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +129 -0
  80. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +370 -0
  81. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +331 -0
  82. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +305 -0
  83. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +66 -0
  84. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +114 -0
  85. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +122 -0
  86. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +394 -0
  87. synth_ai/environments/examples/sokoban/environment.py +228 -0
  88. synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +438 -0
  89. synth_ai/environments/examples/sokoban/puzzle_loader.py +311 -0
  90. synth_ai/environments/examples/sokoban/taskset.py +425 -0
  91. synth_ai/environments/examples/tictactoe/__init__.py +1 -0
  92. synth_ai/environments/examples/tictactoe/engine.py +368 -0
  93. synth_ai/environments/examples/tictactoe/environment.py +239 -0
  94. synth_ai/environments/examples/tictactoe/taskset.py +214 -0
  95. synth_ai/environments/examples/verilog/__init__.py +10 -0
  96. synth_ai/environments/examples/verilog/engine.py +328 -0
  97. synth_ai/environments/examples/verilog/environment.py +349 -0
  98. synth_ai/environments/examples/verilog/taskset.py +418 -0
  99. synth_ai/tracing_v3/examples/basic_usage.py +188 -0
  100. {synth_ai-0.2.4.dev3.dist-info → synth_ai-0.2.4.dev5.dist-info}/METADATA +1 -1
  101. {synth_ai-0.2.4.dev3.dist-info → synth_ai-0.2.4.dev5.dist-info}/RECORD +105 -6
  102. {synth_ai-0.2.4.dev3.dist-info → synth_ai-0.2.4.dev5.dist-info}/WHEEL +0 -0
  103. {synth_ai-0.2.4.dev3.dist-info → synth_ai-0.2.4.dev5.dist-info}/entry_points.txt +0 -0
  104. {synth_ai-0.2.4.dev3.dist-info → synth_ai-0.2.4.dev5.dist-info}/licenses/LICENSE +0 -0
  105. {synth_ai-0.2.4.dev3.dist-info → synth_ai-0.2.4.dev5.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,104 @@ synth_ai/environments/environment/resources/sqlite.py,sha256=_kKSF2SUGN1E61Hq7AZ
29
29
  synth_ai/environments/environment/rewards/__init__.py,sha256=5TpSHuCNeRy0W5N55ITVVoAI6oNYre9usbPhFnDrc7I,18
30
30
  synth_ai/environments/environment/rewards/core.py,sha256=NPy6EmpBzeWlEulIvWXh12aJqQ71_X7rqzgVu85myXk,888
31
31
  synth_ai/environments/environment/tools/__init__.py,sha256=hl244E3Zy4RYMtCzz0RPpFTTqYCh0IckRrdN7mGafoc,6910
32
+ synth_ai/environments/examples/__init__.py,sha256=POgz9O4n1tvPAW1rYNUNeQGrMlWxoPDmyht85o5Po0s,38
33
+ synth_ai/environments/examples/crafter_classic/__init__.py,sha256=waICaSbO19tTJpj-BxCURLDxRdx_gnSVQXLIwo4gqLM,270
34
+ synth_ai/environments/examples/crafter_classic/config_logging.py,sha256=Eqq35s0lPAmBiU0neZM6vmHPct15gp9TwS3vogrNziM,3794
35
+ synth_ai/environments/examples/crafter_classic/debug_translation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ synth_ai/environments/examples/crafter_classic/engine.py,sha256=Nvp3aSd2Qqby6eJOPH1bLXuk-rU6EuUC-HEs8d-D-sY,25046
37
+ synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py,sha256=Jhn4dtLypG4-eLMsHxesagVTGJtzoGF6UssEfblEJYE,2801
38
+ synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py,sha256=E7EA1IODxeb8Fq6uV15pL5HFuv4q-KTwnmRGqweuM34,11126
39
+ synth_ai/environments/examples/crafter_classic/environment.py,sha256=6Us77M0AhVOrBwZoaZesxC4QXC6q1tmVphga2BZvVv4,17218
40
+ synth_ai/environments/examples/crafter_classic/taskset.py,sha256=Jg3BgGetBjFor6MT3Fsx8BrrNRcS-RsffvusZsmi7v0,9843
41
+ synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py,sha256=OuP_pm565jRIFc4AzzEAa7jrIvm0E4B5EAv6GnQWGzw,7195
42
+ synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py,sha256=hrWo6OweT1Cyrck9YVP4TtxGdHmezbvITRTrhibWieo,10165
43
+ synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py,sha256=KUf20wX_t-DpU6kxWX6n7iyZxg_zrq7dV5S8Ci-2r18,229
44
+ synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py,sha256=biLmlrQFsSS4SVAqKilFyR6NjgcNJR1UlTnql98L0a0,2242
45
+ synth_ai/environments/examples/crafter_custom/__init__.py,sha256=139ewayoaO3Oxr-vG-1hxI89urYr1Dsy35JEeJEdvj0,190
46
+ synth_ai/environments/examples/crafter_custom/dataset_builder.py,sha256=QHoP45shr9kFvCjf0ta0aHPuVq9R6rU9MP1ZE1wk4L0,12956
47
+ synth_ai/environments/examples/crafter_custom/environment.py,sha256=9RswjKlVa2NwSELqYuvqxeZnW9O3eOVClMKDmdVV0m0,14784
48
+ synth_ai/environments/examples/crafter_custom/run_dataset.py,sha256=DmyxqebahMcnUDLgTCQdprfHYzFXKho17U6ypbobuQs,9959
49
+ synth_ai/environments/examples/crafter_custom/crafter/__init__.py,sha256=_M8hAShOyx-rd7prlDNGpzWk8BhGKY2l6hQvQ5teECs,235
50
+ synth_ai/environments/examples/crafter_custom/crafter/config.py,sha256=b3EuU7aK9XUIBeEbJiq6Xnt_7D4aYOBg8_hdqKxCxS8,5542
51
+ synth_ai/environments/examples/crafter_custom/crafter/constants.py,sha256=ZAHy89ZCWyLGzP1sQqlHHqGIMuIHqgsYWy7usD3ODB8,218
52
+ synth_ai/environments/examples/crafter_custom/crafter/engine.py,sha256=DFGknXHvOoliVtded7TnDsBrOOSnb79gbTdgpJNQKtE,9479
53
+ synth_ai/environments/examples/crafter_custom/crafter/env.py,sha256=EsYNnypT797f5yH_2FXcd_kQrxO3UA_gsXZ8HX6pSY4,9313
54
+ synth_ai/environments/examples/crafter_custom/crafter/objects.py,sha256=mCMu0ofXBaQIgjVM27eD2IN9IWi7ki6LeYDLnScNctk,13022
55
+ synth_ai/environments/examples/crafter_custom/crafter/recorder.py,sha256=NcqecXkU8S5pJ4vE89KcZPIO8SknkKuV1AookEvQ2Gw,5898
56
+ synth_ai/environments/examples/crafter_custom/crafter/worldgen.py,sha256=ieQMJyoni4Xl6uM_32ekKLk1QdFtJRHz6FR-8nLCwcI,4128
57
+ synth_ai/environments/examples/enron/engine.py,sha256=Unq3mrgit0Y4Y64s9cmiG4wocWyE28iRGGBFjN2IvmA,11534
58
+ synth_ai/environments/examples/enron/environment.py,sha256=QW0dmvv7og31tVnFHrQefZjAoo-yiKkkUUwj8QSd2f4,5985
59
+ synth_ai/environments/examples/enron/taskset.py,sha256=PdCkrPm99lAfRKKwkh6Qg_3LUEHy2AAP3qcvFht8_PI,3171
60
+ synth_ai/environments/examples/enron/art_helpers/email_search_tools.py,sha256=VqUy5pDRHt2qs0G7jwgqN60T7xQJEKRUhWQYsIopqP0,5545
61
+ synth_ai/environments/examples/enron/art_helpers/local_email_db.py,sha256=G0_26Y-6TwDIHcjVrMLJ-4gqQwJowoFB-WkgQhtAlPU,9984
62
+ synth_ai/environments/examples/enron/art_helpers/types_enron.py,sha256=Nxn0yP5aQyRftlsuXvH6_8BxM3Ms14UuD1Pq-UO9uBY,733
63
+ synth_ai/environments/examples/minigrid/__init__.py,sha256=tWQQ9kqbf-eP9RcJtlM_RNR63YkNXAl_U1zPfgP2TWk,1328
64
+ synth_ai/environments/examples/minigrid/engine.py,sha256=gvdc8Wgc8E4SGRhxCtCARgTzMMmtzxZT5Nc68-iI85k,22061
65
+ synth_ai/environments/examples/minigrid/environment.py,sha256=T-65hM-C3vqncmaLYzemNTwY7akDkRHiCKk3Dhiu9sQ,10490
66
+ synth_ai/environments/examples/minigrid/environment_mapping.py,sha256=N0JJ4Ako-sX-89nE9vCbPQIzVuhGpyy309Y_y7osNiA,7019
67
+ synth_ai/environments/examples/minigrid/puzzle_loader.py,sha256=Kc2KRBQr2wo1Lq3xhTASXFo1-j9ZgysY7imQ8uNz0zE,14655
68
+ synth_ai/environments/examples/minigrid/taskset.py,sha256=_ekomoTujsRbur60GvWSwWmABmZCp5k7f_JBDwJGmYk,21305
69
+ synth_ai/environments/examples/nethack/__init__.py,sha256=viygo8pTUB891fGm_tb38s5thNcr17bLFffQdDOfiQ0,266
70
+ synth_ai/environments/examples/nethack/achievements.py,sha256=hSDld5CBHubzmrDy2kZcfVDxQtymfg3kjQr0WuPH-Ro,12443
71
+ synth_ai/environments/examples/nethack/engine.py,sha256=e4F1bBoCbcvJwiHOGCCB5Ogwk_ARYHXiO3WC7tQAI-o,29956
72
+ synth_ai/environments/examples/nethack/environment.py,sha256=5ez7AJiKdnwe4cekTSTEh1Y5I1ZtPrDtCa6VeH_6pIY,10041
73
+ synth_ai/environments/examples/nethack/taskset.py,sha256=aPuleNGageiPhSXfNV-bzdmyPMi6gQSU40BAd8eT-a0,11339
74
+ synth_ai/environments/examples/nethack/helpers/__init__.py,sha256=7U8i1NKNIMC2eFKU5aOKYnUHbQCBTkoEZe-prFhAZOw,959
75
+ synth_ai/environments/examples/nethack/helpers/action_mapping.py,sha256=AZwkDY9-VEblagnpFrrnzlmNyRumWsDEf4w35y5Csmg,9133
76
+ synth_ai/environments/examples/nethack/helpers/nle_wrapper.py,sha256=dhyBFbHVHVslSm_4ztELLEURNt-iky0OOer2DEM7J8A,15141
77
+ synth_ai/environments/examples/nethack/helpers/observation_utils.py,sha256=XIHK6gtroNfeiLc8aisj7rDvcxROYiIpHKSCoJoWypU,12350
78
+ synth_ai/environments/examples/nethack/helpers/recording_wrapper.py,sha256=uWxZOgsi0GT29nv5_7zKAm28YCG8ukYCXafeV1kmgow,7448
79
+ synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py,sha256=vzU_ir8zX1AlwcvgliA-HkCqEJJpICFDvAAS_UuP7xY,8987
80
+ synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py,sha256=eceK4aejd3OcBXW98s3uhJ70kzOEXIa19TxdP4BCZdI,11902
81
+ synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py,sha256=jHndZowjrRF2nYFyN-gP_3OOBsP3uPNT2PP1y6WV4pA,14831
82
+ synth_ai/environments/examples/red/__init__.py,sha256=4uHc_oyMmFK9jllUs9BAY4mxMwt5_Q7sD7Meo8zuTa4,199
83
+ synth_ai/environments/examples/red/config_logging.py,sha256=jVjehrms140gnJ1aAaXK9oxRXqh8CuU23yGp4AZOh74,3710
84
+ synth_ai/environments/examples/red/engine.py,sha256=43fKZ9YEs-ccL7rPtVNihStbwvxndk7GYyjr4zoCbYI,23835
85
+ synth_ai/environments/examples/red/environment.py,sha256=oHdG2I1QUOnVj80_IvIgBi5Rv2IyotnPgwMpXqsSZMc,9342
86
+ synth_ai/environments/examples/red/taskset.py,sha256=1oYI2UOqBdV5A-r7fg1LM4JIi5OQcRdTI6UUyPuQW_0,2825
87
+ synth_ai/environments/examples/red/engine_helpers/__init__.py,sha256=YyNOk0TMWA_CI_EakcTMjbLJpkFKKRhJfVe792w-CXE,33
88
+ synth_ai/environments/examples/red/engine_helpers/memory_map.py,sha256=jOsBYaYYxUy2tz3L2pCoj7Y_3UdrViw6vNYdgbEZFDk,1193
89
+ synth_ai/environments/examples/red/engine_helpers/reward_components.py,sha256=QllhLE4lpyKLcTbGgl5zK51ftX5CXjl_7-MOoSIiRLg,9355
90
+ synth_ai/environments/examples/red/engine_helpers/screen_analysis.py,sha256=gR1AU10m_HZGqWr6g6eTUx1fkZi8Yfhg73XuMwmZODg,12773
91
+ synth_ai/environments/examples/red/engine_helpers/state_extraction.py,sha256=i20OpC7DCcOo52dHGzHQnXI2DzUiTbu_2PcyVhGDj9Q,4418
92
+ synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py,sha256=kETzPWAaFOiAO4sNxcGerX2lXP1xnQkdiVfzmL1JGkU,4015
93
+ synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py,sha256=xE7AsliJVmygo2aptYCHBnt4X0OffeLYzRa0Tjhp92k,1890
94
+ synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py,sha256=hjJMYS-CzvO2ugJyBVBNZuhZIG-LU2ng0S4DUkHZD90,10426
95
+ synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py,sha256=sRS4h4njAzfGDnaah_OG0kCz3P5UlAz9zXm0hczRyLA,5091
96
+ synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py,sha256=25ACp4SDPXUxQjAVRcdFvOw_NStRFaPc5K78OrwcJG4,5018
97
+ synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py,sha256=RCLbN-hh-Cx0fxOB3zKQs6KvRa-u9MlKYeI5_TtOFrg,1817
98
+ synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py,sha256=V3Gvs-hHGHV9OohDsZncBd8K7kiGRtQkDo7p8rOG1mA,12391
99
+ synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py,sha256=uCRT8CQUDBueCuMa8x7IYKQun2yXq32mt6eHBifu4B8,3611
100
+ synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py,sha256=I-MzN6eiaQs7cuQHZvKO_nZJ1SRVlsK83dIY4TmTigA,19889
101
+ synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py,sha256=pHMN8mh3qvJ-anxb80DxR_UBChOdrjiL7Ng6oyFBydU,10860
102
+ synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py,sha256=qQ-gN_xceb9QTzMiMGNmmKrZSsQDr-bD9JDWS4d_ops,5675
103
+ synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py,sha256=1sH6bLShvWOrvdOCIWbg56oMJ7eeMm2SmSLMcrO8MME,8464
104
+ synth_ai/environments/examples/sokoban/__init__.py,sha256=Y5MpHrvlI9s5gEwlAJ0FM08bZpyC4QdnGWaTCyPQas8,35
105
+ synth_ai/environments/examples/sokoban/engine.py,sha256=Dn5lV8lyhb_4uQNIwpTeDjN0bYUCqjo1ym3vrD2nQfs,26275
106
+ synth_ai/environments/examples/sokoban/environment.py,sha256=wZ59GS9-UZMt9ysAVgdJIcL9UwvjiCdzYjEj6aPYSKM,9801
107
+ synth_ai/environments/examples/sokoban/generate_verified_puzzles.py,sha256=tGCJNaNsXGK2nsZ54xqJ4p9lyfjQGJ54a9SguUIQiiU,15509
108
+ synth_ai/environments/examples/sokoban/puzzle_loader.py,sha256=4Ufqx9IyuWDfHt77VxcM7URgCb6crpsMHr-1TBkfxsc,11497
109
+ synth_ai/environments/examples/sokoban/taskset.py,sha256=UhavqJceg6CYFFWClbldgjqRzY6gBUqZveaHc7N13Ko,15537
110
+ synth_ai/environments/examples/sokoban/engine_helpers/__init__.py,sha256=ensyOUm01rMpYZPIoV012_v6vxnv95mwwi63hLJvwIw,29
111
+ synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py,sha256=NZ3TSvTmbo19aT9X-xaPsg5CV4oPmdtV6356L76F7Bk,21757
112
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py,sha256=jdGs_dghlGglKSi1EpsLz3IivSqNYhgu0icwzS7nKS0,404
113
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py,sha256=Gvw94rIHk-BAaARkboJzZ6mx4z_n_UkFxm9xqZqxVFc,134
114
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py,sha256=ykJzlZjQtmcG0JJbOECUJ5EgQAURfvKkAq3ACwYF5xE,4132
115
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py,sha256=Vpj86hJhrSkK6kPobB_H5_bcvKsPT86-uhs7Agu66L4,11375
116
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py,sha256=43mge3pUJgvnGqKT1y7Ww39h3k0MRcvmL208ffzHzZ8,10587
117
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py,sha256=VaLExeff0vh4hQvkZphPBmjtS-f5v_MRk4E-9jNtCxU,10381
118
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py,sha256=aVsb29Q79X_6XYR6-fKynTlSoxBo7_Es9wlUFAM8ltE,2551
119
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py,sha256=8FiVFOf5-w_fuf2fWUOcluRH5Zzqbn7y4CDxXlMjtMM,3807
120
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py,sha256=ChjsHcraEnjRPazhojeG4RDekyBbB9XzRU-UnXIfEEo,3762
121
+ synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py,sha256=mQlnDZJUfi-TiR3zcGyy4iTJutUqxwjRj7fxz8THupg,15455
122
+ synth_ai/environments/examples/tictactoe/__init__.py,sha256=XGoOP8GEGXjG-TI_E_-3b1jOhpGNtl_LmR9G3K59Gig,31
123
+ synth_ai/environments/examples/tictactoe/engine.py,sha256=NuFpXuiClyBCByS-m3fEpU343nkNq_aIsqYAMxXrGCs,12430
124
+ synth_ai/environments/examples/tictactoe/environment.py,sha256=42y9wCpG1NOAPxaILdaBjDl8WgEvnHbk3rd75GtgLH4,9335
125
+ synth_ai/environments/examples/tictactoe/taskset.py,sha256=rGbFwkokndkwXR95RSUF4-mRwvX8EKjpQRofnabmhs8,7811
126
+ synth_ai/environments/examples/verilog/__init__.py,sha256=JBf4ayWGO-VPK7PLitp_-jiKDi9gd3hhQ-PahNkiLJ0,262
127
+ synth_ai/environments/examples/verilog/engine.py,sha256=jxpVJ5oVbRyObCLnETfy-sPARunaoYLLaPx7cyl68jc,12170
128
+ synth_ai/environments/examples/verilog/environment.py,sha256=M6igedpgJWvLjw_ta1k4fwY9Kz0dPDIEgO9S4B-eBGg,12329
129
+ synth_ai/environments/examples/verilog/taskset.py,sha256=-Vqrc_HY07WHcHLDQJ3KIDU3kNjpCgAMqCUYtay2Vyg,13336
32
130
  synth_ai/environments/reproducibility/core.py,sha256=y4__bivu_tdyIas509oK2EH9KUdLaQfbJ6z3dK8wYxc,1499
33
131
  synth_ai/environments/reproducibility/helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
132
  synth_ai/environments/reproducibility/tree.py,sha256=bl0lfIjrJGxMNmcWs75uPBwurgd1ENjN_mI5RHfrANY,13743
@@ -126,6 +224,7 @@ synth_ai/tracing_v3/migration_helper.py,sha256=q6G4v3UKJAU4nMytz7znIK1M3xeLGObxl
126
224
  synth_ai/tracing_v3/replica_sync.py,sha256=CP7hPCR2oETrdsInwQl79mdInFA5xL1Q4Nzp3KGLu5A,8879
127
225
  synth_ai/tracing_v3/session_tracer.py,sha256=zPCtO73oXVsHN5N64_pleporKiMuAmue9dStAZSFESA,11379
128
226
  synth_ai/tracing_v3/utils.py,sha256=RAFZTf8JyRCQsR9DwJ1ykelKkoY3OSrCBUStCLvpn8w,3431
227
+ synth_ai/tracing_v3/examples/basic_usage.py,sha256=zbl9bJaZawToMEV0skzvP4sIwLnmBeo7Pa_f1gJlkf8,7265
129
228
  synth_ai/tracing_v3/storage/__init__.py,sha256=S_g7h34JZ6v1hoCcrlP7TaAAU-f0owKUx78QB8TUGkQ,332
130
229
  synth_ai/tracing_v3/storage/base.py,sha256=FlV3NMXsXK7MZaUqc7uXCv2YFD021C6LvFaPppyYr0A,3611
131
230
  synth_ai/tracing_v3/storage/config.py,sha256=ZvBum3wkDtXjm_p5mcEMjBtPNSUHjDh-fhZqVxXC4JQ,2096
@@ -180,9 +279,9 @@ synth_ai/v0/tracing_v1/events/manage.py,sha256=dgIlH43aEz7yA1_rj4IisJP6ROiROmLwD
180
279
  synth_ai/v0/tracing_v1/events/scope.py,sha256=BuBkhSpVHUJt8iGT9HJZF82rbb88mQcd2vM2shg-w2I,2550
181
280
  synth_ai/v0/tracing_v1/events/store.py,sha256=gVM3L_bV_PAEh9GD9eg2AQqNfANu-zH9ied7bAKk_Eg,9040
182
281
  synth_ai/zyk/__init__.py,sha256=6HFa13sdHCouhzKOUPEWcJeVxKlzjWO7ERsrrwtTugs,752
183
- synth_ai-0.2.4.dev3.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
184
- synth_ai-0.2.4.dev3.dist-info/METADATA,sha256=ohKQPWyVxScWAB8xBzTvSW8hOrkEt_ttXEAa-LBIQ5I,7150
185
- synth_ai-0.2.4.dev3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
186
- synth_ai-0.2.4.dev3.dist-info/entry_points.txt,sha256=GSFXaJreq4PJXbixkUI0GHZwGh2dZDG5pYaoVmqr_KE,46
187
- synth_ai-0.2.4.dev3.dist-info/top_level.txt,sha256=fBmtZyVHuKaGa29oHBaaUkrUIWTqSpoVMPiVdCDP3k8,9
188
- synth_ai-0.2.4.dev3.dist-info/RECORD,,
282
+ synth_ai-0.2.4.dev5.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
283
+ synth_ai-0.2.4.dev5.dist-info/METADATA,sha256=j8LGEHF6txGGKOR6MSHd2zPoUUkgS5QeZbsoS-EJids,7150
284
+ synth_ai-0.2.4.dev5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
285
+ synth_ai-0.2.4.dev5.dist-info/entry_points.txt,sha256=GSFXaJreq4PJXbixkUI0GHZwGh2dZDG5pYaoVmqr_KE,46
286
+ synth_ai-0.2.4.dev5.dist-info/top_level.txt,sha256=fBmtZyVHuKaGa29oHBaaUkrUIWTqSpoVMPiVdCDP3k8,9
287
+ synth_ai-0.2.4.dev5.dist-info/RECORD,,