synth-ai 0.2.12__py3-none-any.whl → 0.2.13.dev2__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.

Potentially problematic release.


This version of synth-ai might be problematic. Click here for more details.

Files changed (229) hide show
  1. examples/multi_step/configs/crafter_rl_outcome.toml +74 -0
  2. examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +186 -0
  3. examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +83 -0
  4. examples/multi_step/configs/crafter_rl_stepwise_simple.toml +78 -0
  5. examples/multi_step/crafter_rl_lora.md +51 -10
  6. examples/multi_step/sse_metrics_streaming_notes.md +357 -0
  7. examples/multi_step/task_app_config_notes.md +7 -1
  8. examples/swe/task_app/grpo_swe_mini.py +55 -26
  9. examples/swe/task_app/hosted/rollout.py +40 -0
  10. examples/swe/task_app/hosted/test_service.py +5 -6
  11. examples/task_apps/TESTING.md +275 -0
  12. examples/task_apps/__init__.py +0 -0
  13. examples/task_apps/crafter/__init__.py +0 -0
  14. examples/task_apps/crafter/task_app/__init__.py +2 -0
  15. examples/{warming_up_to_rl → task_apps/crafter}/task_app/grpo_crafter.py +21 -46
  16. examples/{warming_up_to_rl → task_apps/crafter}/task_app/grpo_crafter_task_app.py +1 -1
  17. examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/policy.py +60 -4
  18. examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/inference/openai_client.py +109 -45
  19. examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/policy_routes.py +67 -49
  20. examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/rollout.py +242 -193
  21. examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/test_service.py +5 -6
  22. examples/task_apps/dev/pokemon_emerald/__init__.py +2 -0
  23. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md +811 -0
  24. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py +120 -0
  25. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py +160 -0
  26. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py +155 -0
  27. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py +69 -0
  28. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py +96 -0
  29. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py +1502 -0
  30. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py +4 -0
  31. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py +68 -0
  32. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py +216 -0
  33. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py +35 -0
  34. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py +631 -0
  35. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py +1544 -0
  36. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py +1428 -0
  37. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py +4848 -0
  38. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py +41 -0
  39. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py +298 -0
  40. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml +95 -0
  41. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py +204 -0
  42. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/__init__.py +0 -0
  43. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py +2152 -0
  44. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py +429 -0
  45. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py +155 -0
  46. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md +78 -0
  47. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/__init__.py +0 -0
  48. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py +122 -0
  49. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py +76 -0
  50. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py +413 -0
  51. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py +204 -0
  52. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py +133 -0
  53. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py +229 -0
  54. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py +300 -0
  55. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py +205 -0
  56. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py +200 -0
  57. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py +284 -0
  58. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py +468 -0
  59. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py +575 -0
  60. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py +311 -0
  61. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py +259 -0
  62. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/__init__.py +0 -0
  63. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py +372 -0
  64. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py +296 -0
  65. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py +275 -0
  66. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py +22 -0
  67. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py +44 -0
  68. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py +514 -0
  69. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py +415 -0
  70. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py +1763 -0
  71. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py +33 -0
  72. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py +106 -0
  73. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py +334 -0
  74. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py +1020 -0
  75. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py +188 -0
  76. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py +1481 -0
  77. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py +862 -0
  78. examples/task_apps/dev/pokemon_emerald/modal_app.py +114 -0
  79. examples/task_apps/dev/pokemon_emerald/task_app/README.md +81 -0
  80. examples/task_apps/dev/pokemon_emerald/task_app/__init__.py +6 -0
  81. examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py +685 -0
  82. examples/task_apps/enron/__init__.py +1 -0
  83. examples/task_apps/enron/eval_groq_qwen32.toml +16 -0
  84. examples/task_apps/enron/task_app/README.md +14 -0
  85. examples/task_apps/enron/task_app/__init__.py +1 -0
  86. examples/task_apps/enron/task_app/grpo_enron.py +906 -0
  87. examples/task_apps/enron/task_app/grpo_enron_task_app.py +146 -0
  88. examples/task_apps/enron/tests/__init__.py +2 -0
  89. examples/task_apps/enron/tests/conftest.py +115 -0
  90. examples/task_apps/enron/tests/integration/__init__.py +2 -0
  91. examples/task_apps/enron/tests/integration/test_enron_eval.py +177 -0
  92. examples/task_apps/enron/tests/integration/test_enron_rollout.py +135 -0
  93. examples/task_apps/enron/tests/unit/__init__.py +2 -0
  94. examples/task_apps/enron/tests/unit/test_enron_environment.py +126 -0
  95. examples/task_apps/math/__init__.py +0 -0
  96. examples/{rl/task_app → task_apps/math}/math_single_step.py +19 -10
  97. examples/task_apps/pokemon_battle/__init__.py +2 -0
  98. examples/task_apps/pokemon_battle/modal_app.py +104 -0
  99. examples/task_apps/pokemon_battle/task_app/README.md +68 -0
  100. examples/task_apps/pokemon_battle/task_app/__init__.py +6 -0
  101. examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py +932 -0
  102. examples/task_apps/pokemon_red/README.md +357 -0
  103. examples/task_apps/pokemon_red/__init__.py +3 -0
  104. examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +225 -0
  105. examples/task_apps/pokemon_red/pallet_town_rl_config.toml +73 -0
  106. examples/task_apps/pokemon_red/task_app.py +606 -0
  107. examples/task_apps/pokemon_red/test_pallet_town_rewards.py +191 -0
  108. examples/task_apps/sokoban/README.md +307 -0
  109. examples/task_apps/sokoban/__init__.py +3 -0
  110. examples/task_apps/sokoban/eval_groq_qwen32.toml +16 -0
  111. examples/task_apps/sokoban/eval_openai_gpt5.toml +16 -0
  112. examples/task_apps/sokoban/task_app.py +1058 -0
  113. examples/task_apps/sokoban/tests/__init__.py +2 -0
  114. examples/task_apps/sokoban/tests/conftest.py +113 -0
  115. examples/task_apps/sokoban/tests/integration/__init__.py +2 -0
  116. examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py +57 -0
  117. examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py +198 -0
  118. examples/task_apps/sokoban/tests/unit/__init__.py +2 -0
  119. examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py +114 -0
  120. examples/task_apps/verilog/__init__.py +1 -0
  121. examples/task_apps/verilog/eval_groq_qwen32b.toml +20 -0
  122. examples/task_apps/verilog/task_app/README.md +12 -0
  123. examples/task_apps/verilog/task_app/__init__.py +1 -0
  124. examples/task_apps/verilog/task_app/grpo_verilog.py +931 -0
  125. examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +145 -0
  126. examples/task_apps/verilog/tests/__init__.py +2 -0
  127. examples/task_apps/verilog/tests/conftest.py +115 -0
  128. examples/task_apps/verilog/tests/integration/__init__.py +2 -0
  129. examples/task_apps/verilog/tests/integration/test_verilog_eval.py +179 -0
  130. examples/task_apps/verilog/tests/integration/test_verilog_rollout.py +55 -0
  131. examples/task_apps/verilog/tests/unit/__init__.py +2 -0
  132. examples/task_apps/verilog/tests/unit/test_verilog_scoring.py +118 -0
  133. examples/vlm/crafter_openai_vlm_agent.py +4 -4
  134. examples/vlm/run_crafter_vlm_benchmark.py +4 -4
  135. examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +4 -2
  136. examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +4 -2
  137. examples/warming_up_to_rl/run_eval.py +127 -18
  138. examples/workflows/__init__.py +0 -0
  139. examples/workflows/math_rl/__init__.py +0 -0
  140. examples/workflows/math_rl/download_dataset.py +80 -0
  141. synth_ai/__init__.py +41 -1
  142. synth_ai/api/train/builders.py +73 -29
  143. synth_ai/api/train/cli.py +12 -6
  144. synth_ai/api/train/configs/__init__.py +44 -0
  145. synth_ai/api/train/configs/rl.py +134 -0
  146. synth_ai/api/train/configs/sft.py +95 -0
  147. synth_ai/api/train/configs/shared.py +24 -0
  148. synth_ai/api/train/env_resolver.py +5 -2
  149. synth_ai/api/train/supported_algos.py +10 -5
  150. synth_ai/api/train/utils.py +7 -4
  151. synth_ai/cli/__init__.py +7 -51
  152. synth_ai/cli/_storage.py +4 -3
  153. synth_ai/cli/_validate_task_app.py +11 -0
  154. synth_ai/cli/balance.py +4 -3
  155. synth_ai/cli/calc.py +2 -2
  156. synth_ai/cli/demo.py +49 -43
  157. synth_ai/cli/legacy_root_backup.py +1 -1
  158. synth_ai/cli/rl_demo.py +86 -106
  159. synth_ai/cli/root.py +0 -97
  160. synth_ai/cli/task_apps.py +1710 -186
  161. synth_ai/demos/core/cli.py +121 -159
  162. synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +28 -16
  163. synth_ai/environments/examples/crafter_classic/environment.py +16 -0
  164. synth_ai/environments/examples/enron/engine.py +7 -2
  165. synth_ai/environments/examples/enron/environment.py +68 -0
  166. synth_ai/environments/examples/red/engine.py +27 -0
  167. synth_ai/environments/examples/red/engine_helpers/memory_map.py +7 -0
  168. synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py +477 -0
  169. synth_ai/environments/examples/red/engine_helpers/state_extraction.py +32 -0
  170. synth_ai/environments/examples/red/environment.py +60 -0
  171. synth_ai/environments/examples/sokoban/taskset.py +116 -0
  172. synth_ai/environments/examples/verilog/engine.py +30 -4
  173. synth_ai/evals/__init__.py +15 -0
  174. synth_ai/evals/client.py +82 -0
  175. synth_ai/evals/types.py +42 -0
  176. synth_ai/jobs/client.py +16 -4
  177. synth_ai/judge_schemas.py +127 -0
  178. synth_ai/py.typed +0 -0
  179. synth_ai/task/__init__.py +14 -5
  180. synth_ai/task/contracts.py +124 -38
  181. synth_ai/task/proxy.py +48 -56
  182. synth_ai/task/rubrics/__init__.py +53 -0
  183. synth_ai/task/rubrics/loaders.py +133 -0
  184. synth_ai/task/rubrics/models.py +57 -0
  185. synth_ai/task/rubrics/scoring.py +113 -0
  186. synth_ai/task/rubrics/strict.py +149 -0
  187. synth_ai/task/server.py +8 -7
  188. synth_ai/task/validators.py +269 -6
  189. synth_ai/tracing_v3/decorators.py +7 -3
  190. synth_ai/tracing_v3/replica_sync.py +4 -4
  191. synth_ai/tracing_v3/serialization.py +130 -0
  192. synth_ai/tracing_v3/trace_utils.py +317 -0
  193. synth_ai/tracing_v3/turso/native_manager.py +3 -3
  194. {synth_ai-0.2.12.dist-info → synth_ai-0.2.13.dev2.dist-info}/METADATA +4 -1
  195. {synth_ai-0.2.12.dist-info → synth_ai-0.2.13.dev2.dist-info}/RECORD +228 -89
  196. {synth_ai-0.2.12.dist-info → synth_ai-0.2.13.dev2.dist-info}/entry_points.txt +0 -1
  197. synth_ai/task/rubrics.py +0 -219
  198. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/README.md +0 -0
  199. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/README.md +0 -0
  200. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/__init__.py +0 -0
  201. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/branching.py +0 -0
  202. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/environment_routes.py +0 -0
  203. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/__init__.py +0 -0
  204. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
  205. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
  206. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
  207. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
  208. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
  209. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
  210. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/hosted_app.py +0 -0
  211. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/inference/__init__.py +0 -0
  212. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/main.py +0 -0
  213. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/registry.py +0 -0
  214. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/storage/__init__.py +0 -0
  215. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/storage/volume.py +0 -0
  216. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/test_agents.py +0 -0
  217. /examples/{warming_up_to_rl → task_apps/crafter}/task_app/synth_envs_hosted/utils.py +0 -0
  218. /examples/{rl/task_app → task_apps/math}/README.md +0 -0
  219. /examples/{rl/task_app → task_apps/math}/math_task_app.py +0 -0
  220. /examples/{rl → workflows/math_rl}/configs/eval_base_qwen.toml +0 -0
  221. /examples/{rl → workflows/math_rl}/configs/eval_rl_qwen.toml +0 -0
  222. /examples/{rl → workflows/math_rl}/configs/rl_from_base_qwen.toml +0 -0
  223. /examples/{rl → workflows/math_rl}/configs/rl_from_base_qwen17.toml +0 -0
  224. /examples/{rl → workflows/math_rl}/configs/rl_from_ft_qwen.toml +0 -0
  225. /examples/{rl → workflows/math_rl}/run_eval.py +0 -0
  226. /examples/{rl → workflows/math_rl}/run_rl_and_save.py +0 -0
  227. {synth_ai-0.2.12.dist-info → synth_ai-0.2.13.dev2.dist-info}/WHEEL +0 -0
  228. {synth_ai-0.2.12.dist-info → synth_ai-0.2.13.dev2.dist-info}/licenses/LICENSE +0 -0
  229. {synth_ai-0.2.12.dist-info → synth_ai-0.2.13.dev2.dist-info}/top_level.txt +0 -0
@@ -3,8 +3,13 @@ examples/analyze_semantic_words.sh,sha256=z-3qJBAlQuMrfRzoszofle_2b3Fy79rymvEAco
3
3
  examples/crafter_debug_render.py,sha256=McPkX8z6ffANOfoR0Xw26h81HNHtT0F5y4bzUhwYonQ,6261
4
4
  examples/run_crafter_demo.sh,sha256=7FNvooSgq-ezccGy5j_h_uRXObiQtcnybPcTwaVGDpo,392
5
5
  examples/dev/qwen3_32b_qlora_4xh100.toml,sha256=YXLo1I_eHamUHMjIvsD9Tx3_HXcLfjlasd6X2BF7i5g,766
6
- examples/multi_step/crafter_rl_lora.md,sha256=yv7C7lyBELT8OWufi8PtG-Z7Hqxr5KxVTmK8XUxOAIw,1033
7
- examples/multi_step/task_app_config_notes.md,sha256=nCyJYZwPI_5ifmuNw_cJATeRaO0aikk67tbG_J4WQns,21841
6
+ examples/multi_step/crafter_rl_lora.md,sha256=sZHliCaYCq_T70JyTyK0jr-1yQ17zkZremj9GSeHG_I,2815
7
+ examples/multi_step/sse_metrics_streaming_notes.md,sha256=2k5nNOB4IgXrfC0czdup5KryMOwbHT_HbSpS53UNX2U,15630
8
+ examples/multi_step/task_app_config_notes.md,sha256=1ngz8aGCykA1iMCrVdc1yGbqXan530893Xzf4KK9xe4,22212
9
+ examples/multi_step/configs/crafter_rl_outcome.toml,sha256=gZwpQBqRoGLkQnYvOk98dTjKO8EMUd3lg8daxXNoD-8,1378
10
+ examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml,sha256=Ljs1H2Pynf4AmPcigMMtEA3Y_DS3_lZFeLXBVdcATQ0,6175
11
+ examples/multi_step/configs/crafter_rl_stepwise_shaped.toml,sha256=MjNyqzbWmer1S6UtiWHvzFLaJl5JX3yfwGcvnU_F4r8,1864
12
+ examples/multi_step/configs/crafter_rl_stepwise_simple.toml,sha256=VUXFDFUMlni95Dtj1v9k52_LAl6Iq97ra4UTw6v2-60,1492
8
13
  examples/qwen_coder/README.md,sha256=xhoGKdIlRt8fO3F6HTpq6rzw3bs4ezDsGcRBNCz90Fs,3145
9
14
  examples/qwen_coder/_shared.py,sha256=oGUmx7gKkgkmToXHXAPocG72YKO9WGRjguVhmX3XE7s,3557
10
15
  examples/qwen_coder/generate_dataset.py,sha256=bfa1LMvV7jd2GmNkFE5rn2K1SETNEzMjv7SXD0C24K0,4484
@@ -23,16 +28,6 @@ examples/qwen_coder/scripts/infer_coder.sh,sha256=gkj9skS8Y2gJx8kvIDfnRS1LgpqNUa
23
28
  examples/qwen_coder/scripts/train_coder_30b.sh,sha256=Yz34zXssI9rDtTZ3pxi5TcXY8kdIuv5ervsRH5Rl_A8,498
24
29
  examples/rl/README.md,sha256=qzv-URBhEr3r4ipEyh-mP9CiCIz_KbckZWlfXdWbafA,6560
25
30
  examples/rl/download_dataset.py,sha256=UWEwa1Qn_xyODFyMEV6ZhEXSUfDK-dVV_OSHSS3MjJY,2650
26
- examples/rl/run_eval.py,sha256=MIOZMQ4zRf8lhLigC_VUU1Wikw3GRnio3pxgQYZNt_4,14951
27
- examples/rl/run_rl_and_save.py,sha256=KfdhOYBOFIM_jElJNaXtebbYQlkaP2NpUzmIkgDAr1Y,3314
28
- examples/rl/configs/eval_base_qwen.toml,sha256=qst95ZUerBx_kS2mqBwsg9QEDEGFhNw12Ibpd9IJOI0,337
29
- examples/rl/configs/eval_rl_qwen.toml,sha256=o07ZvAxjj_ejj3zbjESmtpIOh6QqkwpTD2ZUL9Lzx5A,247
30
- examples/rl/configs/rl_from_base_qwen.toml,sha256=KDDtpvVikHZCcyUKYtgWq9XAfAEY5vRADPpcxpkdVsg,605
31
- examples/rl/configs/rl_from_base_qwen17.toml,sha256=8kAQ9GL0rVDECKPYaN8MWuDbLldwr76c2d8nyHwr784,1360
32
- examples/rl/configs/rl_from_ft_qwen.toml,sha256=7s5HK_YM7zVnvjJavvfai8Nc_eUx_70cgHeWN19vXXM,638
33
- examples/rl/task_app/README.md,sha256=oHfcMF9V_CPLnGbrarTRRIQpQ1wqV1zL74KWUZtcKwI,802
34
- examples/rl/task_app/math_single_step.py,sha256=DhmC2hNf8jBPCrEqNhRZvVWSiXSnKZsU8sXmAX5WW48,34568
35
- examples/rl/task_app/math_task_app.py,sha256=JTbdpqIBGgJ-ILMLxgH88ewRHivgtIeIibtGT4t4nac,4284
36
31
  examples/sft/README.md,sha256=oC5cVp3aVwRLblm5WgSRQQtHE_ugKB2LwVn9IhjM-xA,6050
37
32
  examples/sft/evaluate.py,sha256=COBozO2tn8XUC2IegafAAsZiWgJ4OjdT7KEyLsW8JV8,3948
38
33
  examples/sft/export_dataset.py,sha256=fveTXUPActPQYq8hUP1hWGfrLzGgy5Zkbkt4vKFKjBs,4717
@@ -42,7 +37,7 @@ examples/sft/configs/crafter_lora_qwen0p6b.toml,sha256=Mz9L-vWChHrGpPBHxPzaxvczC
42
37
  examples/swe/__init__.py,sha256=kDIi3dx6u2pTq0Sn0U2S5FTWnIAY8RiWrH_Jr9BX82U,337
43
38
  examples/swe/task_app/README.md,sha256=Ln9Ul_zDqL-aoXifuVnoB0nhb8kvdFFLrsS16zRbttM,4184
44
39
  examples/swe/task_app/__init__.py,sha256=UHMG4o470kSqE2cM6gUv91nEIKlEvg12N1z97i5RPhE,60
45
- examples/swe/task_app/grpo_swe_mini.py,sha256=SrBtkTkJRDOzvIYf29vqAgT-fePzBAFD-Ka2dB2de6U,20577
40
+ examples/swe/task_app/grpo_swe_mini.py,sha256=ASjnKeZ4Ybl59qqMnZe0LCXOUCRg8F8hRfHOUjHceYo,21568
46
41
  examples/swe/task_app/grpo_swe_mini_task_app.py,sha256=gC1MlBJQ0Y5GAL5b_ALtQ-CbKBTmXKdl4NTug5FqtrE,4780
47
42
  examples/swe/task_app/hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
48
43
  examples/swe/task_app/hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
@@ -52,9 +47,9 @@ examples/swe/task_app/hosted/hosted_app.py,sha256=hr1jblOUsx0bakgy6zXoEHROeUDoVP
52
47
  examples/swe/task_app/hosted/main.py,sha256=_F1CAEYiRqPYjTzajOJtX0YFKt4DQe3ioLmCPTMwz0c,2464
53
48
  examples/swe/task_app/hosted/policy_routes.py,sha256=V-pgQRfeDUQH7VlSHroy9t5IO-iTOkcZLFHnjb8V2H8,49394
54
49
  examples/swe/task_app/hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
55
- examples/swe/task_app/hosted/rollout.py,sha256=g-CCh0HaNsUabzbQEUB4woCl0JcbzKUDe_LXXY8Jksw,78850
50
+ examples/swe/task_app/hosted/rollout.py,sha256=d-SOtf315n2yA2xI3c2HWpxn3wfUU_XYI4d7kouq0sI,80928
56
51
  examples/swe/task_app/hosted/test_agents.py,sha256=Vbxm8KJ5x4TbMpVGAzLkZhDCfZcOpA0t6LyUbKKi-Dw,5580
57
- examples/swe/task_app/hosted/test_service.py,sha256=jFEtE3UqVCq552MSPliS2eO0pDbAS3tSDRJL0A-edTA,5111
52
+ examples/swe/task_app/hosted/test_service.py,sha256=H4ssyW9BapGfwk2s_XyTuuvoT8ghc1RpNBbRYUuFoOk,5154
58
53
  examples/swe/task_app/hosted/utils.py,sha256=8Rnp0NTKTD_kPXg8zfpIy_we2hfk2agKPUVH_aqMsE0,1994
59
54
  examples/swe/task_app/hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
60
55
  examples/swe/task_app/hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
@@ -73,19 +68,163 @@ examples/swe/task_app/hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMot
73
68
  examples/swe/task_app/hosted/inference/openai_client.py,sha256=rXEnoZA04IWnEVNfORBaffELa4ub0dqes4sMAc3Nw_Y,27793
74
69
  examples/swe/task_app/hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
75
70
  examples/swe/task_app/hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
71
+ examples/task_apps/TESTING.md,sha256=Ub7FD4pfjbvc4IX6WWfnRTCwh5aens5Ale7gHf7SuVI,7422
72
+ examples/task_apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ examples/task_apps/crafter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ examples/task_apps/crafter/task_app/README.md,sha256=xjt_l7BGJmAMwanKoLAhoy2cCVav_Hh5Z4iKGLUNz3E,1664
75
+ examples/task_apps/crafter/task_app/__init__.py,sha256=jG6aNYGWXaGtTd8BSzq7NP0SuCAz2Us9qwridyoPfW0,40
76
+ examples/task_apps/crafter/task_app/grpo_crafter.py,sha256=oahfDp_clqyIgoM2jVjKB_HLaM1beV_6FawGVliKato,24729
77
+ examples/task_apps/crafter/task_app/grpo_crafter_task_app.py,sha256=-eVNvVitLt9e31iR2RTLc80vXBQHDUL4lfsJTgf8aEI,5406
78
+ examples/task_apps/crafter/task_app/synth_envs_hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
79
+ examples/task_apps/crafter/task_app/synth_envs_hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
80
+ examples/task_apps/crafter/task_app/synth_envs_hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5vw2Robhww8Q8,5318
81
+ examples/task_apps/crafter/task_app/synth_envs_hosted/environment_routes.py,sha256=Y0iaLQ1nUkxBCD4aY39J4XEt66J-N4_J0uPj492i75g,49640
82
+ examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py,sha256=hr1jblOUsx0bakgy6zXoEHROeUDoVPY1I66aNyyRQDg,7547
83
+ examples/task_apps/crafter/task_app/synth_envs_hosted/main.py,sha256=-GL__EH3Xr47vp3aD30XNXNrFPOj1bRLpOYQ-yvfwIU,2481
84
+ examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py,sha256=80erGGZbNiHhk7iGx9yDCdqDeFelLZSojXAZHjvqNJU,49590
85
+ examples/task_apps/crafter/task_app/synth_envs_hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
86
+ examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py,sha256=h4rK9NIB97CtK-c3Rg-MMxIgWlBe0QcUvjM2Gr5J7RU,84828
87
+ examples/task_apps/crafter/task_app/synth_envs_hosted/test_agents.py,sha256=-TDfCs-LSlRgyWHGvO_6YAmjauwi1x4618D8CA9d8aA,5600
88
+ examples/task_apps/crafter/task_app/synth_envs_hosted/test_service.py,sha256=H4ssyW9BapGfwk2s_XyTuuvoT8ghc1RpNBbRYUuFoOk,5154
89
+ examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py,sha256=8Rnp0NTKTD_kPXg8zfpIy_we2hfk2agKPUVH_aqMsE0,1994
90
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
91
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
92
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/app.py,sha256=QZ9kT8Q21NivxQJ_PzWN1roQUDMZDvWLJMxb-VSSG3k,19
93
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/environment.py,sha256=Qcf0ZX8p0YRjlLuRxvkNgn7WLeWbLWy1FbibWuEo83Y,23103
94
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/policy.py,sha256=xAveAL24E9ud_KRWyX6UdJ_4b7MIS89S9Ahw7lSEu-Y,22524
95
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.py,sha256=nZF_ZwuPbbDrnyTynak_BLp0lclHJEBAXTd8CQehOYw,6432
96
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/shared.py,sha256=NfhgJPkzjhA-bLDF6zYP57Cs1pnpqteJqzO3lsFOdMk,10074
97
+ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/tools.py,sha256=zmTxJ8IpTod7DRDCQhkLDw7KgFCeAVFbf4cQpuOgSgI,1788
98
+ examples/task_apps/crafter/task_app/synth_envs_hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
99
+ examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py,sha256=R3lsxp2T55Y3YY4S4NqG6IjN5KCLyB7iNt2Php5Z9Xk,31754
100
+ examples/task_apps/crafter/task_app/synth_envs_hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
101
+ examples/task_apps/crafter/task_app/synth_envs_hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
102
+ examples/task_apps/dev/pokemon_emerald/__init__.py,sha256=SXrxD6S96U2zgs7gGGwrdvryIJ66TM3xfTtbG3-4RHI,52
103
+ examples/task_apps/dev/pokemon_emerald/modal_app.py,sha256=mp2dky2GhyJD7YtADBi__qrURbBkec7y8LiLrqxmbfg,3683
104
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md,sha256=z2ZiIz8PjLj9HLfW0BlvbAuXc3gvPDvgr8uCK76A3ME,29073
105
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py,sha256=tvn0ZzTfUwV327FtWX6Duhjvw7NHji7FWETz0JXYUa4,2485
106
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py,sha256=PcE_lq3CIGn1IZWCTMYr9Kh9cM9jvQCs0fxNsVYy3jE,7129
107
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml,sha256=zSZ00xYYIiphhJtMaxFVLtIzEJP7uQ9L2KQFxpz-cN4,2092
108
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py,sha256=EEVb5kMp4zryPGou3j_H-5E2IknyEG-6VZSfRFdMthU,7358
109
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py,sha256=lLZGeO7SNVVzcA-lnr4cuBIScbW1MlmriIzGmLJQyi4,4014
110
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py,sha256=Pjv_H2RyGAcvkVXRvpDk6CKovOJlAllF1WLPZyKByCc,7594
111
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py,sha256=CH4ev6wbXQ8Kp5INgFFdramsInp5G8_s_67FiG2VNqo,6531
112
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py,sha256=r_Qr8Trd_NXRSA7LOFb_ehmPk-OOwhD6nR2BCEPYAkw,3167
113
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py,sha256=N0KBru8YjNqZ0wwjQTtTvnu-r4CwAzwW-Wl1D5o6B4g,4242
114
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py,sha256=HNXpE_D8dVrXbo2BU4ix4K2y_wzzaxcAaY4uH1LKrvE,72069
115
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py,sha256=_YSU0zYCpMuDQ6AQGmhqxRC0bIkHd-BAZ7XJ2O6Vep0,470
116
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py,sha256=Esx_qaVGk-UgmRAuHrYx9rabLpcPnjwW54fJaDArdcM,668
117
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py,sha256=-71KY8lMQtVyJUyu0U2FqIQjEnrasXcy5fRwcSyI9uw,24540
118
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py,sha256=InRe921KPXsY2cpL4DV4y186rdU6Pumaor31bq-Jj7Y,72403
119
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py,sha256=-aTwPGtMPkROJPpdVway59ivynKHqnQPtzwM0w66zhU,42932
120
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py,sha256=C5z0D8r0s7UkS2GKpe2ebi_GLrweksYKx2N6U9WfMAM,228580
121
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py,sha256=hGdln2QnvMXNRia5PmieOhu2TmLnd9qcIvkLKjOjnA0,1194
122
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py,sha256=Ilbj-QWZrxhMdVc_HJjJVACEITzJuEOZynckmnE1QBE,9042
123
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py,sha256=kDt-8czBNtt7NoC9ppzc1_GHlyLYdJaYarLSK8j3sR0,94016
125
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py,sha256=AXrITRznjRjjNvlAwbnllod-XmB_jvCmm6Z6grmgK7M,24299
126
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py,sha256=xDLFqkyFA9cP3XB5t-mZV0SPDbsBpIj-74EkCfRi3i0,4646
127
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md,sha256=d_mfgBjBXPHTZYT8fHSd_NRc6xOXdUlOFMwQY9iYcps,2585
128
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py,sha256=so9fjz0VjZ0tU6o8GthB2yePhzB-Nl6W0X5mL99Adt4,3560
130
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py,sha256=9IJ2LQdpTg-A2fifR9QIdxDsavdW8xgY8KIIow0xBcU,2868
131
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py,sha256=_YpDTWTzv1YUUXNqYpF1vTD9PN1C71lsJRlYgfyRd-g,18259
132
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py,sha256=xSYEP1qk_E6gGDdGFPUnkfAUKELIDSZR8BGo_p9XpEY,6762
133
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py,sha256=p7U4GTdqiMootOJfr21Mcso5n21mPvZWKL1EO4-e3Ow,4643
134
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py,sha256=9LaLNhxwTfA2ib_0B3vvj6h8BKVU3MlV9f9NyptowHw,10012
135
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py,sha256=yQoZTZeVpKo0GHysAkLmSZB9nTCE_nw3jJY7QMhDTTY,13245
136
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py,sha256=jwMfN-yASVV5MjYA5CrAA3K7J0POP36i040wpqmgL44,7056
137
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py,sha256=JrklWs-vQDSL1oCdp84FRwROuBi49OTXjJGWXaP_xjw,8298
138
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py,sha256=iLOp8xV0x3yIp824UgsuVcnYSns9niJ-vsYRxz3kAb0,12223
139
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py,sha256=m2_qSC3cV9p9O_QqbtDjBG2ci5Dzz94s3__K4G8xP8A,19824
140
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py,sha256=4t_ftuqsXPZH87EtYAqoV0hRARCUaRTGd8AQOl6dy00,25354
141
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py,sha256=fJSREOm3AqDLQ4xBXVLh1xtWvfi746e_epJcLRqpOtM,12759
142
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py,sha256=Bdx5R6qpkB42STVxmNetI5qRsYANkDIlhkIrwkqD7YI,11116
143
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py,sha256=IBPiGaSFugAabER8OFiasBSz77hdq45J9eBHgsTOoI0,16236
145
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py,sha256=N_ZmjvWocM_t0-Vz2KSenHRkTdbRkB3dKC7hF80ux9k,10973
146
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py,sha256=NyvXLLvx1MKgtHLOLbiwTjJWYJ3PJx8XQuQs0uVumUA,8343
147
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py,sha256=rcdsMTtqacTNI6h3aFP_z3ETvXfRsYxe_TO_SZPSCYk,630
148
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py,sha256=CBRfyhGvGwtNglXpN2SF6i7I3ztk862VXG2obFcPIgQ,1661
149
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py,sha256=UqZ0j5V1Zr5aIKCAm5iAszkF8ID95gwr7webN3Wyb8E,20994
150
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py,sha256=DAbYDeOJATles_pDdLb2hOfSkFR-_roxG2E2YTr8vt4,14433
151
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py,sha256=5YSh9Dnhc1XXT_3JGxUSdICurEUDifaAlE-OVQ9wbdw,84901
152
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py,sha256=X5AXJIT0eHMRKhpIo9rEylVGrDhgPh_1qmtA2H4SdEs,1285
153
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py,sha256=QIt6qCIh4ATTlT1MuicBHEG5LoXIr7BzrboNAKCuT_Y,3253
154
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py,sha256=aYSVwkR0YTefQYhjBTvSyP2-unHNbb20ASj-QBIrC10,14445
155
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py,sha256=4SyMmnlLoKrttKyW_-U5I90PkN1dB104FHNj-hMv7pI,43878
156
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py,sha256=Y5PV187dcqe2geE8ZVzEVMMIX8e61nXhHgHzG8-Cbgc,5566
157
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py,sha256=p5J_V1lcgZF7QN-cgru6DXQjPXlCDpSBhw0b8vGJt_A,65684
158
+ examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py,sha256=3Nzu2g7XAyS56dMYtcsV2BPcyf6blrhlOXFemILyefk,36185
159
+ examples/task_apps/dev/pokemon_emerald/task_app/README.md,sha256=ho66SLBlnd22njyQGRoZV_9HrCCGTaMWAsNS0HO0Yog,3372
160
+ examples/task_apps/dev/pokemon_emerald/task_app/__init__.py,sha256=PDAFWgTtefsLKdbB8mlHNaO1LenWM62QKKCcGU8NzoQ,118
161
+ examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py,sha256=bajbe-IXuqkEiMXoNKmpSl-iHshS_gUuyiAD0od-tx8,24135
162
+ examples/task_apps/enron/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
163
+ examples/task_apps/enron/eval_groq_qwen32.toml,sha256=aem8BZdN2xWAHTPRl3Fla5FdtJozFS8k5S1BQx6y03g,330
164
+ examples/task_apps/enron/task_app/README.md,sha256=lpYueq4vZGhRhgixC9Hk17ibCfJcuB4hlRWamoS2xFQ,743
165
+ examples/task_apps/enron/task_app/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
166
+ examples/task_apps/enron/task_app/grpo_enron.py,sha256=iYC9OGQNsuQnTULv4ikS3OAMj0G5gVynUi90NEepIVY,32742
167
+ examples/task_apps/enron/task_app/grpo_enron_task_app.py,sha256=5M0CoXsqtzarK3Yg92Yhwt-xMetsj9LU2WGkZBceKZ0,5359
168
+ examples/task_apps/enron/tests/__init__.py,sha256=EMFSg5ws6IzxapqlQOFZ58xfvOV6bUSqswhFQvgl8Kc,24
169
+ examples/task_apps/enron/tests/conftest.py,sha256=F3gvh30jila4lWZkJbYhOdGKyicJi9sF0Yqf3Oxobbo,3339
170
+ examples/task_apps/enron/tests/integration/__init__.py,sha256=V7s9PvtdhsJERXFq8TpcuS-Iot63CAEoJQzXFE0syko,40
171
+ examples/task_apps/enron/tests/integration/test_enron_eval.py,sha256=eXwisvXy6DvM4UHLJs9wPS4FS7-3_R27qpubpmiIqYE,5013
172
+ examples/task_apps/enron/tests/integration/test_enron_rollout.py,sha256=lu1RKTxZCXHxXgYDdIQB3jEj33LvT9-WIek9mNPL3Vo,4005
173
+ examples/task_apps/enron/tests/unit/__init__.py,sha256=7ZLRaIXKu9O5L9fsBlAPzCTCJl6ADMofYw83DOE8mrY,33
174
+ examples/task_apps/enron/tests/unit/test_enron_environment.py,sha256=dZUlfN2tNFHieT21dHBDSdoiBOS5_WsxtOGHn3OJS-A,4545
175
+ examples/task_apps/math/README.md,sha256=oHfcMF9V_CPLnGbrarTRRIQpQ1wqV1zL74KWUZtcKwI,802
176
+ examples/task_apps/math/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
+ examples/task_apps/math/math_single_step.py,sha256=6mK8KS1oc-daGhBKt6Ou1UQrYXppJ9ySkbxJMpXHa4M,34932
178
+ examples/task_apps/math/math_task_app.py,sha256=JTbdpqIBGgJ-ILMLxgH88ewRHivgtIeIibtGT4t4nac,4284
179
+ examples/task_apps/pokemon_battle/__init__.py,sha256=tGIyoFjwxOvuKNBJITgTPACBDMbambOBzROyEwLw4d4,53
180
+ examples/task_apps/pokemon_battle/modal_app.py,sha256=GDzCeGIrAVKEENy4sePBcG4Y4LVeJgj-G36XzCSmGx4,3291
181
+ examples/task_apps/pokemon_battle/task_app/README.md,sha256=BpYPqZoQ4-LCJh8GKTJss4k-zZ0FrCagGZPrfqLRw9Q,2935
182
+ examples/task_apps/pokemon_battle/task_app/__init__.py,sha256=NGdJlNjseqXBatoYS-gW131p3EO9CWEOvaKoWXJd1t8,120
183
+ examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py,sha256=cKlGJBF9_-wpGth1K9VlCe4Xzj2KxYdMYFdONpHif38,33845
184
+ examples/task_apps/pokemon_red/README.md,sha256=tG0GJg74ZalVqjS1kVXRTN3IsAslrsh8RJ6ZjfcNWqQ,9919
185
+ examples/task_apps/pokemon_red/__init__.py,sha256=Fxk5ihfqAxDclN1O-BKeZSfsz_dBLHuTV9vmh6hGqlk,47
186
+ examples/task_apps/pokemon_red/eval_pokemon_red_policy.py,sha256=woX8QmBu9IbRigoMVEFIgJhAgU1NBxcKNLF02fr68AM,7516
187
+ examples/task_apps/pokemon_red/pallet_town_rl_config.toml,sha256=lp0jly_wUrGNzT87vIDVaOgI1QVsNeQVeb9zuJ0j2dk,2157
188
+ examples/task_apps/pokemon_red/task_app.py,sha256=U_kgejUszM1HVq2djouc_0r6iXMV5CPTgiTqizoT6-w,26768
189
+ examples/task_apps/pokemon_red/test_pallet_town_rewards.py,sha256=dzmdFu5xgxh1hxzXCuBbaA58EUwEnybD9kuCQuVeIiY,6252
190
+ examples/task_apps/sokoban/README.md,sha256=sazWds1oMPF-EUp4R3AvFRo7z0gkPtxJZV3yrKOI-zM,7728
191
+ examples/task_apps/sokoban/__init__.py,sha256=zUccj5m53GWM8Pw9JcZmq3ib4ddoNDJ_bZcqJ47mhkc,42
192
+ examples/task_apps/sokoban/eval_groq_qwen32.toml,sha256=mxGVeGlFFTmukVReEInuLDoUQ_d6ACsBFmKHoW5XXMA,337
193
+ examples/task_apps/sokoban/eval_openai_gpt5.toml,sha256=MVAWCa2hk01K98JbPrZpR-JeRDEdZ4sNSEwweDbb6ko,326
194
+ examples/task_apps/sokoban/task_app.py,sha256=fBlVHXCIg2_eTyYvIFLffdboR8V1P6SMUHUBsxPMdes,39887
195
+ examples/task_apps/sokoban/tests/__init__.py,sha256=vDyeHExKZQpLKB6qKtHKYkx755dRFeHrrP-duPgUapo,26
196
+ examples/task_apps/sokoban/tests/conftest.py,sha256=OuFG6mJKJn7JCgMvlNu11VMuHPTvaWqaX67pgMD7NB4,3252
197
+ examples/task_apps/sokoban/tests/integration/__init__.py,sha256=RUvk-w3MRmhwiJwa6X8Yvykure8DlyK03y8UaktRlfg,42
198
+ examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py,sha256=dIIBlCfkOvbTogSqF_mNZxa_iwHSrK3c5N1CUzZp2jI,1841
199
+ examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py,sha256=SjQMPHrxvtXNy84LWuLPiCHaqSgncoayEy7Bs5xKk9M,6353
200
+ examples/task_apps/sokoban/tests/unit/__init__.py,sha256=UNBi717zpuvlToS-ndn6CX6AM4fsp-PrzdMDYYRhgZI,35
201
+ examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py,sha256=DhKzPHu1ep9FVg9PutXaJpUd1707VPB1HlA2oc3-Zpg,3661
202
+ examples/task_apps/verilog/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
203
+ examples/task_apps/verilog/eval_groq_qwen32b.toml,sha256=9x1UppKc6tcebyrkIj2O4UxYnczdxIM7J3GOb1CKYe0,394
204
+ examples/task_apps/verilog/task_app/README.md,sha256=jnCMH7J8LoQycpgOmBnG7C9jjR3FHO7MelD_0TaQs7Q,687
205
+ examples/task_apps/verilog/task_app/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
206
+ examples/task_apps/verilog/task_app/grpo_verilog.py,sha256=dXM47G7l2GByZsaPheCjGAHfqi5gn9cHYBO3ppxmHTg,36789
207
+ examples/task_apps/verilog/task_app/grpo_verilog_task_app.py,sha256=--xbtqHx6TgN2a9yI1cMyc1pHk8QEjxwaC2tip1mUAw,5312
208
+ examples/task_apps/verilog/tests/__init__.py,sha256=awgALpObKPxkhmMnb9SWzU2lobhdGYHCL_rcgN5eITM,26
209
+ examples/task_apps/verilog/tests/conftest.py,sha256=iW5lLWV-pv_AdJLF_BM3l7Fypd3uWMy4hG-ZZKCf3ic,3351
210
+ examples/task_apps/verilog/tests/integration/__init__.py,sha256=PBe9kjTw3OmvzFb1IATeNieHMC7XQdV1gki5VjmOlmA,42
211
+ examples/task_apps/verilog/tests/integration/test_verilog_eval.py,sha256=1XkLDJcF0LVv00jJUqkf_FhxOf1SWF7T1qoLKkCbrhg,5238
212
+ examples/task_apps/verilog/tests/integration/test_verilog_rollout.py,sha256=xgEX2DxpuqfTPWn3f1y86Vc2ymDNxXCZNmHXVTuaw04,1602
213
+ examples/task_apps/verilog/tests/unit/__init__.py,sha256=wDLGnktgXg6fISwZUQYBFTsbOuf4FZy9yhlMPVpbKE0,35
214
+ examples/task_apps/verilog/tests/unit/test_verilog_scoring.py,sha256=4GGcdgJ2w-eusXOIP0jEeMCAESAMWUtJp_1MejIQXuQ,4073
76
215
  examples/vlm/PROPOSAL.md,sha256=Ojn3QBS-qksuYv5SQXf0Oynq84EKCSWAzPsIub1BwD8,2838
77
216
  examples/vlm/README.md,sha256=4I1QGhGba9MDeiLGIFhAs6Muhb3yoP5uf_tMlzza_q0,2630
78
217
  examples/vlm/crafter_image_only_agent.py,sha256=wvb514e8POHoL7NF3BfSRDS4yB7Wz1EMLbsvL83SHk0,6739
79
- examples/vlm/crafter_openai_vlm_agent.py,sha256=JCs9v7v0BXB-7BcLb_Doz4tMZxV1it-686P9-7tA2Mc,9555
218
+ examples/vlm/crafter_openai_vlm_agent.py,sha256=9V7tf_IeiYouZE92khNtNYpwdmhGwnf-B5UQvAyPG7g,9543
80
219
  examples/vlm/filter_image_rows.py,sha256=VGEYwWY9vXdBeEJYUrXEO0yzEp_UOUxrvwXFE292ves,2023
81
- examples/vlm/run_crafter_vlm_benchmark.py,sha256=HtKQOEWA5uZpniOFiW2MHpc3_XBlFdLRENCqMsplHKI,11280
220
+ examples/vlm/run_crafter_vlm_benchmark.py,sha256=TGeDAxirfCicYlVNXd5XKXd0IG7V0EIC4dfasJu6pUw,11268
82
221
  examples/vlm/configs/crafter_vlm_gpt4o.toml,sha256=CFQ1PD1E2ZEvBRbVeuFZ36MfN9tnx6FstnLai-XYAj0,893
83
222
  examples/warming_up_to_rl/analyze_trace_db.py,sha256=wJPQDbma2ctoisM73ue5dRQmrJVZFIcDOwI6j1u76lA,14424
84
223
  examples/warming_up_to_rl/export_trace_sft.py,sha256=qcVOgZduYYImDv2xs-h_CoyMpX_U_hr3DgsYfDGFDIE,25450
85
224
  examples/warming_up_to_rl/groq_test.py,sha256=vffVVTwQNypkqppxMLy17ySafoD2WKIK-Qf9w13lbyE,3138
86
225
  examples/warming_up_to_rl/manage_secrets.py,sha256=qLe_zglOLCd0dxPPCyQQ9CnhGkvtLOkBrZ0Xd4mmnIw,4372
87
226
  examples/warming_up_to_rl/readme.md,sha256=u2KX7grlDnOMRRrC3vzTej1K0OOmTdx5LHs2opTfLt4,6431
88
- examples/warming_up_to_rl/run_eval.py,sha256=-jd7_TtAyNKiHyH92slvDF-JzfCDH23M8q5CK-_usCo,26212
227
+ examples/warming_up_to_rl/run_eval.py,sha256=zN4hZLJILulQNUw_WiDwEZUA3xIAcG6ewl7X_iNP-n8,31390
89
228
  examples/warming_up_to_rl/run_fft_and_save.py,sha256=RVbMuHUB0F7h_CO26hvAhEx5W3fqxVvokb4VlOiR6RQ,15095
90
229
  examples/warming_up_to_rl/run_local_rollout.py,sha256=uRfCR1E066fF6cQTajllb0Dzv0sU4iT6QOitZ_jRVHw,8783
91
230
  examples/warming_up_to_rl/run_local_rollout_modal.py,sha256=oGHqSCNUSAluJFlVkOKItONWh0wUu4UxRXmqnkD37E8,8948
@@ -98,71 +237,61 @@ examples/warming_up_to_rl/configs/crafter_fft_4b.toml,sha256=q_cnU3P-eGG_VFOepw9
98
237
  examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml,sha256=YP4HLWDh6iIvw6McPXw5kK1RUFQF4dvKP4yH5bHT5nI,678
99
238
  examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml,sha256=zQi31JYa83kW-ceEqDZi-7oajsCmEPrlJR57zN5ygO8,340
100
239
  examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml,sha256=6eeU1GVvK1cYSEuGXk-AhOwJLgRcf74CTOI5XlqNYBc,817
101
- examples/warming_up_to_rl/configs/eval_stepwise_complex.toml,sha256=sTfzF4z9IXFmReftdgHMw5k3aH78bdpSlF_ANyovsdo,941
240
+ examples/warming_up_to_rl/configs/eval_stepwise_complex.toml,sha256=M1YGni8ng1RTJQR3xM65cv1jotNrJqseru47bd6omtY,1040
102
241
  examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml,sha256=N5xt_9_AaVvJX6up90bSuXpF8Yt-cGJfmTA-Au3NY_4,591
103
242
  examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml,sha256=ly42h8kIeSX8Y9mygC8mx7G_0KypUcPB9vqx8P-6QmQ,825
104
- examples/warming_up_to_rl/configs/eval_stepwise_simple.toml,sha256=ZNCryLgVCEkv8anP1pKkfNZ_X2kiloW4lmTqeJXtbxs,783
243
+ examples/warming_up_to_rl/configs/eval_stepwise_simple.toml,sha256=g_Q8EsHOpatX0VfKKBHMGxX0T3yZv42_UzLhF5evGa8,882
105
244
  examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml,sha256=MrcjPlR-5s7XayBXl087QcGuR6484HcdSgS9yYUE5uo,1868
106
245
  examples/warming_up_to_rl/configs/rl_from_ft.toml,sha256=d1cIoLeC80NgOjn0Wohk0a5IXE_ImHVgMsxWPkyAFKQ,1381
107
246
  examples/warming_up_to_rl/old/event_rewards.md,sha256=gHJd3ZeYOnj4xPXt-7sSJamgOaJQ-BpfdaF-CKJK3-0,13450
108
247
  examples/warming_up_to_rl/old/notes.md,sha256=Y9Zs_tUb2Y6kv0MmGe-kAvGM9zCtEDY3Ccf5j7PoFGU,4468
109
- examples/warming_up_to_rl/task_app/README.md,sha256=xjt_l7BGJmAMwanKoLAhoy2cCVav_Hh5Z4iKGLUNz3E,1664
110
- examples/warming_up_to_rl/task_app/grpo_crafter.py,sha256=4GrgnVL0ifhJ12Q10tiyr3OTb2hafHBgCd5MUYNcfmY,25067
111
- examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py,sha256=dw0OCq1guI8rH6yA5twSRUmFztbgl2SNwMW_7sOxYUA,5405
112
- examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
113
- examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
114
- examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5vw2Robhww8Q8,5318
115
- examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py,sha256=Y0iaLQ1nUkxBCD4aY39J4XEt66J-N4_J0uPj492i75g,49640
116
- examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py,sha256=hr1jblOUsx0bakgy6zXoEHROeUDoVPY1I66aNyyRQDg,7547
117
- examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py,sha256=-GL__EH3Xr47vp3aD30XNXNrFPOj1bRLpOYQ-yvfwIU,2481
118
- examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py,sha256=6Wq62ni5qnW2fXuEuoGD0cMKAxjtNve_oG378Aqz1as,48568
119
- examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
120
- examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py,sha256=8pzUbpdIYTmrfLPGxzwr0tgn7ng75ijEMY4_XONBMC4,84720
121
- examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py,sha256=-TDfCs-LSlRgyWHGvO_6YAmjauwi1x4618D8CA9d8aA,5600
122
- examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py,sha256=jFEtE3UqVCq552MSPliS2eO0pDbAS3tSDRJL0A-edTA,5111
123
- examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py,sha256=8Rnp0NTKTD_kPXg8zfpIy_we2hfk2agKPUVH_aqMsE0,1994
124
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
125
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
126
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py,sha256=QZ9kT8Q21NivxQJ_PzWN1roQUDMZDvWLJMxb-VSSG3k,19
127
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py,sha256=Qcf0ZX8p0YRjlLuRxvkNgn7WLeWbLWy1FbibWuEo83Y,23103
128
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py,sha256=FM_g1Z-smCsvF5QqdrE8ts7hJCPjt9BE3-6XEgXMgsw,20050
129
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py,sha256=nZF_ZwuPbbDrnyTynak_BLp0lclHJEBAXTd8CQehOYw,6432
130
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py,sha256=NfhgJPkzjhA-bLDF6zYP57Cs1pnpqteJqzO3lsFOdMk,10074
131
- examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py,sha256=zmTxJ8IpTod7DRDCQhkLDw7KgFCeAVFbf4cQpuOgSgI,1788
132
- examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
133
- examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py,sha256=rXEnoZA04IWnEVNfORBaffELa4ub0dqes4sMAc3Nw_Y,27793
134
- examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
135
- examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
136
- synth_ai/__init__.py,sha256=pRBmoVw5oPO-vKrvHh9ioLk_RsbJTYxhpmkC95GMKfo,1342
248
+ examples/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
+ examples/workflows/math_rl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
+ examples/workflows/math_rl/download_dataset.py,sha256=UWEwa1Qn_xyODFyMEV6ZhEXSUfDK-dVV_OSHSS3MjJY,2650
251
+ examples/workflows/math_rl/run_eval.py,sha256=MIOZMQ4zRf8lhLigC_VUU1Wikw3GRnio3pxgQYZNt_4,14951
252
+ examples/workflows/math_rl/run_rl_and_save.py,sha256=KfdhOYBOFIM_jElJNaXtebbYQlkaP2NpUzmIkgDAr1Y,3314
253
+ examples/workflows/math_rl/configs/eval_base_qwen.toml,sha256=qst95ZUerBx_kS2mqBwsg9QEDEGFhNw12Ibpd9IJOI0,337
254
+ examples/workflows/math_rl/configs/eval_rl_qwen.toml,sha256=o07ZvAxjj_ejj3zbjESmtpIOh6QqkwpTD2ZUL9Lzx5A,247
255
+ examples/workflows/math_rl/configs/rl_from_base_qwen.toml,sha256=KDDtpvVikHZCcyUKYtgWq9XAfAEY5vRADPpcxpkdVsg,605
256
+ examples/workflows/math_rl/configs/rl_from_base_qwen17.toml,sha256=8kAQ9GL0rVDECKPYaN8MWuDbLldwr76c2d8nyHwr784,1360
257
+ examples/workflows/math_rl/configs/rl_from_ft_qwen.toml,sha256=7s5HK_YM7zVnvjJavvfai8Nc_eUx_70cgHeWN19vXXM,638
258
+ synth_ai/__init__.py,sha256=IKZPDYGqQzrJ2dRgtVXiLEoQ3xG0kk5e0CzNdRGeRVU,2565
137
259
  synth_ai/__main__.py,sha256=Kh1xBKkTE5Vs2qNMtDuuOXerHUptMcOiF3YziOpC6DA,146
138
260
  synth_ai/demo_registry.py,sha256=vqt_E7-YdjXc-Q4qcY36wfvwHPGyYBb7lw_sPjKiH3w,9949
139
261
  synth_ai/handshake.py,sha256=Qxe0aLNcBVH5V02fNKq96GPF_2Z8GOAToDR_2HyaeaA,3739
140
262
  synth_ai/http.py,sha256=ACzDOkwa7kIniZVOZngPc6Zfp05h6rQE1oNqsWG_FKo,1038
141
263
  synth_ai/http_client.py,sha256=5AkwvGf7HpvYUpxr_IIM1xdsDjLYois7xTht5ueHYkk,5058
264
+ synth_ai/judge_schemas.py,sha256=7TAFMrsnF8NpTLCSHRDoB9P8WBJc4K3JghmMTfreR9o,4493
265
+ synth_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
266
  synth_ai/api/models/supported.py,sha256=vQu6Ahw1jn1X3-nL190pH_Z45tkQj8hdDyTTda8t5LQ,12671
143
267
  synth_ai/api/train/__init__.py,sha256=aBwlmrj1HWVwDcvUrX4TqpS0BgvkE7Pv7npoIZmtTFU,118
144
- synth_ai/api/train/builders.py,sha256=k8EQSX2jYFbiePn2p-2sdG5rAbfxeeIOxrYI4UE6288,11026
145
- synth_ai/api/train/cli.py,sha256=YZc_Scx-ClE6aJjVMEIzfsiBOlX7caSdg4mPGC-xPm0,23167
268
+ synth_ai/api/train/builders.py,sha256=leh-xiwFc0h0UMcubcDBOqaLdZMpjUMlaxNLm1pjpog,12388
269
+ synth_ai/api/train/cli.py,sha256=GuK35s-oWWTXMh7B3xelAsVOdF8wjVFOAoQrEe3mEeA,23341
146
270
  synth_ai/api/train/config_finder.py,sha256=4touziSykzQ9YCYL2CjXUfojDcJdKO3vFnoWXQ1fOx8,7178
147
- synth_ai/api/train/env_resolver.py,sha256=X6ILO46UebkFJo0CDhzfVCb9y3HC-pOPIwkNhbGgvOo,11854
271
+ synth_ai/api/train/env_resolver.py,sha256=ZP1wkJ63nJrMdkzyDK6rZwf3IhBisDgqyBI7crwrudc,11948
148
272
  synth_ai/api/train/pollers.py,sha256=-rcVrGMN7Rj2HrzJ1IAgphwcrsCzpwwTy0KDk76Sx2A,2341
149
- synth_ai/api/train/supported_algos.py,sha256=AqCtrfiJkocULlDtTPppKWuvOOzQ4tBbh-k3e9MEDZk,5156
273
+ synth_ai/api/train/supported_algos.py,sha256=2GSKnEkZRl_EinJa2YMIWevvxHQLtkKzKMUp7mS2fBA,5320
150
274
  synth_ai/api/train/task_app.py,sha256=MiJ0DLFjqdFNmgk-YHaHVQt31Kxl91Exh9IFfk7GSxM,6439
151
- synth_ai/api/train/utils.py,sha256=_8C1uoXyXXuEmthquHH5XtowVQkf84Kde4jCdmfKnCk,6165
152
- synth_ai/cli/__init__.py,sha256=WhaUb9_UNcQBM1c7W3VzeUKUaBBSV31C0cwvHI-9UFM,2423
275
+ synth_ai/api/train/utils.py,sha256=S3Oq75Kxnm0hWiLhE4qoj2ClBxJIJPUMgFrcma_dguU,6296
276
+ synth_ai/api/train/configs/__init__.py,sha256=Nbc84Ge03oBH7fgFSZFh5jrevm98oKXaKeOoLDW6jZ0,915
277
+ synth_ai/api/train/configs/rl.py,sha256=dVd70-GhmiFoGFTB48HGf-0r3-O2OfqkP4F8BgcmZp8,3694
278
+ synth_ai/api/train/configs/sft.py,sha256=6uVzK3-S8-wbzjzm4wAKi-fwhtjxPBaCcJXQcowAibU,2679
279
+ synth_ai/api/train/configs/shared.py,sha256=EZ296HzlbOfp414ERbMdyO0s_9UvOKWs7PiQPlAEMjU,492
280
+ synth_ai/cli/__init__.py,sha256=MAnsg7GRMYQYQ8y_mf6bjN4Xu0y__GZI-ImfAHlEGWs,1913
153
281
  synth_ai/cli/_modal_wrapper.py,sha256=DHVP-wQi_gdxWyeEiA_DO0nRiMv7XpaOJ3T3-R2pVoI,599
154
- synth_ai/cli/_storage.py,sha256=ABfpzyVnCNWFdAgzxvG0_6CGvEEl91BYNTcrTw_V3dY,680
282
+ synth_ai/cli/_storage.py,sha256=QNLsJKr3371Yw1TkOjR-9wX50CR1KlULZkWv6mhXnrE,760
155
283
  synth_ai/cli/_typer_patch.py,sha256=xBTshJadUQjtOr-PyGZUytpxyV28UvfU5DPWBCa_mTo,1562
156
- synth_ai/cli/balance.py,sha256=VTeJJ98JTA6Z7FujwNzRZAlTzO2BNcFueSnXJYV5f50,8432
157
- synth_ai/cli/calc.py,sha256=cAED6qRzc9g_eKjk7o_ZQsGKw6TA4Dib7NNze8e8L2s,2740
158
- synth_ai/cli/demo.py,sha256=FCsohnKHzNmqT1wZ4PzJ2kLXOF7Mr0jS_ZZrEM_nFpM,5610
159
- synth_ai/cli/legacy_root_backup.py,sha256=Ab3cVlOu3k3kLlrTc2SOtSTJTRxlwJ4JvZg9Ol2BbXg,15961
284
+ synth_ai/cli/_validate_task_app.py,sha256=J3nhwLHtPdSpsbkhEKZm1GeLJCOXCr0uTTAKYV9qLpg,350
285
+ synth_ai/cli/balance.py,sha256=PKzAqZ9xrhGO3SUzcaGu65M2QtPJPmi9hnWHrp8NC4M,8520
286
+ synth_ai/cli/calc.py,sha256=JQtWrDG5fn7UxnNCZwclfxYiPYjct_nB0yOyKifdW4w,2738
287
+ synth_ai/cli/demo.py,sha256=K6abncnbV-UHc8j7hTq08ZgSvaRD5f8EK_0vjEyuTR8,5551
288
+ synth_ai/cli/legacy_root_backup.py,sha256=OhfVfUmpVy3_Xq5gPsLkj8Dl-TiKxEll03riAT8uyM8,15973
160
289
  synth_ai/cli/man.py,sha256=JQDon73ZkuKP9xr1_vRh5fjV9_b5xiUb7zNjny7ArB8,3765
161
290
  synth_ai/cli/recent.py,sha256=iY7vwVH8T6YwEOEC0QLenZSZXpyedrYc_epbP8WORzE,4415
162
- synth_ai/cli/rl_demo.py,sha256=SBH5t5EnRgpq0nZm9LXlAunC8CprXwZkkTzjhWDrXaQ,9257
163
- synth_ai/cli/root.py,sha256=78oCkjtMaLSHEpHRbiaX-FEsdB3gieI7OrZcUMpqrSU,13740
291
+ synth_ai/cli/rl_demo.py,sha256=rcFTBHU1wtp4pg4g2mgv9aDc5Z10N35J0xXM1jPZ2Ac,8124
292
+ synth_ai/cli/root.py,sha256=WggVioCdVIyGnWnKwko2AUBBAeeKxmBjgr_jajo-sYA,10546
164
293
  synth_ai/cli/status.py,sha256=vjr4ifL48pitKojBhuJdY4oIB8NnJ0RZF44fOzKS4SI,4635
165
- synth_ai/cli/task_apps.py,sha256=d49vSAOqk-aKhQH1dWXwOhcEu3my-tRsjbdOBRQ3Mp8,105691
294
+ synth_ai/cli/task_apps.py,sha256=GLuERtL7CRffnA-9_o-6-91YvJnHRrUypJ8i6wnrzW0,164425
166
295
  synth_ai/cli/traces.py,sha256=tyt2OUcREK82an9hc2Uq3H-xn0vWuTf_Pirt0CWkodg,6617
167
296
  synth_ai/cli/turso.py,sha256=y9aHehGA1VvaWkoZyBhu5fLulWUT65powrpvvVp7gpA,2301
168
297
  synth_ai/cli/watch.py,sha256=Wi5H2YdV3gsEVMd5YIte2LHMweWqLkGpsK3aopdjCQE,17481
@@ -171,11 +300,11 @@ synth_ai/config/base_url.py,sha256=c85LaABBrvsl8Fp8KH0LNtJJrpnUwlzA5Ywbuth8fHE,3
171
300
  synth_ai/core/experiment.py,sha256=5ErxMLOMDHgBjWJjId-uViCyxwfx3Ns5NVrgMkPEpZk,234
172
301
  synth_ai/core/system.py,sha256=s-Z7np2ISYmYc1r9YN-y2yb3cgRlOalrh0iaqnxeo84,206
173
302
  synth_ai/demos/core/__init__.py,sha256=A2FjhY7KXGtyzdQXqeTPCkEhHfrH-eQg6bvP8HaYhZM,36
174
- synth_ai/demos/core/cli.py,sha256=Nmkw-0v66xv1HON6IQHxvfYTDMx7b6ii2t9XO4EUMqE,66212
303
+ synth_ai/demos/core/cli.py,sha256=QknHcnrMz2WYQLzVMvt6DOHRDyPjpcV3U6WMfOSRwgU,64723
175
304
  synth_ai/demos/demo_task_apps/__init__.py,sha256=fj5IgEaCWLjYx-8DpfzmUdHIEE2TlpauEDvJRgAnLy0,267
176
305
  synth_ai/demos/demo_task_apps/core.py,sha256=Pwh7Q9HV1njZWhb479nBXM9z57bXDveUV2ZapXaSuSU,15448
177
306
  synth_ai/demos/demo_task_apps/crafter/__init__.py,sha256=3SnNZTzBjGR9eudStcww259vPmzoFBHJL-M0GDUD7Qo,24
178
- synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py,sha256=9NOpkipIAzkIL1XLtv0qexwWdixjC3C3N4LG_fJKhI0,6246
307
+ synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py,sha256=vOs2Kz-dQS4GhaZ3gC0wi_kGadzGf9jZk__dKQkchCg,6851
179
308
  synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml,sha256=3voWbh5KscUtsnps5NDKTfBGiBz6-ZtXuK6uMgrcQSY,1192
180
309
  synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml,sha256=qVSypYOMUd8g6pmiovi7nsgk4jgMBjJIORpIsrmNV4U,1644
181
310
  synth_ai/demos/demo_task_apps/math/__init__.py,sha256=WBzpZwSn7pRarBmhopQi34i9bEm05-71eM3siboOavY,43
@@ -211,7 +340,7 @@ synth_ai/environments/examples/crafter_classic/debug_translation.py,sha256=47DEQ
211
340
  synth_ai/environments/examples/crafter_classic/engine.py,sha256=i13hDJe-6BXWFqXAsdjNCrfjU_HpwWLE5-4KNT-VSbs,25257
212
341
  synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py,sha256=IMmqt0S9wh0sdP42G_Q6W_2j22gKX4YQZVvuIqLzLWc,2802
213
342
  synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py,sha256=oC1y_CdnB_xit4FH72dMo8ljlZW_Mpa3cMpbDVCtqyU,11127
214
- synth_ai/environments/examples/crafter_classic/environment.py,sha256=hDRBVNDYVj1dJRFLYTYxHucDsjwF-ZXXUEQsv7UYSLg,21668
343
+ synth_ai/environments/examples/crafter_classic/environment.py,sha256=Vw70KPCR_45S7Qewlk5vcSQrskOqFofn85PxoWskTzU,22287
215
344
  synth_ai/environments/examples/crafter_classic/taskset.py,sha256=9uZpQOllUqMupIBwlz2Jv38hBYqY09czi1LOonCTk5c,9843
216
345
  synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py,sha256=lka-3tNuYsvYQ6acEvJjvBPkylbqgCzuCd2QMOjNCRs,7194
217
346
  synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py,sha256=wHT2pyOJ55Jlh9iq-UND4cd-GQdyKxQmo9ncCuQ_Jiw,10166
@@ -301,8 +430,8 @@ synth_ai/environments/examples/crafter_custom/old/compare_worlds.py,sha256=7D1GO
301
430
  synth_ai/environments/examples/crafter_custom/old/dataset_stats.py,sha256=c4Y-074cmMP98ybr_Aeme5yu-BybVMqtQmmaQF2oqvg,3584
302
431
  synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py,sha256=YoyK_rhwGd7ONIQb8iot_Tz5KFsyGwtLMt3mxkS74dY,4558
303
432
  synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py,sha256=p82QGjKiY5_wFscXybcc8prlWdHdQajJE2Ni65CSTxY,1296
304
- synth_ai/environments/examples/enron/engine.py,sha256=kmyE3See-NPxs3XKz7HV7XL9IoH4YTxFvPrAz9MYY1M,11702
305
- synth_ai/environments/examples/enron/environment.py,sha256=s3g8zAn6qS5d_shcz8pl8J903eWa0KFw04j3Wury4NE,5986
433
+ synth_ai/environments/examples/enron/engine.py,sha256=x0iuMeH4cSRaswBYB-D38MKYKr0fAgUXWWtSqXa4wq4,11895
434
+ synth_ai/environments/examples/enron/environment.py,sha256=VuY_ze87uTvQmoy5kGInS9Eywo9nWZNYkbbMnWNDwRE,8275
306
435
  synth_ai/environments/examples/enron/taskset.py,sha256=KQBQMclCh24jSCBLbxsWDn7BveT1RlnEUDErm5AW57I,3171
307
436
  synth_ai/environments/examples/enron/art_helpers/email_search_tools.py,sha256=bDiuxp8W5ZZEtM1vn1n0B0qxqBEqCwMwYDGHy93rBiQ,5545
308
437
  synth_ai/environments/examples/enron/art_helpers/local_email_db.py,sha256=h3Q44pKs5pnz_on66bIFVhL4Ma5chdKzCDST_oYSQWA,9985
@@ -336,15 +465,15 @@ synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py,sh
336
465
  synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py,sha256=70reUQd5jk2Rs7hhX_NY8K4_zVxZObGmomPDYoVF2g4,14832
337
466
  synth_ai/environments/examples/red/__init__.py,sha256=4uHc_oyMmFK9jllUs9BAY4mxMwt5_Q7sD7Meo8zuTa4,199
338
467
  synth_ai/environments/examples/red/config_logging.py,sha256=jVjehrms140gnJ1aAaXK9oxRXqh8CuU23yGp4AZOh74,3710
339
- synth_ai/environments/examples/red/engine.py,sha256=R8uVkQyd9VQe7LdIBzQjcRPRAhHsP3BW3iKwJfci73E,23836
340
- synth_ai/environments/examples/red/environment.py,sha256=lhEYlWjmSGKZFfdD4_g0oA_E8VAFc_6ppyPXnL-JEao,9364
468
+ synth_ai/environments/examples/red/engine.py,sha256=JKU2_7JlRjounkqWBbBE2imkiWmUNE3ExnbodollW-I,25345
469
+ synth_ai/environments/examples/red/environment.py,sha256=UtK9cH_lyOKJenYgiqPxuRsxFj4mi4d__SoQ_B56ilI,12810
341
470
  synth_ai/environments/examples/red/taskset.py,sha256=B7TjNjBscUDeWEXmNjJxvoNSGbwNzRqaxS0XUiOYgXg,2827
342
471
  synth_ai/environments/examples/red/agent_demos/__init__.py,sha256=sz-ozQldJ4M1Fn0Qrxct63Ru3DyRNj5v3_n9Mtk-Awk,42
343
472
  synth_ai/environments/examples/red/engine_helpers/__init__.py,sha256=YyNOk0TMWA_CI_EakcTMjbLJpkFKKRhJfVe792w-CXE,33
344
- synth_ai/environments/examples/red/engine_helpers/memory_map.py,sha256=jOsBYaYYxUy2tz3L2pCoj7Y_3UdrViw6vNYdgbEZFDk,1193
473
+ synth_ai/environments/examples/red/engine_helpers/memory_map.py,sha256=jennvH5LJ0Ku6rkij6ycLc0jppLFkLy_M-1pUT42eQA,1484
345
474
  synth_ai/environments/examples/red/engine_helpers/reward_components.py,sha256=zueBbdnERtim8LjgsGsSglowgqCx66F01NegHYqAscQ,9356
346
475
  synth_ai/environments/examples/red/engine_helpers/screen_analysis.py,sha256=Z3MieifyTux37LATCRHYlcSsK8RX1Bc5tM3mKi4WXAo,12774
347
- synth_ai/environments/examples/red/engine_helpers/state_extraction.py,sha256=klKNv5y_vURtPfFhwhNOLZ8qEGUjcfd5sCbNUB2etAU,4419
476
+ synth_ai/environments/examples/red/engine_helpers/state_extraction.py,sha256=YF2uSyzIZPu6WIY3daq6JnrDli8EtJNr10l2H8--hUQ,5443
348
477
  synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py,sha256=kVVAJLLrZqwlbcUIvxOdjaKGUUUnVV25LyCXzEfpoMk,4015
349
478
  synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py,sha256=-Wox3xUMfn_7flG3_PROl0209bVSTIgAMDqCxVR5grY,1891
350
479
  synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py,sha256=pXHjxQwRO5EFkKfFERdu0jCitC3xygPq236JkFEVcjM,10427
@@ -353,6 +482,7 @@ synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards
353
482
  synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py,sha256=Frkr6UE57dmA1WWaa9d933nK8TbbI07ucVC5bplM1ZQ,1818
354
483
  synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py,sha256=1jKMphKjG_YJa7OKsEHLT3geBBHcrCYKi45tDOaCF-4,12392
355
484
  synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py,sha256=ii6pZijxW5oDtQtPelWOoOKjNJ4NAoN9wtaDmOiyNCM,3612
485
+ synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py,sha256=iTi7bdHwp_zcfNn0SGAtkO53miVYtveWP8yg1qGA66s,15534
356
486
  synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py,sha256=8SaZP_76PIaXWs0bbmc2cwW2V0dz5XSXCzkHFB5ho9E,19890
357
487
  synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py,sha256=0WtJcdWtcjHD7Zk678KGZExZSlhd6nSmJ1JFzEYRe4o,10861
358
488
  synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py,sha256=MjocMamUzUue6EgwGl1dd9nIUqA67mm1LgNN4L27p_c,5676
@@ -363,7 +493,7 @@ synth_ai/environments/examples/sokoban/engine.py,sha256=e3jFsbrm3nr1u90aa3hXiCFo
363
493
  synth_ai/environments/examples/sokoban/environment.py,sha256=Owy7ppk8X3FJoX2rIB4QVi9JmmkhBo9PpftzjJPInuM,9802
364
494
  synth_ai/environments/examples/sokoban/generate_verified_puzzles.py,sha256=Wu1UMtUk_qk14LHHKSSkk108yuM9TFyhG1F9Dpi_Kk4,15511
365
495
  synth_ai/environments/examples/sokoban/puzzle_loader.py,sha256=3FTMk_u6G9Ex1BBFsCxHDO5nTdENlSxM6BSIafXJ0_E,11498
366
- synth_ai/environments/examples/sokoban/taskset.py,sha256=suFDtkh20_Fq-A-Oc3CtaLXhsOa2WQVZNPWafrdhikY,15506
496
+ synth_ai/environments/examples/sokoban/taskset.py,sha256=bgKRP8FcJ2Hzp4Uw6E51Au1BN1qiyjh-BIQn9aoq4vo,20048
367
497
  synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py,sha256=q9S0ASGMt5II1yIuDzSkernn1Q1srErHF9QGT6Wm8yg,39845
368
498
  synth_ai/environments/examples/sokoban/engine_helpers/__init__.py,sha256=ensyOUm01rMpYZPIoV012_v6vxnv95mwwi63hLJvwIw,29
369
499
  synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py,sha256=1qs8UmlqD-VKPXNvncqMG0X3ICF_LXif4BP5tUkJ-34,21758
@@ -382,7 +512,7 @@ synth_ai/environments/examples/tictactoe/engine.py,sha256=B2OYQ3TVi_c75BRy_zHIEW
382
512
  synth_ai/environments/examples/tictactoe/environment.py,sha256=p_ZN5-AyYKUnIJ5Df46fXMlJZ6yRerkvXC9GA1W0Ht8,9336
383
513
  synth_ai/environments/examples/tictactoe/taskset.py,sha256=q601JiFJXqJu9gjsvEXgYA8TkQ-u0pLZgzxHN7A4hBw,7812
384
514
  synth_ai/environments/examples/verilog/__init__.py,sha256=JBf4ayWGO-VPK7PLitp_-jiKDi9gd3hhQ-PahNkiLJ0,262
385
- synth_ai/environments/examples/verilog/engine.py,sha256=Vl-msE1hrtx1zSwy0p6Xq0nCgCo-AUHy2zkcJA715LA,12171
515
+ synth_ai/environments/examples/verilog/engine.py,sha256=uAJRo92qbJ0rV58AB-ygkT0UBb-2OIIi1_cWvxB5SJg,13190
386
516
  synth_ai/environments/examples/verilog/environment.py,sha256=UfdV8097c_oCtqoaL9TP7-J2nsYCz3tFQRdFoUW0pKA,12330
387
517
  synth_ai/environments/examples/verilog/taskset.py,sha256=sJzLVjq3d4_gbmzKQPLJlFYBXIHonf8ybpB7HdZYdLo,13338
388
518
  synth_ai/environments/examples/wordle/__init__.py,sha256=JksC4yMuWfnoO1nXS-bIrxRGPBL3AU93Kw4R1FYGj7E,804
@@ -407,10 +537,13 @@ synth_ai/environments/tasks/filters.py,sha256=CJDXMUF4HDVQgdR3tIqHddUuvGmwwQG27O
407
537
  synth_ai/environments/tasks/utils.py,sha256=2UfWqN5WE7blfpdd8GcPuT56sDAPXzlF0pGUyGO_M1g,2576
408
538
  synth_ai/environments/v0_observability/history.py,sha256=gW0SozHmxeL6PFNaTAQ7em8BNUlObsRpP4_MJ3drMBE,54
409
539
  synth_ai/environments/v0_observability/log.py,sha256=B4LvbPh0a1_E5dki2PlKAVHESB8oCQz0CmDBvC0GwdQ,38
540
+ synth_ai/evals/__init__.py,sha256=NBInP4HqnLUtI7USUwOqnar2c7JT4g8ngvm612CMuqA,306
410
541
  synth_ai/evals/base.py,sha256=Pu_h3oJAAEqJxgj5eigqbVhrNjAGJnBtlxpacSbGXCI,353
542
+ synth_ai/evals/client.py,sha256=def_W2hSLPkvNo1V87vx8TQVDYPFzUyncU7MFm4cZ-I,3009
543
+ synth_ai/evals/types.py,sha256=vpg2u4vLi7EqXJYgMM44TPXKKQKDxkcK3_KzYeHU6l0,930
411
544
  synth_ai/inference/__init__.py,sha256=5xwgFMKRfbLC7TX3lwMqGOZ8HHOEnXwlDqV_FLjsd5A,74
412
545
  synth_ai/inference/client.py,sha256=FA1h4rcMu7M0qCCCJ4yQTqC9dM1weVhDWylry8znnCc,1262
413
- synth_ai/jobs/client.py,sha256=_NtmBlm7LLZX22W6arfaa0DAq-0vsV-h_Ep2yHAiwnE,10125
546
+ synth_ai/jobs/client.py,sha256=9I7LA-zmfHvidnSrw4NkU9owor_9vgSb5UICXYZUCtk,10440
414
547
  synth_ai/learning/__init__.py,sha256=Vk-5n8qAmGnNAIH-4LSU3vMD9CuX8_4ZFqwUJC9GDp4,1584
415
548
  synth_ai/learning/algorithms.py,sha256=N2sXJ-U5QfvmSCtB2KUkTMyg46_pibYXHdIrYSKGyxA,342
416
549
  synth_ai/learning/client.py,sha256=DdjCZZLch4SG9as019XZoq12OVC9ZSKJQk6D5WCjfIw,9526
@@ -435,32 +568,38 @@ synth_ai/learning/sft/client.py,sha256=9KxDcnwQl5FKZgXOUsEvsihFJUg2CHJA6sc791cyp
435
568
  synth_ai/learning/sft/config.py,sha256=pdUvwmhYMSIrFTD7-a9MglPwHevP4OSed9TuOzdjkOc,9791
436
569
  synth_ai/learning/sft/data.py,sha256=gM9ObMO7L3woKUVL2p-Pz6iTikS1Yr40vce5zRy2H84,9454
437
570
  synth_ai/lm/__init__.py,sha256=uXZFG6zFox_oV6FM7cJQxmnCNUBBa50ZuhdXCNxx0Lo,875
438
- synth_ai/task/__init__.py,sha256=FyzWbFjQCXga_ZT1oWVLt2N58dHsLcM5sMu7kjoTpW0,2409
571
+ synth_ai/task/__init__.py,sha256=LWH7VCs_FX5AE4USROevR80ijqQF_rXDFmPFsC2IbmQ,2599
439
572
  synth_ai/task/auth.py,sha256=IUD3DcU-43qczWV9sSccXsjDOkZe8sJHmcQtues1YWQ,5652
440
573
  synth_ai/task/client.py,sha256=ccbcYRaZZ5MBMcfFdA8x2t7PjXEdvKuFmwRxrRl_8vk,5741
441
- synth_ai/task/contracts.py,sha256=9iupoX_ubBgdGrla7jaH6G52R8CN6ZBJEamvyOyc8Ik,4142
574
+ synth_ai/task/contracts.py,sha256=HqZSYeD0dTTLKi0Oj_rcnagxMXW_zdoKxTv-2keMpvc,6746
442
575
  synth_ai/task/datasets.py,sha256=5wqvTaDm-A4F6shPMXy5NMZim2_OGbMCSQBuuktn2qI,3968
443
576
  synth_ai/task/errors.py,sha256=BOdWz0fgJVprx2-mGRJTnTilAGHmc4WRpUVFA7eLrlc,1524
444
577
  synth_ai/task/health.py,sha256=wfNNLYlWLmwoPpHA8ahDdqb0YAZ8JTyHzs8bdIX-pOI,1139
445
578
  synth_ai/task/json.py,sha256=SB9XdHFloJha9WeClq4mvaL8B21-fRl9kb1d1JlNfIc,3612
446
- synth_ai/task/proxy.py,sha256=bUKPqc8IS94ToHzo7xZe2wzIODv3XW6dUIus3_OEpgE,9029
447
- synth_ai/task/rubrics.py,sha256=_qqAvl1NFGW6nJlzmI3UwjxuvWbOQeLcMwrZpmpMQGk,7180
448
- synth_ai/task/server.py,sha256=lgDnFSxjMGdEWspibtoEeYAeQ3di1c3Bfvp7w7egdmU,16028
579
+ synth_ai/task/proxy.py,sha256=6klwBH2PKUKxqmUc-I2hS9PQoL3mZTW3BP925rW7c4s,8921
580
+ synth_ai/task/server.py,sha256=2NwqAkQuWzs89wQtlEsOBg6rnBRWE1z6UIKeN0PtG08,16101
449
581
  synth_ai/task/tracing_utils.py,sha256=wk6Gl8JApZePLm_EBQc3EHNEvOdjQSa5mPa02IWQy5E,2505
450
- synth_ai/task/validators.py,sha256=OGPwdzoyoS8lMgq3nmzdUDEFwCDo2OC7ETQLWiE5Yao,360
582
+ synth_ai/task/validators.py,sha256=Rknj1l5KztN2FW6qHM_egz3TcudoKXaHCiDXl4Zv6Dc,11266
451
583
  synth_ai/task/vendors.py,sha256=a5t_1HGwPnPUoPMbzNB87jOTCyA4S7W7eIgJ-E4Gfew,1626
452
584
  synth_ai/task/apps/__init__.py,sha256=pYug8RalL9laX3LwPg3VtP8M31QwtuFsYWWGF9mSX2I,4062
585
+ synth_ai/task/rubrics/__init__.py,sha256=GyJo9x-BmO6B8Cc-wYd6H5va_HswvsBq4fr0WFpCEMA,1365
586
+ synth_ai/task/rubrics/loaders.py,sha256=wgAk7hP_OP-hNc315lDreiEdpe8kUmhIdxDS0_-eVYI,4370
587
+ synth_ai/task/rubrics/models.py,sha256=wCwv8DzVOZ724yoGi-fduFWAEglR1tg2H3ct_4SdVks,1703
588
+ synth_ai/task/rubrics/scoring.py,sha256=UTjFNhvl9jGo4F7hEmGBkbu3gqVGP8fQS-GaZ9mwqPM,3749
589
+ synth_ai/task/rubrics/strict.py,sha256=kKj9nIeuNMjptxrFoJd-J0sdEQtZ2Q1pIH5NyRJlAl8,4346
453
590
  synth_ai/tracing_v3/__init__.py,sha256=DRhOO-AFtCYSrQ_S-2gLTDCBZUVwy-NKgdAr9uh2K2A,3307
454
591
  synth_ai/tracing_v3/abstractions.py,sha256=uja-8UMh-RWfpVBjsZwNw1UhNMpgsy4Zmd_pEq_qXjI,12865
455
592
  synth_ai/tracing_v3/config.py,sha256=mPX2P4ILv1ktoI8oGKO_LyLc0O6Lnr2jbHA3QE-y6N0,3241
456
593
  synth_ai/tracing_v3/db_config.py,sha256=t9yalucYHdna7kcIQB3aEM9MDThl2hvwbbJhqL_iIQs,6773
457
- synth_ai/tracing_v3/decorators.py,sha256=SPWBR2_FMFnlSQCDpIK8IF6h-27DMkqLEe-w8fnMQyw,14748
594
+ synth_ai/tracing_v3/decorators.py,sha256=81qDr0DR5I3W943l67oItlN_P7vGbrYFketwCMxDC6s,14746
458
595
  synth_ai/tracing_v3/hooks.py,sha256=QUfVvE6H2HIkP-dED1ctBpxzJXpaM_7UU-XaU6043W4,7997
459
596
  synth_ai/tracing_v3/llm_call_record_helpers.py,sha256=zZ0i6SB7l6WYud9mRLBTyZ4BJCgMmSDyhAZOg81T3k4,13633
460
597
  synth_ai/tracing_v3/lm_call_record_abstractions.py,sha256=j2RGuXVaV_EXmIosuXRDjptJSlrDXwb8x06k2fF6lqo,9195
461
598
  synth_ai/tracing_v3/migration_helper.py,sha256=izm7SNHtG3VDv_5ZmMk_mmwKitmShxUK3joNFOArZIY,4177
462
- synth_ai/tracing_v3/replica_sync.py,sha256=H3ReiULH3McnGxdrH9BWkSeIOFfUQ6enHk5SWeuRV6k,8843
599
+ synth_ai/tracing_v3/replica_sync.py,sha256=9gbGyItvW5zhcQ8eexmW14S1uljVRIcpeQ1d1h7GLgo,8907
600
+ synth_ai/tracing_v3/serialization.py,sha256=YqXbPTA1ZF5jNVwQJGIbi7Uk1VVd7FZuCN5KkjJHiEM,4124
463
601
  synth_ai/tracing_v3/session_tracer.py,sha256=z9-gt7SK68X_q0aOHwWOtGOaGClpoWkUkAxAOwTKpI8,18996
602
+ synth_ai/tracing_v3/trace_utils.py,sha256=aoZQqocuAAolo_bxQ-GdYjnYtfwUzo8VE7BXMcusohY,9437
464
603
  synth_ai/tracing_v3/utils.py,sha256=t-ZEyP03j8k7jNxtLsOSvzQnq8SXBaRPdK7jCgPdVdI,3450
465
604
  synth_ai/tracing_v3/examples/basic_usage.py,sha256=gSIWxeCYNe5WL38FjCaOCv0RvmxZ8SDiPWhA1-8XAeg,7342
466
605
  synth_ai/tracing_v3/storage/__init__.py,sha256=VPjBh180bcSPz1HsbqaqfnvguwqwomaEYKxkrhfGABY,332
@@ -473,7 +612,7 @@ synth_ai/tracing_v3/storage/utils.py,sha256=yDjy6Uoz9PXYk-bGWVxG31MfGN3ncvea0R59
473
612
  synth_ai/tracing_v3/turso/__init__.py,sha256=hcwysYjh1_ckqrn2DW4QSc2l0jdfN-INrfWciOsTqdI,286
474
613
  synth_ai/tracing_v3/turso/daemon.py,sha256=X4SF-ih3ETtJFxTXMxeEektQvRkI2Hz3wyMrjEFQKSA,4426
475
614
  synth_ai/tracing_v3/turso/models.py,sha256=BZg4bo-V9enr8R5pJ9mOTsfb6QdrULjj_jgMgnwzeqM,16362
476
- synth_ai/tracing_v3/turso/native_manager.py,sha256=LFSghD9oD693U9mkidUgwWZvep-fZWB7R7IlQBBa35k,42091
615
+ synth_ai/tracing_v3/turso/native_manager.py,sha256=xbKETeZs_xAZY3pZ-JXsed8NNU2yY8tmT7jEcxyzZak,42089
477
616
  synth_ai/v0/api/__init__.py,sha256=wgz7K2rwVmxTRx0vy5abWclC2NTVjsM1buYQxXCnF3k,197
478
617
  synth_ai/v0/api/models/__init__.py,sha256=-VNJS0rSmrWaXnb2RkaBoDXc_9roO7ZgWVBe1vGKz-8,167
479
618
  synth_ai/v0/api/models/supported.py,sha256=aQCUi9xPn1Nt5Xd7yN42RyZVppsYaUdCADFoew_NhoE,246
@@ -576,9 +715,9 @@ synth_ai/v0/tracing_v3/abstractions.py,sha256=7IHKkzicFEJ4UXJbodK11Pi8YYq7Vt8Ev_
576
715
  synth_ai/v0/tracing_v3/decorators.py,sha256=fRyVBKEbxAPZoDsBH7t8OVLVixvgD_Lw_1ONF1TuZxU,108
577
716
  synth_ai/v0/tracing_v3/llm_call_record_helpers.py,sha256=JYSpGtW-RC-DnhUIPdVADNF3rK5x8Tl8DOymbmRI99I,121
578
717
  synth_ai/v0/tracing_v3/session_tracer.py,sha256=TSUzb_fUUlpwOqFE1X-Fs14nG2CNe7MZLKOvH7cV2kE,112
579
- synth_ai-0.2.12.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
580
- synth_ai-0.2.12.dist-info/METADATA,sha256=SOcZAekWv6vMdvP5lLzyVitE1zRdUZHGCN-YEZnsiP4,5424
581
- synth_ai-0.2.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
582
- synth_ai-0.2.12.dist-info/entry_points.txt,sha256=Neq-3bT7TAijjgOIR77pKL-WYg6TWBDeO8pp_nL4vGY,91
583
- synth_ai-0.2.12.dist-info/top_level.txt,sha256=1moNHgctEUJ3F3eH3V-7FSMb2iTTze1V13dj1R04oUY,18
584
- synth_ai-0.2.12.dist-info/RECORD,,
718
+ synth_ai-0.2.13.dev2.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
719
+ synth_ai-0.2.13.dev2.dist-info/METADATA,sha256=7X7HCtmYwFz7pL7T4K2ynyEi2GecA5XByoh2dfvqlOY,5520
720
+ synth_ai-0.2.13.dev2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
721
+ synth_ai-0.2.13.dev2.dist-info/entry_points.txt,sha256=GSFXaJreq4PJXbixkUI0GHZwGh2dZDG5pYaoVmqr_KE,46
722
+ synth_ai-0.2.13.dev2.dist-info/top_level.txt,sha256=1moNHgctEUJ3F3eH3V-7FSMb2iTTze1V13dj1R04oUY,18
723
+ synth_ai-0.2.13.dev2.dist-info/RECORD,,
@@ -1,3 +1,2 @@
1
1
  [console_scripts]
2
2
  synth-ai = synth_ai.cli:cli
3
- synth-ai-demo = synth_ai.demos.core.cli:main