synth-ai 0.2.14__py3-none-any.whl → 0.4.1__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 (1091) hide show
  1. synth_ai/__init__.py +19 -40
  2. synth_ai/__main__.py +30 -3
  3. synth_ai/cli/__init__.py +105 -70
  4. synth_ai/cli/__main__.py +42 -0
  5. synth_ai/cli/_internal/__init__.py +5 -0
  6. synth_ai/cli/_internal/modal_wrapper.py +31 -0
  7. synth_ai/cli/_internal/storage.py +20 -0
  8. synth_ai/cli/_internal/typer_patch.py +47 -0
  9. synth_ai/cli/_internal/validate_task_app.py +29 -0
  10. synth_ai/cli/agents/__init__.py +17 -0
  11. synth_ai/cli/agents/claude.py +77 -0
  12. synth_ai/cli/agents/codex.py +265 -0
  13. synth_ai/cli/agents/opencode.py +253 -0
  14. synth_ai/cli/commands/__init__.py +18 -0
  15. synth_ai/cli/commands/artifacts/__init__.py +13 -0
  16. synth_ai/cli/commands/artifacts/client.py +119 -0
  17. synth_ai/cli/commands/artifacts/config.py +57 -0
  18. synth_ai/cli/commands/artifacts/core.py +24 -0
  19. synth_ai/cli/commands/artifacts/download.py +188 -0
  20. synth_ai/cli/commands/artifacts/export.py +186 -0
  21. synth_ai/cli/commands/artifacts/list.py +156 -0
  22. synth_ai/cli/commands/artifacts/parsing.py +250 -0
  23. synth_ai/cli/commands/artifacts/show.py +336 -0
  24. synth_ai/cli/commands/baseline/__init__.py +12 -0
  25. synth_ai/cli/commands/baseline/core.py +636 -0
  26. synth_ai/cli/commands/baseline/list.py +94 -0
  27. synth_ai/cli/commands/demo/__init__.py +3 -0
  28. synth_ai/cli/commands/demo/core.py +153 -0
  29. synth_ai/cli/commands/eval/__init__.py +19 -0
  30. synth_ai/cli/commands/eval/core.py +1113 -0
  31. synth_ai/cli/commands/eval/errors.py +81 -0
  32. synth_ai/cli/commands/eval/validation.py +133 -0
  33. synth_ai/cli/commands/filter/__init__.py +12 -0
  34. synth_ai/cli/commands/filter/core.py +424 -0
  35. synth_ai/cli/commands/filter/errors.py +55 -0
  36. synth_ai/cli/commands/filter/validation.py +77 -0
  37. synth_ai/cli/commands/help/__init__.py +185 -0
  38. synth_ai/cli/commands/help/core.py +72 -0
  39. synth_ai/cli/commands/scan/__init__.py +19 -0
  40. synth_ai/cli/commands/scan/cloudflare_scanner.py +403 -0
  41. synth_ai/cli/commands/scan/core.py +344 -0
  42. synth_ai/cli/commands/scan/health_checker.py +242 -0
  43. synth_ai/cli/commands/scan/local_scanner.py +278 -0
  44. synth_ai/cli/commands/scan/models.py +83 -0
  45. synth_ai/cli/commands/smoke/__init__.py +7 -0
  46. synth_ai/cli/commands/smoke/core.py +1438 -0
  47. synth_ai/cli/commands/status/__init__.py +66 -0
  48. synth_ai/cli/commands/status/client.py +192 -0
  49. synth_ai/cli/commands/status/config.py +92 -0
  50. synth_ai/cli/commands/status/errors.py +20 -0
  51. synth_ai/cli/commands/status/formatters.py +164 -0
  52. synth_ai/cli/commands/status/subcommands/__init__.py +9 -0
  53. synth_ai/cli/commands/status/subcommands/files.py +79 -0
  54. synth_ai/cli/commands/status/subcommands/jobs.py +334 -0
  55. synth_ai/cli/commands/status/subcommands/models.py +79 -0
  56. synth_ai/cli/commands/status/subcommands/pricing.py +23 -0
  57. synth_ai/cli/commands/status/subcommands/runs.py +81 -0
  58. synth_ai/cli/commands/status/subcommands/session.py +182 -0
  59. synth_ai/cli/commands/status/subcommands/summary.py +47 -0
  60. synth_ai/cli/commands/status/subcommands/usage.py +203 -0
  61. synth_ai/cli/commands/status/utils.py +114 -0
  62. synth_ai/cli/commands/train/__init__.py +53 -0
  63. synth_ai/cli/commands/train/core.py +22 -0
  64. synth_ai/cli/commands/train/errors.py +117 -0
  65. synth_ai/cli/commands/train/judge_schemas.py +201 -0
  66. synth_ai/cli/commands/train/judge_validation.py +305 -0
  67. synth_ai/cli/commands/train/prompt_learning_validation.py +633 -0
  68. synth_ai/cli/commands/train/validation.py +392 -0
  69. synth_ai/cli/demo_apps/__init__.py +10 -0
  70. synth_ai/cli/demo_apps/core/__init__.py +28 -0
  71. synth_ai/cli/demo_apps/core/cli.py +1735 -0
  72. synth_ai/cli/demo_apps/crafter/crafter_fft_4b.toml +55 -0
  73. synth_ai/cli/demo_apps/crafter/grpo_crafter_task_app.py +186 -0
  74. synth_ai/cli/demo_apps/crafter/rl_from_base_qwen4b.toml +74 -0
  75. synth_ai/cli/demo_apps/demo_registry.py +176 -0
  76. synth_ai/cli/demo_apps/demo_task_apps/core.py +440 -0
  77. synth_ai/cli/demo_apps/demo_task_apps/crafter/__init__.py +1 -0
  78. synth_ai/cli/demo_apps/demo_task_apps/crafter/grpo_crafter_task_app.py +185 -0
  79. synth_ai/cli/demo_apps/demo_task_apps/math/modal_task_app.py +742 -0
  80. synth_ai/cli/demo_apps/demo_task_apps/math/task_app_entry.py +39 -0
  81. synth_ai/cli/demo_apps/math/__init__.py +1 -0
  82. synth_ai/cli/demo_apps/math/_common.py +16 -0
  83. synth_ai/cli/demo_apps/math/app.py +38 -0
  84. synth_ai/cli/demo_apps/math/config.toml +76 -0
  85. synth_ai/cli/demo_apps/math/deploy_modal.py +54 -0
  86. synth_ai/cli/demo_apps/math/modal_task_app.py +702 -0
  87. synth_ai/cli/demo_apps/math/task_app_entry.py +53 -0
  88. synth_ai/cli/demo_apps/mipro/main.py +271 -0
  89. synth_ai/cli/demo_apps/mipro/task_app.py +933 -0
  90. synth_ai/cli/demo_apps/mipro/train_cfg.toml +92 -0
  91. synth_ai/cli/demos/__init__.py +12 -0
  92. synth_ai/cli/demos/demo.py +32 -0
  93. synth_ai/cli/demos/rl_demo.py +254 -0
  94. synth_ai/cli/deploy.py +216 -0
  95. synth_ai/cli/infra/__init__.py +14 -0
  96. synth_ai/cli/infra/balance.py +216 -0
  97. synth_ai/cli/infra/mcp.py +35 -0
  98. synth_ai/cli/infra/modal_app.py +36 -0
  99. synth_ai/cli/infra/setup.py +69 -0
  100. synth_ai/cli/infra/status.py +16 -0
  101. synth_ai/cli/infra/turso.py +77 -0
  102. synth_ai/cli/lib/__init__.py +10 -0
  103. synth_ai/cli/lib/agents.py +76 -0
  104. synth_ai/cli/lib/apps/modal_app.py +101 -0
  105. synth_ai/cli/lib/apps/task_app.py +643 -0
  106. synth_ai/cli/lib/bin.py +39 -0
  107. synth_ai/cli/lib/env.py +375 -0
  108. synth_ai/cli/lib/errors.py +85 -0
  109. synth_ai/cli/lib/modal.py +315 -0
  110. synth_ai/cli/lib/plotting.py +126 -0
  111. synth_ai/cli/lib/prompt_args.py +39 -0
  112. synth_ai/cli/lib/prompts.py +284 -0
  113. synth_ai/cli/lib/sqld.py +122 -0
  114. synth_ai/cli/lib/task_app_discovery.py +884 -0
  115. synth_ai/cli/lib/task_app_env.py +295 -0
  116. synth_ai/cli/lib/train_cfgs.py +300 -0
  117. synth_ai/cli/lib/tunnel_records.py +207 -0
  118. synth_ai/cli/local/__init__.py +14 -0
  119. synth_ai/cli/local/experiment_queue/__init__.py +72 -0
  120. synth_ai/cli/local/experiment_queue/api_schemas.py +221 -0
  121. synth_ai/cli/local/experiment_queue/celery_app.py +208 -0
  122. synth_ai/cli/local/experiment_queue/config.py +128 -0
  123. synth_ai/cli/local/experiment_queue/config_utils.py +272 -0
  124. synth_ai/cli/local/experiment_queue/database.py +175 -0
  125. synth_ai/cli/local/experiment_queue/dispatcher.py +119 -0
  126. synth_ai/cli/local/experiment_queue/models.py +231 -0
  127. synth_ai/cli/local/experiment_queue/progress_info.py +160 -0
  128. synth_ai/cli/local/experiment_queue/results.py +373 -0
  129. synth_ai/cli/local/experiment_queue/schemas.py +131 -0
  130. synth_ai/cli/local/experiment_queue/service.py +344 -0
  131. synth_ai/cli/local/experiment_queue/status.py +372 -0
  132. synth_ai/cli/local/experiment_queue/status_tracker.py +360 -0
  133. synth_ai/cli/local/experiment_queue/tasks.py +1984 -0
  134. synth_ai/cli/local/experiment_queue/trace_storage.py +65 -0
  135. synth_ai/cli/local/experiment_queue/validation.py +157 -0
  136. synth_ai/cli/local/session/__init__.py +92 -0
  137. synth_ai/cli/local/session/client.py +383 -0
  138. synth_ai/cli/local/session/constants.py +63 -0
  139. synth_ai/cli/local/session/exceptions.py +105 -0
  140. synth_ai/cli/local/session/manager.py +139 -0
  141. synth_ai/cli/local/session/models.py +89 -0
  142. synth_ai/cli/local/session/query.py +110 -0
  143. synth_ai/cli/root.py +30 -6
  144. synth_ai/cli/task_apps/__init__.py +26 -0
  145. synth_ai/cli/task_apps/commands.py +3153 -0
  146. synth_ai/cli/task_apps/deploy.py +7 -0
  147. synth_ai/cli/task_apps/list.py +26 -0
  148. synth_ai/cli/task_apps/main.py +36 -0
  149. synth_ai/cli/task_apps/modal_serve.py +11 -0
  150. synth_ai/cli/task_apps/serve.py +11 -0
  151. synth_ai/cli/training/__init__.py +8 -0
  152. synth_ai/cli/training/train.py +5 -0
  153. synth_ai/cli/training/train_cfg.py +34 -0
  154. synth_ai/cli/training/watch.py +506 -0
  155. synth_ai/cli/turso.py +34 -55
  156. synth_ai/cli/usage.py +159 -0
  157. synth_ai/cli/utils/__init__.py +8 -0
  158. synth_ai/cli/utils/experiments.py +235 -0
  159. synth_ai/cli/utils/queue.py +504 -0
  160. synth_ai/cli/utils/recent.py +133 -0
  161. synth_ai/cli/utils/traces.py +164 -0
  162. synth_ai/contracts/__init__.py +67 -0
  163. synth_ai/core/__init__.py +100 -0
  164. synth_ai/core/_utils/__init__.py +54 -0
  165. synth_ai/core/_utils/base_url.py +10 -0
  166. synth_ai/core/_utils/http.py +10 -0
  167. synth_ai/core/_utils/prompts.py +14 -0
  168. synth_ai/core/_utils/task_app_state.py +12 -0
  169. synth_ai/core/_utils/user_config.py +10 -0
  170. synth_ai/core/apps/common.py +116 -0
  171. synth_ai/core/auth.py +95 -0
  172. synth_ai/core/cfgs.py +240 -0
  173. synth_ai/core/config/__init__.py +16 -0
  174. synth_ai/core/config/base.py +168 -0
  175. synth_ai/core/config/resolver.py +89 -0
  176. synth_ai/core/env.py +220 -0
  177. synth_ai/core/errors.py +126 -0
  178. synth_ai/core/http.py +230 -0
  179. synth_ai/core/integrations/__init__.py +11 -0
  180. synth_ai/core/integrations/cloudflare.py +1710 -0
  181. synth_ai/core/integrations/mcp/__init__.py +6 -0
  182. synth_ai/core/integrations/mcp/__main__.py +8 -0
  183. synth_ai/core/integrations/mcp/claude.py +36 -0
  184. synth_ai/core/integrations/mcp/main.py +254 -0
  185. synth_ai/core/integrations/mcp/setup.py +100 -0
  186. synth_ai/core/integrations/modal.py +277 -0
  187. synth_ai/core/json.py +72 -0
  188. synth_ai/core/log_filter.py +99 -0
  189. synth_ai/core/logging.py +82 -0
  190. synth_ai/core/paths.py +107 -0
  191. synth_ai/core/pricing.py +109 -0
  192. synth_ai/core/process.py +233 -0
  193. synth_ai/core/ssl.py +25 -0
  194. synth_ai/core/storage/__init__.py +71 -0
  195. synth_ai/core/task_app_state.py +318 -0
  196. synth_ai/core/telemetry.py +282 -0
  197. synth_ai/core/tracing_v3/__init__.py +99 -0
  198. synth_ai/core/tracing_v3/abstractions.py +302 -0
  199. synth_ai/core/tracing_v3/config.py +229 -0
  200. synth_ai/core/tracing_v3/constants.py +21 -0
  201. synth_ai/core/tracing_v3/db_config.py +182 -0
  202. synth_ai/core/tracing_v3/decorators.py +401 -0
  203. synth_ai/core/tracing_v3/llm_call_record_helpers.py +437 -0
  204. synth_ai/core/tracing_v3/migration_helper.py +119 -0
  205. synth_ai/core/tracing_v3/session_tracer.py +542 -0
  206. synth_ai/core/tracing_v3/storage/base.py +211 -0
  207. synth_ai/core/tracing_v3/storage/config.py +109 -0
  208. synth_ai/core/tracing_v3/storage/factory.py +39 -0
  209. synth_ai/core/tracing_v3/trace_utils.py +326 -0
  210. synth_ai/core/tracing_v3/turso/daemon.py +278 -0
  211. synth_ai/core/tracing_v3/turso/models.py +470 -0
  212. synth_ai/core/tracing_v3/turso/native_manager.py +1385 -0
  213. synth_ai/core/tracing_v3/utils.py +108 -0
  214. synth_ai/core/urls.py +18 -0
  215. synth_ai/core/user_config.py +137 -0
  216. synth_ai/core/uvicorn.py +222 -0
  217. synth_ai/data/__init__.py +110 -0
  218. synth_ai/data/enums.py +141 -0
  219. synth_ai/data/rewards.py +152 -0
  220. synth_ai/data/specs.py +36 -0
  221. synth_ai/data/traces.py +35 -0
  222. synth_ai/products/__init__.py +6 -0
  223. synth_ai/products/graph_evolve/__init__.py +46 -0
  224. synth_ai/products/graph_evolve/client.py +226 -0
  225. synth_ai/products/graph_evolve/config.py +591 -0
  226. synth_ai/products/graph_evolve/converters/__init__.py +42 -0
  227. synth_ai/products/graph_evolve/converters/openai_sft.py +484 -0
  228. synth_ai/products/graph_evolve/examples/hotpotqa/config.toml +109 -0
  229. synth_ai/products/graph_evolve/run.py +222 -0
  230. synth_ai/sdk/__init__.py +119 -0
  231. synth_ai/sdk/api/__init__.py +1 -0
  232. synth_ai/sdk/api/models/supported.py +514 -0
  233. synth_ai/sdk/api/research_agent/__init__.py +86 -0
  234. synth_ai/sdk/api/research_agent/cli.py +428 -0
  235. synth_ai/sdk/api/research_agent/config.py +357 -0
  236. synth_ai/sdk/api/research_agent/job.py +717 -0
  237. synth_ai/sdk/api/train/__init__.py +85 -0
  238. synth_ai/sdk/api/train/builders.py +895 -0
  239. synth_ai/sdk/api/train/cli.py +2188 -0
  240. synth_ai/sdk/api/train/config_finder.py +267 -0
  241. synth_ai/sdk/api/train/configs/__init__.py +65 -0
  242. synth_ai/sdk/api/train/configs/prompt_learning.py +1706 -0
  243. synth_ai/sdk/api/train/configs/rl.py +188 -0
  244. synth_ai/sdk/api/train/configs/sft.py +99 -0
  245. synth_ai/sdk/api/train/configs/shared.py +81 -0
  246. synth_ai/sdk/api/train/context_learning.py +312 -0
  247. synth_ai/sdk/api/train/env_resolver.py +418 -0
  248. synth_ai/sdk/api/train/graph_validators.py +216 -0
  249. synth_ai/sdk/api/train/graphgen.py +984 -0
  250. synth_ai/sdk/api/train/graphgen_models.py +823 -0
  251. synth_ai/sdk/api/train/graphgen_validators.py +109 -0
  252. synth_ai/sdk/api/train/pollers.py +124 -0
  253. synth_ai/sdk/api/train/progress/__init__.py +97 -0
  254. synth_ai/sdk/api/train/progress/dataclasses.py +569 -0
  255. synth_ai/sdk/api/train/progress/events.py +326 -0
  256. synth_ai/sdk/api/train/progress/results.py +428 -0
  257. synth_ai/sdk/api/train/progress/tracker.py +641 -0
  258. synth_ai/sdk/api/train/prompt_learning.py +470 -0
  259. synth_ai/sdk/api/train/rl.py +442 -0
  260. synth_ai/sdk/api/train/sft.py +396 -0
  261. synth_ai/sdk/api/train/summary.py +522 -0
  262. synth_ai/sdk/api/train/supported_algos.py +147 -0
  263. synth_ai/sdk/api/train/task_app.py +331 -0
  264. synth_ai/sdk/api/train/utils.py +279 -0
  265. synth_ai/sdk/api/train/validators.py +2424 -0
  266. synth_ai/sdk/baseline/__init__.py +25 -0
  267. synth_ai/sdk/baseline/config.py +209 -0
  268. synth_ai/sdk/baseline/discovery.py +216 -0
  269. synth_ai/sdk/baseline/execution.py +154 -0
  270. synth_ai/sdk/graphs/__init__.py +15 -0
  271. synth_ai/sdk/graphs/completions.py +570 -0
  272. synth_ai/sdk/inference/__init__.py +6 -0
  273. synth_ai/sdk/inference/client.py +128 -0
  274. synth_ai/sdk/jobs/__init__.py +16 -0
  275. synth_ai/sdk/jobs/client.py +371 -0
  276. synth_ai/sdk/judging/__init__.py +15 -0
  277. synth_ai/sdk/judging/base.py +24 -0
  278. synth_ai/sdk/judging/client.py +191 -0
  279. synth_ai/sdk/judging/schemas.py +222 -0
  280. synth_ai/sdk/learning/__init__.py +69 -0
  281. synth_ai/sdk/learning/client.py +240 -0
  282. synth_ai/sdk/learning/ft_client.py +7 -0
  283. synth_ai/sdk/learning/health.py +49 -0
  284. synth_ai/sdk/learning/jobs.py +202 -0
  285. synth_ai/sdk/learning/prompt_extraction.py +334 -0
  286. synth_ai/sdk/learning/prompt_learning_client.py +455 -0
  287. synth_ai/sdk/learning/prompt_learning_types.py +185 -0
  288. synth_ai/sdk/learning/rl/client.py +268 -0
  289. synth_ai/sdk/learning/rl/contracts.py +27 -0
  290. synth_ai/sdk/learning/rl/env_keys.py +166 -0
  291. synth_ai/sdk/learning/rl/secrets.py +13 -0
  292. synth_ai/sdk/learning/sft/client.py +95 -0
  293. synth_ai/sdk/learning/sft/config.py +270 -0
  294. synth_ai/sdk/learning/sft/data.py +698 -0
  295. synth_ai/sdk/learning/validators.py +52 -0
  296. synth_ai/sdk/research_agent/__init__.py +34 -0
  297. synth_ai/sdk/research_agent/container_builder.py +328 -0
  298. synth_ai/sdk/research_agent/container_spec.py +198 -0
  299. synth_ai/sdk/research_agent/defaults.py +34 -0
  300. synth_ai/sdk/research_agent/results_collector.py +69 -0
  301. synth_ai/sdk/specs/__init__.py +46 -0
  302. synth_ai/sdk/specs/dataclasses.py +149 -0
  303. synth_ai/sdk/specs/loader.py +144 -0
  304. synth_ai/sdk/specs/serializer.py +199 -0
  305. synth_ai/sdk/specs/validation.py +250 -0
  306. synth_ai/sdk/streaming/__init__.py +35 -0
  307. synth_ai/sdk/streaming/config.py +94 -0
  308. synth_ai/sdk/streaming/handlers.py +1997 -0
  309. synth_ai/sdk/streaming/streamer.py +704 -0
  310. synth_ai/sdk/streaming/types.py +112 -0
  311. synth_ai/sdk/task/__init__.py +151 -0
  312. synth_ai/sdk/task/apps/__init__.py +133 -0
  313. synth_ai/sdk/task/config.py +261 -0
  314. synth_ai/sdk/task/contracts.py +298 -0
  315. synth_ai/sdk/task/datasets.py +108 -0
  316. synth_ai/sdk/task/in_process.py +1190 -0
  317. synth_ai/sdk/task/in_process_runner.py +309 -0
  318. synth_ai/sdk/task/inference_api.py +299 -0
  319. synth_ai/sdk/task/proxy.py +287 -0
  320. synth_ai/sdk/task/rubrics/__init__.py +55 -0
  321. synth_ai/sdk/task/rubrics/loaders.py +156 -0
  322. synth_ai/sdk/task/rubrics.py +219 -0
  323. synth_ai/sdk/task/server.py +580 -0
  324. synth_ai/sdk/task/trace_correlation_helpers.py +506 -0
  325. synth_ai/sdk/task/tracing_utils.py +95 -0
  326. synth_ai/sdk/task/validators.py +456 -0
  327. synth_ai/sdk/tracing/__init__.py +39 -0
  328. synth_ai/sdk/training/__init__.py +102 -0
  329. synth_ai/sdk/usage/__init__.py +37 -0
  330. synth_ai/sdk/usage/client.py +171 -0
  331. synth_ai/sdk/usage/models.py +261 -0
  332. synth_ai/utils/__init__.py +213 -0
  333. synth_ai-0.4.1.dist-info/METADATA +195 -0
  334. synth_ai-0.4.1.dist-info/RECORD +379 -0
  335. synth_ai-0.4.1.dist-info/top_level.txt +1 -0
  336. examples/__init__.py +0 -16
  337. examples/analyze_semantic_words.sh +0 -17
  338. examples/crafter_debug_render.py +0 -186
  339. examples/dev/qwen3_32b_qlora_4xh100.toml +0 -40
  340. examples/multi_step/configs/README_verilog_rl.md +0 -77
  341. examples/multi_step/configs/VERILOG_REWARDS.md +0 -90
  342. examples/multi_step/configs/VERILOG_RL_CHECKLIST.md +0 -183
  343. examples/multi_step/configs/crafter_eval_synth_qwen4b.toml +0 -35
  344. examples/multi_step/configs/crafter_eval_text_only_groq_qwen32b.toml +0 -36
  345. examples/multi_step/configs/crafter_rl_outcome.toml +0 -74
  346. examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +0 -187
  347. examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +0 -83
  348. examples/multi_step/configs/crafter_rl_stepwise_simple.toml +0 -78
  349. examples/multi_step/configs/crafter_synth_backend.md +0 -40
  350. examples/multi_step/configs/verilog_eval_groq_qwen32b.toml +0 -31
  351. examples/multi_step/configs/verilog_eval_synth_qwen8b.toml +0 -33
  352. examples/multi_step/configs/verilog_rl_lora.toml +0 -190
  353. examples/multi_step/crafter_rl_lora.md +0 -70
  354. examples/multi_step/judges/crafter_backend_judge.py +0 -220
  355. examples/multi_step/judges/verilog_backend_judge.py +0 -234
  356. examples/multi_step/readme.md +0 -48
  357. examples/multi_step/sse_metrics_streaming_notes.md +0 -357
  358. examples/multi_step/task_app_config_notes.md +0 -494
  359. examples/multi_step/verilog_rl_lora.md +0 -218
  360. examples/qwen_coder/README.md +0 -102
  361. examples/qwen_coder/_shared.py +0 -113
  362. examples/qwen_coder/configs/coder_lora_30b.toml +0 -61
  363. examples/qwen_coder/configs/coder_lora_4b.toml +0 -57
  364. examples/qwen_coder/configs/coder_lora_small.toml +0 -58
  365. examples/qwen_coder/generate_dataset.py +0 -98
  366. examples/qwen_coder/infer_ft_smoke.py +0 -65
  367. examples/qwen_coder/infer_prod_proxy.py +0 -73
  368. examples/qwen_coder/infer_via_synth.py +0 -87
  369. examples/qwen_coder/scripts/infer_coder.sh +0 -19
  370. examples/qwen_coder/scripts/train_coder_30b.sh +0 -22
  371. examples/qwen_coder/sft_full_17b.py +0 -103
  372. examples/qwen_coder/sft_lora_30b.py +0 -110
  373. examples/qwen_coder/subset_jsonl.py +0 -39
  374. examples/qwen_coder/todos.md +0 -38
  375. examples/qwen_coder/validate_jsonl.py +0 -60
  376. examples/rl/README.md +0 -169
  377. examples/rl/download_dataset.py +0 -80
  378. examples/run_crafter_demo.sh +0 -10
  379. examples/sft/README.md +0 -139
  380. examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -44
  381. examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -45
  382. examples/sft/evaluate.py +0 -119
  383. examples/sft/export_dataset.py +0 -117
  384. examples/sft/generate_traces.py +0 -164
  385. examples/swe/__init__.py +0 -12
  386. examples/swe/task_app/README.md +0 -105
  387. examples/swe/task_app/__init__.py +0 -2
  388. examples/swe/task_app/grpo_swe_mini.py +0 -601
  389. examples/swe/task_app/grpo_swe_mini_task_app.py +0 -136
  390. examples/swe/task_app/hosted/README.md +0 -173
  391. examples/swe/task_app/hosted/__init__.py +0 -5
  392. examples/swe/task_app/hosted/branching.py +0 -143
  393. examples/swe/task_app/hosted/environment_routes.py +0 -1289
  394. examples/swe/task_app/hosted/envs/__init__.py +0 -1
  395. examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -6
  396. examples/swe/task_app/hosted/envs/crafter/app.py +0 -1
  397. examples/swe/task_app/hosted/envs/crafter/environment.py +0 -522
  398. examples/swe/task_app/hosted/envs/crafter/policy.py +0 -478
  399. examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -108
  400. examples/swe/task_app/hosted/envs/crafter/shared.py +0 -305
  401. examples/swe/task_app/hosted/envs/crafter/tools.py +0 -47
  402. examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -8
  403. examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -1164
  404. examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -355
  405. examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -83
  406. examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -96
  407. examples/swe/task_app/hosted/hosted_app.py +0 -204
  408. examples/swe/task_app/hosted/inference/__init__.py +0 -5
  409. examples/swe/task_app/hosted/inference/openai_client.py +0 -618
  410. examples/swe/task_app/hosted/main.py +0 -100
  411. examples/swe/task_app/hosted/policy_routes.py +0 -1079
  412. examples/swe/task_app/hosted/registry.py +0 -195
  413. examples/swe/task_app/hosted/rollout.py +0 -1911
  414. examples/swe/task_app/hosted/storage/__init__.py +0 -5
  415. examples/swe/task_app/hosted/storage/volume.py +0 -211
  416. examples/swe/task_app/hosted/test_agents.py +0 -161
  417. examples/swe/task_app/hosted/test_service.py +0 -136
  418. examples/swe/task_app/hosted/utils.py +0 -62
  419. examples/task_apps/IMAGE_ONLY_EVAL_QUICKSTART.md +0 -258
  420. examples/task_apps/TESTING.md +0 -275
  421. examples/task_apps/crafter/CREATE_SFT_DATASET.md +0 -273
  422. examples/task_apps/crafter/EVAL_IMAGE_ONLY_RESULTS.md +0 -152
  423. examples/task_apps/crafter/FILTER_COMMAND_STATUS.md +0 -174
  424. examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md +0 -268
  425. examples/task_apps/crafter/QUERY_EXAMPLES.md +0 -203
  426. examples/task_apps/crafter/README_IMAGE_ONLY_EVAL.md +0 -316
  427. examples/task_apps/crafter/__init__.py +0 -0
  428. examples/task_apps/crafter/eval_image_only_gpt4o.toml +0 -28
  429. examples/task_apps/crafter/eval_text_only_groq_llama.toml +0 -36
  430. examples/task_apps/crafter/filter_sft_dataset.toml +0 -16
  431. examples/task_apps/crafter/task_app/README.md +0 -42
  432. examples/task_apps/crafter/task_app/__init__.py +0 -5
  433. examples/task_apps/crafter/task_app/grpo_crafter.py +0 -973
  434. examples/task_apps/crafter/task_app/grpo_crafter_task_app.py +0 -146
  435. examples/task_apps/crafter/task_app/synth_envs_hosted/README.md +0 -173
  436. examples/task_apps/crafter/task_app/synth_envs_hosted/__init__.py +0 -5
  437. examples/task_apps/crafter/task_app/synth_envs_hosted/branching.py +0 -143
  438. examples/task_apps/crafter/task_app/synth_envs_hosted/environment_routes.py +0 -1226
  439. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/__init__.py +0 -1
  440. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -6
  441. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/app.py +0 -1
  442. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -532
  443. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -547
  444. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -123
  445. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -305
  446. examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -47
  447. examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py +0 -204
  448. examples/task_apps/crafter/task_app/synth_envs_hosted/inference/__init__.py +0 -5
  449. examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py +0 -704
  450. examples/task_apps/crafter/task_app/synth_envs_hosted/main.py +0 -100
  451. examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py +0 -1152
  452. examples/task_apps/crafter/task_app/synth_envs_hosted/registry.py +0 -195
  453. examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py +0 -2160
  454. examples/task_apps/crafter/task_app/synth_envs_hosted/storage/__init__.py +0 -5
  455. examples/task_apps/crafter/task_app/synth_envs_hosted/storage/volume.py +0 -211
  456. examples/task_apps/crafter/task_app/synth_envs_hosted/test_agents.py +0 -161
  457. examples/task_apps/crafter/task_app/synth_envs_hosted/test_service.py +0 -136
  458. examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py +0 -218
  459. examples/task_apps/dev/pokemon_emerald/__init__.py +0 -2
  460. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md +0 -811
  461. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py +0 -120
  462. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py +0 -160
  463. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py +0 -155
  464. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py +0 -69
  465. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py +0 -96
  466. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py +0 -1502
  467. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py +0 -4
  468. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py +0 -68
  469. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py +0 -216
  470. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py +0 -35
  471. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py +0 -631
  472. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py +0 -1544
  473. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py +0 -1428
  474. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py +0 -4848
  475. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py +0 -41
  476. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py +0 -298
  477. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml +0 -95
  478. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py +0 -204
  479. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/__init__.py +0 -0
  480. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py +0 -2152
  481. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py +0 -429
  482. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py +0 -155
  483. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md +0 -78
  484. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/__init__.py +0 -0
  485. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py +0 -122
  486. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py +0 -76
  487. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py +0 -413
  488. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py +0 -204
  489. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py +0 -133
  490. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py +0 -229
  491. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py +0 -300
  492. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py +0 -205
  493. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py +0 -200
  494. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py +0 -284
  495. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py +0 -468
  496. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py +0 -575
  497. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py +0 -311
  498. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py +0 -259
  499. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/__init__.py +0 -0
  500. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py +0 -372
  501. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py +0 -296
  502. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py +0 -275
  503. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py +0 -22
  504. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py +0 -44
  505. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py +0 -514
  506. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py +0 -415
  507. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py +0 -1763
  508. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py +0 -33
  509. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py +0 -106
  510. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py +0 -334
  511. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py +0 -1020
  512. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py +0 -188
  513. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py +0 -1481
  514. examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py +0 -862
  515. examples/task_apps/dev/pokemon_emerald/modal_app.py +0 -114
  516. examples/task_apps/dev/pokemon_emerald/task_app/README.md +0 -81
  517. examples/task_apps/dev/pokemon_emerald/task_app/__init__.py +0 -6
  518. examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py +0 -685
  519. examples/task_apps/enron/__init__.py +0 -1
  520. examples/task_apps/enron/eval_groq_qwen32.toml +0 -16
  521. examples/task_apps/enron/filter_sft.toml +0 -5
  522. examples/task_apps/enron/task_app/README.md +0 -14
  523. examples/task_apps/enron/task_app/__init__.py +0 -1
  524. examples/task_apps/enron/task_app/grpo_enron.py +0 -906
  525. examples/task_apps/enron/task_app/grpo_enron_task_app.py +0 -146
  526. examples/task_apps/enron/tests/__init__.py +0 -4
  527. examples/task_apps/enron/tests/conftest.py +0 -115
  528. examples/task_apps/enron/tests/integration/__init__.py +0 -4
  529. examples/task_apps/enron/tests/integration/test_enron_eval.py +0 -179
  530. examples/task_apps/enron/tests/integration/test_enron_rollout.py +0 -135
  531. examples/task_apps/enron/tests/unit/__init__.py +0 -4
  532. examples/task_apps/enron/tests/unit/test_enron_environment.py +0 -126
  533. examples/task_apps/math/README.md +0 -22
  534. examples/task_apps/math/__init__.py +0 -0
  535. examples/task_apps/math/math_single_step.py +0 -1000
  536. examples/task_apps/math/math_task_app.py +0 -115
  537. examples/task_apps/pokemon_battle/__init__.py +0 -2
  538. examples/task_apps/pokemon_battle/modal_app.py +0 -104
  539. examples/task_apps/pokemon_battle/task_app/README.md +0 -68
  540. examples/task_apps/pokemon_battle/task_app/__init__.py +0 -6
  541. examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py +0 -932
  542. examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_COMPLETE.md +0 -283
  543. examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_STATUS.md +0 -155
  544. examples/task_apps/pokemon_red/README.md +0 -357
  545. examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md +0 -415
  546. examples/task_apps/pokemon_red/__init__.py +0 -3
  547. examples/task_apps/pokemon_red/eval_image_only_gpt4o.toml +0 -29
  548. examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +0 -225
  549. examples/task_apps/pokemon_red/pallet_town_rl_config.toml +0 -75
  550. examples/task_apps/pokemon_red/task_app.py +0 -799
  551. examples/task_apps/pokemon_red/test_pallet_town_rewards.py +0 -193
  552. examples/task_apps/sokoban/README.md +0 -307
  553. examples/task_apps/sokoban/__init__.py +0 -3
  554. examples/task_apps/sokoban/eval_groq_qwen32.toml +0 -16
  555. examples/task_apps/sokoban/eval_openai_gpt5.toml +0 -16
  556. examples/task_apps/sokoban/filter_sft.toml +0 -5
  557. examples/task_apps/sokoban/task_app.py +0 -1058
  558. examples/task_apps/sokoban/tests/__init__.py +0 -4
  559. examples/task_apps/sokoban/tests/conftest.py +0 -113
  560. examples/task_apps/sokoban/tests/integration/__init__.py +0 -4
  561. examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py +0 -57
  562. examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py +0 -198
  563. examples/task_apps/sokoban/tests/unit/__init__.py +0 -4
  564. examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py +0 -114
  565. examples/task_apps/verilog/__init__.py +0 -1
  566. examples/task_apps/verilog/eval_groq_qwen32b.toml +0 -24
  567. examples/task_apps/verilog/filter_sft.toml +0 -5
  568. examples/task_apps/verilog/task_app/README.md +0 -12
  569. examples/task_apps/verilog/task_app/__init__.py +0 -1
  570. examples/task_apps/verilog/task_app/grpo_verilog.py +0 -1166
  571. examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +0 -145
  572. examples/task_apps/verilog/tests/__init__.py +0 -4
  573. examples/task_apps/verilog/tests/conftest.py +0 -115
  574. examples/task_apps/verilog/tests/integration/__init__.py +0 -4
  575. examples/task_apps/verilog/tests/integration/test_verilog_eval.py +0 -181
  576. examples/task_apps/verilog/tests/integration/test_verilog_rollout.py +0 -55
  577. examples/task_apps/verilog/tests/unit/__init__.py +0 -4
  578. examples/task_apps/verilog/tests/unit/test_verilog_scoring.py +0 -118
  579. examples/vlm/PROPOSAL.md +0 -53
  580. examples/vlm/README.md +0 -68
  581. examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -44
  582. examples/vlm/crafter_image_only_agent.py +0 -207
  583. examples/vlm/crafter_openai_vlm_agent.py +0 -277
  584. examples/vlm/filter_image_rows.py +0 -63
  585. examples/vlm/run_crafter_vlm_benchmark.py +0 -316
  586. examples/warming_up_to_rl/analyze_trace_db.py +0 -422
  587. examples/warming_up_to_rl/configs/crafter_fft.toml +0 -48
  588. examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -54
  589. examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -20
  590. examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -13
  591. examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -23
  592. examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +0 -35
  593. examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +0 -26
  594. examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +0 -36
  595. examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +0 -32
  596. examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -83
  597. examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -56
  598. examples/warming_up_to_rl/export_trace_sft.py +0 -723
  599. examples/warming_up_to_rl/groq_test.py +0 -97
  600. examples/warming_up_to_rl/manage_secrets.py +0 -131
  601. examples/warming_up_to_rl/old/event_rewards.md +0 -234
  602. examples/warming_up_to_rl/old/notes.md +0 -73
  603. examples/warming_up_to_rl/readme.md +0 -179
  604. examples/warming_up_to_rl/run_eval.py +0 -736
  605. examples/warming_up_to_rl/run_fft_and_save.py +0 -380
  606. examples/warming_up_to_rl/run_local_rollout.py +0 -239
  607. examples/warming_up_to_rl/run_local_rollout_modal.py +0 -248
  608. examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -405
  609. examples/warming_up_to_rl/run_local_rollout_traced.py +0 -477
  610. examples/warming_up_to_rl/run_rl_and_save.py +0 -124
  611. examples/warming_up_to_rl/run_rollout_remote.py +0 -156
  612. examples/workflows/__init__.py +0 -0
  613. examples/workflows/math_rl/__init__.py +0 -0
  614. examples/workflows/math_rl/configs/eval_base_qwen.toml +0 -15
  615. examples/workflows/math_rl/configs/eval_rl_qwen.toml +0 -11
  616. examples/workflows/math_rl/configs/rl_from_base_qwen.toml +0 -35
  617. examples/workflows/math_rl/configs/rl_from_base_qwen17.toml +0 -74
  618. examples/workflows/math_rl/configs/rl_from_ft_qwen.toml +0 -35
  619. examples/workflows/math_rl/download_dataset.py +0 -80
  620. examples/workflows/math_rl/run_eval.py +0 -436
  621. examples/workflows/math_rl/run_rl_and_save.py +0 -111
  622. synth_ai/api/models/supported.py +0 -377
  623. synth_ai/api/train/__init__.py +0 -5
  624. synth_ai/api/train/builders.py +0 -351
  625. synth_ai/api/train/cli.py +0 -635
  626. synth_ai/api/train/config_finder.py +0 -228
  627. synth_ai/api/train/configs/__init__.py +0 -44
  628. synth_ai/api/train/configs/rl.py +0 -134
  629. synth_ai/api/train/configs/sft.py +0 -95
  630. synth_ai/api/train/configs/shared.py +0 -24
  631. synth_ai/api/train/env_resolver.py +0 -349
  632. synth_ai/api/train/pollers.py +0 -75
  633. synth_ai/api/train/supported_algos.py +0 -147
  634. synth_ai/api/train/task_app.py +0 -195
  635. synth_ai/api/train/utils.py +0 -225
  636. synth_ai/cli/_modal_wrapper.py +0 -29
  637. synth_ai/cli/_storage.py +0 -20
  638. synth_ai/cli/_typer_patch.py +0 -49
  639. synth_ai/cli/_validate_task_app.py +0 -11
  640. synth_ai/cli/balance.py +0 -216
  641. synth_ai/cli/calc.py +0 -84
  642. synth_ai/cli/demo.py +0 -165
  643. synth_ai/cli/legacy_root_backup.py +0 -468
  644. synth_ai/cli/man.py +0 -106
  645. synth_ai/cli/recent.py +0 -132
  646. synth_ai/cli/rl_demo.py +0 -254
  647. synth_ai/cli/status.py +0 -134
  648. synth_ai/cli/task_apps.py +0 -4523
  649. synth_ai/cli/traces.py +0 -164
  650. synth_ai/cli/tui.py +0 -57
  651. synth_ai/cli/watch.py +0 -506
  652. synth_ai/compound/cais.py +0 -0
  653. synth_ai/config/base_url.py +0 -107
  654. synth_ai/core/experiment.py +0 -13
  655. synth_ai/core/system.py +0 -15
  656. synth_ai/demo_registry.py +0 -295
  657. synth_ai/demos/core/__init__.py +0 -1
  658. synth_ai/demos/core/cli.py +0 -1718
  659. synth_ai/demos/demo_task_apps/core.py +0 -440
  660. synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +0 -184
  661. synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -22
  662. synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -739
  663. synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -37
  664. synth_ai/environments/__init__.py +0 -31
  665. synth_ai/environments/environment/__init__.py +0 -1
  666. synth_ai/environments/environment/artifacts/__init__.py +0 -1
  667. synth_ai/environments/environment/artifacts/base.py +0 -52
  668. synth_ai/environments/environment/core.py +0 -67
  669. synth_ai/environments/environment/db/__init__.py +0 -1
  670. synth_ai/environments/environment/db/sqlite.py +0 -45
  671. synth_ai/environments/environment/registry.py +0 -233
  672. synth_ai/environments/environment/resources/sqlite.py +0 -45
  673. synth_ai/environments/environment/results.py +0 -1
  674. synth_ai/environments/environment/rewards/__init__.py +0 -1
  675. synth_ai/environments/environment/rewards/core.py +0 -29
  676. synth_ai/environments/environment/shared_engine.py +0 -26
  677. synth_ai/environments/environment/tools/__init__.py +0 -200
  678. synth_ai/environments/examples/__init__.py +0 -1
  679. synth_ai/environments/examples/bandit/__init__.py +0 -33
  680. synth_ai/environments/examples/bandit/engine.py +0 -302
  681. synth_ai/environments/examples/bandit/environment.py +0 -194
  682. synth_ai/environments/examples/bandit/taskset.py +0 -200
  683. synth_ai/environments/examples/crafter_classic/__init__.py +0 -8
  684. synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -250
  685. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -59
  686. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -152
  687. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -24
  688. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -1194
  689. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -56
  690. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -32
  691. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_traces_sft_turso.py +0 -738
  692. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -384
  693. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -53
  694. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -178
  695. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -222
  696. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -183
  697. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -210
  698. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -206
  699. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -49
  700. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -64
  701. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -88
  702. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -77
  703. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -324
  704. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/filter_traces_sft_turso.py +0 -580
  705. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -362
  706. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -49
  707. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -332
  708. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -97
  709. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -217
  710. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -87
  711. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -88
  712. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -195
  713. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -400
  714. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -195
  715. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -56
  716. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/run_rollouts_for_models_and_compare_v3.py +0 -858
  717. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -52
  718. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -874
  719. synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -1412
  720. synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -216
  721. synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -296
  722. synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -58
  723. synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -464
  724. synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -152
  725. synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -51
  726. synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -1412
  727. synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -112
  728. synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -203
  729. synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -305
  730. synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -126
  731. synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -94
  732. synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -142
  733. synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -26
  734. synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -984
  735. synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -724
  736. synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -386
  737. synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -205
  738. synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -150
  739. synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -283
  740. synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -280
  741. synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -456
  742. synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -166
  743. synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -102
  744. synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -128
  745. synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -655
  746. synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -202
  747. synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -166
  748. synth_ai/environments/examples/crafter_classic/config_logging.py +0 -111
  749. synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
  750. synth_ai/environments/examples/crafter_classic/engine.py +0 -579
  751. synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -64
  752. synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -6
  753. synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -75
  754. synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -267
  755. synth_ai/environments/examples/crafter_classic/environment.py +0 -495
  756. synth_ai/environments/examples/crafter_classic/taskset.py +0 -233
  757. synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -228
  758. synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -299
  759. synth_ai/environments/examples/crafter_custom/__init__.py +0 -4
  760. synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -1
  761. synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -202
  762. synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -7
  763. synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -182
  764. synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -8
  765. synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -269
  766. synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -262
  767. synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -417
  768. synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -187
  769. synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -118
  770. synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -373
  771. synth_ai/environments/examples/crafter_custom/environment.py +0 -312
  772. synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -159
  773. synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -158
  774. synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -71
  775. synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -105
  776. synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -119
  777. synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -52
  778. synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -305
  779. synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -156
  780. synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -281
  781. synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -25
  782. synth_ai/environments/examples/enron/engine.py +0 -300
  783. synth_ai/environments/examples/enron/environment.py +0 -234
  784. synth_ai/environments/examples/enron/taskset.py +0 -112
  785. synth_ai/environments/examples/enron/units/keyword_stats.py +0 -112
  786. synth_ai/environments/examples/minigrid/__init__.py +0 -48
  787. synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -1188
  788. synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -48
  789. synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -562
  790. synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -221
  791. synth_ai/environments/examples/minigrid/engine.py +0 -589
  792. synth_ai/environments/examples/minigrid/environment.py +0 -274
  793. synth_ai/environments/examples/minigrid/environment_mapping.py +0 -242
  794. synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -417
  795. synth_ai/environments/examples/minigrid/taskset.py +0 -583
  796. synth_ai/environments/examples/nethack/__init__.py +0 -7
  797. synth_ai/environments/examples/nethack/achievements.py +0 -337
  798. synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -981
  799. synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -74
  800. synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -831
  801. synth_ai/environments/examples/nethack/engine.py +0 -739
  802. synth_ai/environments/examples/nethack/environment.py +0 -256
  803. synth_ai/environments/examples/nethack/helpers/__init__.py +0 -41
  804. synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -301
  805. synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -402
  806. synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -433
  807. synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -200
  808. synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -269
  809. synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -308
  810. synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -431
  811. synth_ai/environments/examples/nethack/taskset.py +0 -323
  812. synth_ai/environments/examples/red/__init__.py +0 -7
  813. synth_ai/environments/examples/red/agent_demos/__init__.py +0 -1
  814. synth_ai/environments/examples/red/config_logging.py +0 -110
  815. synth_ai/environments/examples/red/engine.py +0 -721
  816. synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -1
  817. synth_ai/environments/examples/red/engine_helpers/memory_map.py +0 -35
  818. synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -276
  819. synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -142
  820. synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -57
  821. synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -284
  822. synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -150
  823. synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -138
  824. synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -57
  825. synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -331
  826. synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -121
  827. synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py +0 -477
  828. synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -559
  829. synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -313
  830. synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -148
  831. synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -247
  832. synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -368
  833. synth_ai/environments/examples/red/engine_helpers/state_extraction.py +0 -172
  834. synth_ai/environments/examples/red/environment.py +0 -298
  835. synth_ai/environments/examples/red/taskset.py +0 -79
  836. synth_ai/environments/examples/red/units/__init__.py +0 -1
  837. synth_ai/environments/examples/sokoban/__init__.py +0 -1
  838. synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -899
  839. synth_ai/environments/examples/sokoban/engine.py +0 -678
  840. synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -1
  841. synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -657
  842. synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -18
  843. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -3
  844. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -131
  845. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -370
  846. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -332
  847. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -306
  848. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -67
  849. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -115
  850. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -123
  851. synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -394
  852. synth_ai/environments/examples/sokoban/environment.py +0 -229
  853. synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -440
  854. synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -312
  855. synth_ai/environments/examples/sokoban/taskset.py +0 -544
  856. synth_ai/environments/examples/tictactoe/__init__.py +0 -1
  857. synth_ai/environments/examples/tictactoe/engine.py +0 -368
  858. synth_ai/environments/examples/tictactoe/environment.py +0 -240
  859. synth_ai/environments/examples/tictactoe/taskset.py +0 -215
  860. synth_ai/environments/examples/verilog/__init__.py +0 -10
  861. synth_ai/environments/examples/verilog/engine.py +0 -421
  862. synth_ai/environments/examples/verilog/environment.py +0 -350
  863. synth_ai/environments/examples/verilog/taskset.py +0 -420
  864. synth_ai/environments/examples/wordle/__init__.py +0 -29
  865. synth_ai/environments/examples/wordle/engine.py +0 -398
  866. synth_ai/environments/examples/wordle/environment.py +0 -159
  867. synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -75
  868. synth_ai/environments/examples/wordle/taskset.py +0 -230
  869. synth_ai/environments/reproducibility/core.py +0 -42
  870. synth_ai/environments/reproducibility/helpers.py +0 -0
  871. synth_ai/environments/reproducibility/tree.py +0 -363
  872. synth_ai/environments/service/app.py +0 -97
  873. synth_ai/environments/service/core_routes.py +0 -1021
  874. synth_ai/environments/service/external_registry.py +0 -56
  875. synth_ai/environments/service/registry.py +0 -9
  876. synth_ai/environments/stateful/__init__.py +0 -1
  877. synth_ai/environments/stateful/core.py +0 -163
  878. synth_ai/environments/stateful/engine.py +0 -21
  879. synth_ai/environments/stateful/state.py +0 -7
  880. synth_ai/environments/tasks/api.py +0 -19
  881. synth_ai/environments/tasks/core.py +0 -81
  882. synth_ai/environments/tasks/filters.py +0 -40
  883. synth_ai/environments/tasks/utils.py +0 -90
  884. synth_ai/environments/v0_observability/history.py +0 -3
  885. synth_ai/environments/v0_observability/log.py +0 -2
  886. synth_ai/evals/__init__.py +0 -15
  887. synth_ai/evals/base.py +0 -13
  888. synth_ai/evals/client.py +0 -82
  889. synth_ai/handshake.py +0 -109
  890. synth_ai/http.py +0 -26
  891. synth_ai/http_client.py +0 -136
  892. synth_ai/inference/__init__.py +0 -5
  893. synth_ai/inference/client.py +0 -34
  894. synth_ai/jobs/client.py +0 -295
  895. synth_ai/judge_schemas.py +0 -127
  896. synth_ai/learning/__init__.py +0 -59
  897. synth_ai/learning/client.py +0 -241
  898. synth_ai/learning/ft_client.py +0 -7
  899. synth_ai/learning/health.py +0 -49
  900. synth_ai/learning/jobs.py +0 -201
  901. synth_ai/learning/rl/client.py +0 -267
  902. synth_ai/learning/rl/contracts.py +0 -27
  903. synth_ai/learning/rl/env_keys.py +0 -166
  904. synth_ai/learning/rl/secrets.py +0 -13
  905. synth_ai/learning/sft/client.py +0 -68
  906. synth_ai/learning/sft/config.py +0 -270
  907. synth_ai/learning/sft/data.py +0 -295
  908. synth_ai/learning/validators.py +0 -49
  909. synth_ai/lm/__init__.py +0 -25
  910. synth_ai/task/__init__.py +0 -121
  911. synth_ai/task/apps/__init__.py +0 -129
  912. synth_ai/task/config.py +0 -257
  913. synth_ai/task/contracts.py +0 -236
  914. synth_ai/task/datasets.py +0 -108
  915. synth_ai/task/proxy.py +0 -251
  916. synth_ai/task/rubrics/__init__.py +0 -56
  917. synth_ai/task/rubrics/loaders.py +0 -152
  918. synth_ai/task/server.py +0 -432
  919. synth_ai/task/trace_correlation_helpers.py +0 -315
  920. synth_ai/task/tracing_utils.py +0 -84
  921. synth_ai/task/validators.py +0 -418
  922. synth_ai/tracing_v3/__init__.py +0 -97
  923. synth_ai/tracing_v3/abstractions.py +0 -302
  924. synth_ai/tracing_v3/config.py +0 -84
  925. synth_ai/tracing_v3/db_config.py +0 -194
  926. synth_ai/tracing_v3/decorators.py +0 -398
  927. synth_ai/tracing_v3/llm_call_record_helpers.py +0 -391
  928. synth_ai/tracing_v3/migration_helper.py +0 -120
  929. synth_ai/tracing_v3/session_tracer.py +0 -540
  930. synth_ai/tracing_v3/storage/base.py +0 -210
  931. synth_ai/tracing_v3/storage/config.py +0 -75
  932. synth_ai/tracing_v3/storage/factory.py +0 -39
  933. synth_ai/tracing_v3/trace_utils.py +0 -317
  934. synth_ai/tracing_v3/turso/daemon.py +0 -151
  935. synth_ai/tracing_v3/turso/models.py +0 -469
  936. synth_ai/tracing_v3/turso/native_manager.py +0 -1209
  937. synth_ai/tracing_v3/utils.py +0 -108
  938. synth_ai/tui/__init__.py +0 -5
  939. synth_ai/tui/__main__.py +0 -13
  940. synth_ai/tui/cli/__init__.py +0 -1
  941. synth_ai/tui/cli/query_experiments.py +0 -164
  942. synth_ai/tui/cli/query_experiments_v3.py +0 -164
  943. synth_ai/tui/dashboard.py +0 -906
  944. synth_ai/v0/api/__init__.py +0 -8
  945. synth_ai/v0/api/models/__init__.py +0 -8
  946. synth_ai/v0/api/models/supported.py +0 -8
  947. synth_ai/v0/config/__init__.py +0 -15
  948. synth_ai/v0/config/base_url.py +0 -12
  949. synth_ai/v0/lm/__init__.py +0 -51
  950. synth_ai/v0/lm/caching/__init__.py +0 -0
  951. synth_ai/v0/lm/caching/constants.py +0 -6
  952. synth_ai/v0/lm/caching/dbs.py +0 -0
  953. synth_ai/v0/lm/caching/ephemeral.py +0 -100
  954. synth_ai/v0/lm/caching/handler.py +0 -137
  955. synth_ai/v0/lm/caching/initialize.py +0 -11
  956. synth_ai/v0/lm/caching/persistent.py +0 -114
  957. synth_ai/v0/lm/config.py +0 -115
  958. synth_ai/v0/lm/constants.py +0 -32
  959. synth_ai/v0/lm/core/__init__.py +0 -8
  960. synth_ai/v0/lm/core/all.py +0 -73
  961. synth_ai/v0/lm/core/exceptions.py +0 -5
  962. synth_ai/v0/lm/core/main.py +0 -331
  963. synth_ai/v0/lm/core/main_v3.py +0 -594
  964. synth_ai/v0/lm/core/synth_models.py +0 -35
  965. synth_ai/v0/lm/core/vendor_clients.py +0 -190
  966. synth_ai/v0/lm/cost/__init__.py +0 -0
  967. synth_ai/v0/lm/cost/monitor.py +0 -1
  968. synth_ai/v0/lm/cost/statefulness.py +0 -1
  969. synth_ai/v0/lm/injection.py +0 -80
  970. synth_ai/v0/lm/overrides.py +0 -206
  971. synth_ai/v0/lm/provider_support/__init__.py +0 -8
  972. synth_ai/v0/lm/provider_support/anthropic.py +0 -972
  973. synth_ai/v0/lm/provider_support/openai.py +0 -1139
  974. synth_ai/v0/lm/provider_support/suppress_logging.py +0 -31
  975. synth_ai/v0/lm/structured_outputs/__init__.py +0 -0
  976. synth_ai/v0/lm/structured_outputs/handler.py +0 -440
  977. synth_ai/v0/lm/structured_outputs/inject.py +0 -297
  978. synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -185
  979. synth_ai/v0/lm/tools/__init__.py +0 -3
  980. synth_ai/v0/lm/tools/base.py +0 -172
  981. synth_ai/v0/lm/unified_interface.py +0 -202
  982. synth_ai/v0/lm/vendors/__init__.py +0 -0
  983. synth_ai/v0/lm/vendors/base.py +0 -81
  984. synth_ai/v0/lm/vendors/core/__init__.py +0 -0
  985. synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -387
  986. synth_ai/v0/lm/vendors/core/gemini_api.py +0 -292
  987. synth_ai/v0/lm/vendors/core/mistral_api.py +0 -322
  988. synth_ai/v0/lm/vendors/core/openai_api.py +0 -227
  989. synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
  990. synth_ai/v0/lm/vendors/local/__init__.py +0 -0
  991. synth_ai/v0/lm/vendors/local/ollama.py +0 -0
  992. synth_ai/v0/lm/vendors/openai_standard.py +0 -782
  993. synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -259
  994. synth_ai/v0/lm/vendors/retries.py +0 -22
  995. synth_ai/v0/lm/vendors/supported/__init__.py +0 -0
  996. synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -415
  997. synth_ai/v0/lm/vendors/supported/deepseek.py +0 -69
  998. synth_ai/v0/lm/vendors/supported/grok.py +0 -75
  999. synth_ai/v0/lm/vendors/supported/groq.py +0 -16
  1000. synth_ai/v0/lm/vendors/supported/ollama.py +0 -15
  1001. synth_ai/v0/lm/vendors/supported/openrouter.py +0 -74
  1002. synth_ai/v0/lm/vendors/supported/together.py +0 -11
  1003. synth_ai/v0/lm/vendors/synth_client.py +0 -835
  1004. synth_ai/v0/lm/warmup.py +0 -186
  1005. synth_ai/v0/tracing/__init__.py +0 -0
  1006. synth_ai/v0/tracing/abstractions.py +0 -224
  1007. synth_ai/v0/tracing/base_client.py +0 -91
  1008. synth_ai/v0/tracing/client_manager.py +0 -131
  1009. synth_ai/v0/tracing/config.py +0 -142
  1010. synth_ai/v0/tracing/context.py +0 -146
  1011. synth_ai/v0/tracing/decorators.py +0 -682
  1012. synth_ai/v0/tracing/events/__init__.py +0 -0
  1013. synth_ai/v0/tracing/events/manage.py +0 -147
  1014. synth_ai/v0/tracing/events/scope.py +0 -86
  1015. synth_ai/v0/tracing/events/store.py +0 -228
  1016. synth_ai/v0/tracing/immediate_client.py +0 -151
  1017. synth_ai/v0/tracing/local.py +0 -18
  1018. synth_ai/v0/tracing/log_client_base.py +0 -73
  1019. synth_ai/v0/tracing/retry_queue.py +0 -186
  1020. synth_ai/v0/tracing/trackers.py +0 -515
  1021. synth_ai/v0/tracing/upload.py +0 -409
  1022. synth_ai/v0/tracing/utils.py +0 -9
  1023. synth_ai/v0/tracing_v1/__init__.py +0 -16
  1024. synth_ai/v0/tracing_v1/abstractions.py +0 -224
  1025. synth_ai/v0/tracing_v1/base_client.py +0 -91
  1026. synth_ai/v0/tracing_v1/client_manager.py +0 -131
  1027. synth_ai/v0/tracing_v1/config.py +0 -142
  1028. synth_ai/v0/tracing_v1/context.py +0 -146
  1029. synth_ai/v0/tracing_v1/decorators.py +0 -703
  1030. synth_ai/v0/tracing_v1/events/__init__.py +0 -0
  1031. synth_ai/v0/tracing_v1/events/manage.py +0 -147
  1032. synth_ai/v0/tracing_v1/events/scope.py +0 -86
  1033. synth_ai/v0/tracing_v1/events/store.py +0 -228
  1034. synth_ai/v0/tracing_v1/immediate_client.py +0 -151
  1035. synth_ai/v0/tracing_v1/local.py +0 -18
  1036. synth_ai/v0/tracing_v1/log_client_base.py +0 -73
  1037. synth_ai/v0/tracing_v1/retry_queue.py +0 -186
  1038. synth_ai/v0/tracing_v1/trackers.py +0 -515
  1039. synth_ai/v0/tracing_v1/upload.py +0 -527
  1040. synth_ai/v0/tracing_v1/utils.py +0 -9
  1041. synth_ai/v0/tracing_v3/__init__.py +0 -10
  1042. synth_ai/v0/tracing_v3/abstractions.py +0 -3
  1043. synth_ai/v0/tracing_v3/decorators.py +0 -3
  1044. synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -3
  1045. synth_ai/v0/tracing_v3/session_tracer.py +0 -3
  1046. synth_ai-0.2.14.dist-info/METADATA +0 -139
  1047. synth_ai-0.2.14.dist-info/RECORD +0 -762
  1048. synth_ai-0.2.14.dist-info/top_level.txt +0 -2
  1049. /synth_ai/{demos/demo_task_apps → cli/demo_apps}/crafter/__init__.py +0 -0
  1050. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/__init__.py +0 -0
  1051. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
  1052. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
  1053. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/__init__.py +0 -0
  1054. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/_common.py +0 -0
  1055. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/app.py +0 -0
  1056. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/config.toml +0 -0
  1057. /synth_ai/{demos → cli/demo_apps}/demo_task_apps/math/deploy_modal.py +0 -0
  1058. {examples/task_apps → synth_ai/core/apps}/__init__.py +0 -0
  1059. /synth_ai/{tracing_v3 → core/tracing_v3}/examples/basic_usage.py +0 -0
  1060. /synth_ai/{tracing_v3 → core/tracing_v3}/hooks.py +0 -0
  1061. /synth_ai/{tracing_v3 → core/tracing_v3}/lm_call_record_abstractions.py +0 -0
  1062. /synth_ai/{tracing_v3 → core/tracing_v3}/replica_sync.py +0 -0
  1063. /synth_ai/{tracing_v3 → core/tracing_v3}/serialization.py +0 -0
  1064. /synth_ai/{tracing_v3 → core/tracing_v3}/storage/__init__.py +0 -0
  1065. /synth_ai/{tracing_v3 → core/tracing_v3}/storage/exceptions.py +0 -0
  1066. /synth_ai/{tracing_v3 → core/tracing_v3}/storage/types.py +0 -0
  1067. /synth_ai/{tracing_v3 → core/tracing_v3}/storage/utils.py +0 -0
  1068. /synth_ai/{tracing_v3 → core/tracing_v3}/turso/__init__.py +0 -0
  1069. /synth_ai/{evals → sdk/judging}/types.py +0 -0
  1070. /synth_ai/{learning → sdk/learning}/algorithms.py +0 -0
  1071. /synth_ai/{learning → sdk/learning}/config.py +0 -0
  1072. /synth_ai/{learning → sdk/learning}/constants.py +0 -0
  1073. /synth_ai/{learning → sdk/learning}/core.py +0 -0
  1074. /synth_ai/{learning → sdk/learning}/gateway.py +0 -0
  1075. /synth_ai/{learning → sdk/learning}/rl/__init__.py +0 -0
  1076. /synth_ai/{learning → sdk/learning}/rl/config.py +0 -0
  1077. /synth_ai/{learning → sdk/learning}/rl_client.py +0 -0
  1078. /synth_ai/{learning → sdk/learning}/sft/__init__.py +0 -0
  1079. /synth_ai/{learning → sdk/learning}/sse.py +0 -0
  1080. /synth_ai/{task → sdk/task}/auth.py +0 -0
  1081. /synth_ai/{task → sdk/task}/client.py +0 -0
  1082. /synth_ai/{task → sdk/task}/errors.py +0 -0
  1083. /synth_ai/{task → sdk/task}/health.py +0 -0
  1084. /synth_ai/{task → sdk/task}/json.py +0 -0
  1085. /synth_ai/{task → sdk/task}/rubrics/models.py +0 -0
  1086. /synth_ai/{task → sdk/task}/rubrics/scoring.py +0 -0
  1087. /synth_ai/{task → sdk/task}/rubrics/strict.py +0 -0
  1088. /synth_ai/{task → sdk/task}/vendors.py +0 -0
  1089. {synth_ai-0.2.14.dist-info → synth_ai-0.4.1.dist-info}/WHEEL +0 -0
  1090. {synth_ai-0.2.14.dist-info → synth_ai-0.4.1.dist-info}/entry_points.txt +0 -0
  1091. {synth_ai-0.2.14.dist-info → synth_ai-0.4.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,2160 +0,0 @@
1
- from __future__ import annotations
2
-
3
- import contextlib
4
- import json
5
- import logging
6
- import os
7
- import time as _time
8
- from datetime import datetime
9
- from typing import Any, Mapping
10
-
11
- from fastapi import APIRouter, HTTPException, Request, status
12
- from pydantic import BaseModel, Field
13
- from synth_ai.lm.vendors.base import BaseLMResponse
14
- from synth_ai.task.tracing_utils import unique_sft_path
15
- from synth_ai.tracing_v3.abstractions import EnvironmentEvent, LMCAISEvent, TimeRecord
16
- from synth_ai.task.contracts import RolloutMode
17
- from synth_ai.tracing_v3.llm_call_record_helpers import create_llm_call_record_from_response
18
- from synth_ai.tracing_v3.session_tracer import SessionTracer
19
-
20
- from .registry import registry
21
-
22
- logger = logging.getLogger(__name__)
23
-
24
-
25
- # --- Seeding utilities (robust, optional deps) ---
26
- def _set_global_seed(seed_value: int) -> dict[str, Any]:
27
- """Set global RNG seeds across common libraries; return details for logging/restoration.
28
-
29
- Returns a dict containing which libraries were seeded and prior states if obtainable.
30
- """
31
- seeded: dict[str, Any] = {"seed": int(seed_value), "libs": []}
32
- with contextlib.suppress(Exception):
33
- import random as _random # type: ignore
34
-
35
- _random.seed(seed_value)
36
- seeded["libs"].append("random")
37
- with contextlib.suppress(Exception):
38
- import numpy as _np # type: ignore
39
-
40
- _np.random.seed(seed_value)
41
- seeded["libs"].append("numpy")
42
- with contextlib.suppress(Exception):
43
- import torch as _torch # type: ignore
44
-
45
- if hasattr(_torch, "manual_seed"):
46
- _torch.manual_seed(seed_value)
47
- seeded["libs"].append("torch")
48
- # Make CUDA deterministic if present (best-effort)
49
- with contextlib.suppress(Exception):
50
- if getattr(_torch, "cuda", None) and _torch.cuda.is_available():
51
- _torch.cuda.manual_seed_all(seed_value)
52
- seeded.setdefault("cuda", True)
53
- # CUDNN deterministic flags (optional)
54
- with contextlib.suppress(Exception):
55
- if getattr(_torch, "backends", None) and getattr(_torch.backends, "cudnn", None):
56
- _torch.backends.cudnn.deterministic = True # type: ignore[attr-defined]
57
- _torch.backends.cudnn.benchmark = False # type: ignore[attr-defined]
58
- return seeded
59
-
60
-
61
- def _clear_seed_side_effects() -> None:
62
- """Best-effort cleanup to avoid global deterministic side-effects between requests."""
63
- # We cannot truly restore prior RNG states without capturing them; we just avoid
64
- # leaving aggressive deterministic flags enabled where it matters.
65
- with contextlib.suppress(Exception):
66
- import torch as _torch # type: ignore
67
-
68
- with contextlib.suppress(Exception):
69
- if getattr(_torch, "backends", None) and getattr(_torch.backends, "cudnn", None):
70
- # Re-enable cudnn.benchmark default True only if it was True; safest is False -> leave as is.
71
- # We'll keep deterministic False to avoid global impact; benchmark left False for stability.
72
- _torch.backends.cudnn.deterministic = False # type: ignore[attr-defined]
73
-
74
-
75
- router = APIRouter()
76
-
77
-
78
- class RolloutEnvSpec(BaseModel):
79
- env_id: str | None = None
80
- env_name: str | None = None
81
- config: dict[str, Any] = {}
82
- seed: int | None = None
83
-
84
-
85
- class RolloutPolicySpec(BaseModel):
86
- policy_id: str | None = None
87
- policy_name: str | None = None
88
- config: dict[str, Any] = {}
89
-
90
-
91
- class RolloutBranchConfig(BaseModel):
92
- branch_every_n_steps: int = 0
93
- branch_on_condition: str | None = None
94
- max_branches: int = 0
95
- branch_policy: bool = False
96
- branch_env: bool = False
97
-
98
-
99
- class RolloutRecordConfig(BaseModel):
100
- trajectories: bool = True
101
- logprobs: bool = False
102
- value: bool = False
103
- return_trace: bool = False
104
- trace_format: str = "compact"
105
-
106
-
107
- class RolloutSafetyConfig(BaseModel):
108
- max_ops: int = 100000
109
- max_time_s: float = 3600.0
110
-
111
-
112
- class RolloutRequest(BaseModel):
113
- run_id: str
114
- env: RolloutEnvSpec
115
- policy: RolloutPolicySpec
116
- ops: list[str] # ["agent", "env", ...]
117
- record: RolloutRecordConfig = RolloutRecordConfig()
118
- on_done: str = "reset" # "reset" | "terminate"
119
- branch: RolloutBranchConfig | None = None
120
- safety: RolloutSafetyConfig = RolloutSafetyConfig()
121
- # Optional run/session context
122
- training_session_id: str | None = None
123
- synth_base_url: str | None = None
124
- # Mode controls URL transformation: REQUIRED to make intent explicit
125
- mode: RolloutMode
126
-
127
-
128
- class RolloutStep(BaseModel):
129
- obs: dict[str, Any]
130
- tool_calls: list[dict[str, Any]]
131
- reward: float | None = None
132
- done: bool = False
133
- truncated: bool | None = None
134
- logprob: float | None = None
135
- value: float | None = None
136
- info: dict[str, Any] | None = None
137
-
138
-
139
- class RolloutTrajectory(BaseModel):
140
- env_id: str
141
- policy_id: str
142
- steps: list[RolloutStep]
143
- final: dict[str, Any] | None = None
144
- length: int
145
- decision_samples: list[dict[str, Any]] | None = None
146
- inference_url: str | None = None
147
-
148
-
149
- def _normalize_step_strategy(raw_strategy: Any) -> str:
150
- if not isinstance(raw_strategy, str):
151
- return "consistent"
152
- candidate = raw_strategy.strip().lower()
153
- if not candidate:
154
- return "consistent"
155
- mapping = {
156
- "simple": "consistent",
157
- "consistent": "consistent",
158
- "consistent_stepwise": "consistent",
159
- "decision_consistent": "consistent",
160
- "per_achievement": "per_achievement",
161
- "per-achievement": "per_achievement",
162
- "perachievement": "per_achievement",
163
- "achievement_weighted": "per_achievement",
164
- "complex": "per_achievement",
165
- }
166
- return mapping.get(candidate, "consistent")
167
-
168
-
169
- def _coerce_weights(raw_weights: Any) -> dict[str, float]:
170
- weights: dict[str, float] = {}
171
- if isinstance(raw_weights, dict):
172
- for key, value in raw_weights.items():
173
- try:
174
- weights[str(key)] = float(value)
175
- except Exception:
176
- continue
177
- return weights
178
-
179
-
180
- def _coerce_k_limits(raw_limits: Any) -> dict[str, int]:
181
- limits: dict[str, int] = {}
182
- if isinstance(raw_limits, dict):
183
- for key, value in raw_limits.items():
184
- try:
185
- limits[str(key)] = int(value)
186
- except Exception:
187
- continue
188
- return limits
189
-
190
-
191
- def _coerce_int_value(value: Any) -> int | None:
192
- if isinstance(value, bool):
193
- return int(value)
194
- try:
195
- return int(value) # type: ignore[arg-type]
196
- except Exception:
197
- try:
198
- return int(float(value)) # type: ignore[arg-type]
199
- except Exception:
200
- return None
201
-
202
-
203
- def _compute_resource_reward(
204
- prev_inventory: Mapping[str, Any] | None,
205
- new_inventory: Mapping[str, Any] | None,
206
- prev_counts: Mapping[str, Any] | None,
207
- new_counts: Mapping[str, Any] | None,
208
- ) -> tuple[float, list[dict[str, Any]], dict[str, int], dict[str, int]]:
209
- reward_total = 0.0
210
- components: list[dict[str, Any]] = []
211
- inventory_deltas: dict[str, int] = {}
212
- achievement_deltas: dict[str, int] = {}
213
-
214
- resource_weights = {
215
- "wood": 0.10,
216
- "sapling": 0.08,
217
- "stone": 0.15,
218
- "coal": 0.18,
219
- "iron": 0.22,
220
- "plant": 0.06,
221
- "meat": 0.12,
222
- "drink": 0.07,
223
- "food": 0.07,
224
- "water": 0.07,
225
- "energy": 0.04,
226
- }
227
- tool_weights = {
228
- "wood_pickaxe": 0.40,
229
- "stone_pickaxe": 0.55,
230
- "iron_pickaxe": 0.75,
231
- "wood_sword": 0.35,
232
- "stone_sword": 0.50,
233
- "iron_sword": 0.70,
234
- "furnace": 0.45,
235
- "table": 0.30,
236
- "bow": 0.45,
237
- }
238
- achievement_weights = {
239
- "collect_wood": 0.08,
240
- "collect_sapling": 0.06,
241
- "collect_stone": 0.10,
242
- "collect_coal": 0.12,
243
- "collect_iron": 0.14,
244
- "collect_drink": 0.06,
245
- "collect_food": 0.06,
246
- "collect_plant": 0.06,
247
- }
248
- default_resource_weight = 0.05
249
- default_achievement_weight = 0.05
250
-
251
- prev_inv = prev_inventory or {}
252
- new_inv = new_inventory or {}
253
- for key, raw_value in new_inv.items():
254
- new_val = _coerce_int_value(raw_value)
255
- if new_val is None:
256
- continue
257
- prev_val = _coerce_int_value(prev_inv.get(key, 0)) or 0
258
- delta = new_val - prev_val
259
- if delta <= 0:
260
- continue
261
- weight = resource_weights.get(key)
262
- if weight is None and key in tool_weights:
263
- weight = tool_weights[key]
264
- if weight is None:
265
- weight = default_resource_weight
266
- gain = weight * delta
267
- reward_total += gain
268
- inventory_deltas[str(key)] = delta
269
- components.append(
270
- {
271
- "type": "inventory",
272
- "item": str(key),
273
- "delta": delta,
274
- "weight": weight,
275
- "reward": gain,
276
- }
277
- )
278
-
279
- prev_ct = prev_counts or {}
280
- new_ct = new_counts or {}
281
- for key, raw_value in new_ct.items():
282
- new_val = _coerce_int_value(raw_value)
283
- if new_val is None:
284
- continue
285
- prev_val = _coerce_int_value(prev_ct.get(key, 0)) or 0
286
- delta = new_val - prev_val
287
- if delta <= 0:
288
- continue
289
- weight = achievement_weights.get(key, default_achievement_weight)
290
- gain = weight * delta
291
- reward_total += gain
292
- achievement_deltas[str(key)] = delta
293
- components.append(
294
- {
295
- "type": "achievement_count",
296
- "name": str(key),
297
- "delta": delta,
298
- "weight": weight,
299
- "reward": gain,
300
- }
301
- )
302
-
303
- return reward_total, components, inventory_deltas, achievement_deltas
304
-
305
-
306
- def compute_stepwise_reward(
307
- prev_achievements: dict[str, bool],
308
- new_achievements: dict[str, bool],
309
- decision_index: int,
310
- actions_summary: list[dict[str, Any]],
311
- indicator_lambda: float,
312
- *,
313
- strategy: str | None = None,
314
- weights: dict[str, float] | None = None,
315
- k_limits: dict[str, int] | None = None,
316
- episode_counts: dict[str, int] | None = None,
317
- prev_inventory: dict[str, int] | None = None,
318
- new_inventory: dict[str, int] | None = None,
319
- prev_counts: dict[str, int] | None = None,
320
- new_counts: dict[str, int] | None = None,
321
- ) -> tuple[dict[str, Any], dict[str, Any], dict[str, float]]:
322
- """Compute stepwise reward metadata given achievement states before/after a decision."""
323
-
324
- prev_map = prev_achievements or {}
325
- next_map = new_achievements or {}
326
-
327
- unlocked = [name for name, value in next_map.items() if value and not prev_map.get(name, False)]
328
- indicator_from_achievements = 1 if unlocked else 0
329
- normalized_strategy = _normalize_step_strategy(strategy)
330
- base_reward = 0.0
331
- reward_components: list[dict[str, Any]] = []
332
- credited: list[str] = []
333
-
334
- if indicator_from_achievements:
335
- if normalized_strategy == "per_achievement":
336
- weight_map = weights or {}
337
- limit_map = k_limits or {}
338
- counts = episode_counts if isinstance(episode_counts, dict) else {}
339
- for name in unlocked:
340
- try:
341
- limit_val = int(limit_map.get(name, 1))
342
- except Exception:
343
- limit_val = 1
344
- # limit_val <= 0 implies unlimited rewards
345
- unlimited = limit_val <= 0
346
- try:
347
- prev_count = int(counts.get(name, 0))
348
- except Exception:
349
- prev_count = 0
350
- should_credit = unlimited or (prev_count < max(limit_val, 0))
351
- if should_credit:
352
- try:
353
- weight_val = float(weight_map.get(name, 1.0))
354
- except Exception:
355
- weight_val = 1.0
356
- base_reward += weight_val
357
- reward_components.append(
358
- {
359
- "achievement": name,
360
- "weight": weight_val,
361
- "count_prior": prev_count,
362
- "count_limit": limit_val,
363
- }
364
- )
365
- credited.append(name)
366
- if episode_counts is not None:
367
- episode_counts[name] = prev_count + 1
368
- else:
369
- base_reward = 1.0
370
- reward_components.append(
371
- {
372
- "achievement": "__indicator__",
373
- "weight": 1.0,
374
- "count_prior": 0,
375
- "count_limit": 1,
376
- }
377
- )
378
-
379
- resource_reward = 0.0
380
- resource_components: list[dict[str, Any]] = []
381
- inventory_deltas: dict[str, int] = {}
382
- achievement_deltas: dict[str, int] = {}
383
- if normalized_strategy == "per_achievement":
384
- (
385
- resource_reward,
386
- resource_components,
387
- inventory_deltas,
388
- achievement_deltas,
389
- ) = _compute_resource_reward(prev_inventory, new_inventory, prev_counts, new_counts)
390
- if resource_components:
391
- reward_components.extend(resource_components)
392
- base_reward += resource_reward
393
-
394
- indicator = 1 if base_reward > 0 else 0
395
- if indicator == 0 and indicator_from_achievements:
396
- indicator = indicator_from_achievements
397
- lambda_effective = indicator_lambda if indicator_lambda not in (None, 0) else 1.0
398
- reward_value = float(lambda_effective) * float(base_reward)
399
-
400
- stepwise_info = {
401
- "decision_index": decision_index,
402
- "indicator": indicator,
403
- "new_achievements": unlocked,
404
- "reward": reward_value,
405
- "strategy": normalized_strategy,
406
- "base_reward": float(base_reward),
407
- }
408
- if indicator_from_achievements and not unlocked:
409
- stepwise_info["indicator_from_achievements"] = indicator_from_achievements
410
- if reward_components:
411
- stepwise_info["components"] = reward_components
412
- if credited:
413
- stepwise_info["credited_achievements"] = credited
414
- if resource_reward:
415
- stepwise_info["resource_reward"] = float(resource_reward)
416
- if inventory_deltas:
417
- stepwise_info["inventory_deltas"] = inventory_deltas
418
- if achievement_deltas:
419
- stepwise_info["achievement_count_deltas"] = achievement_deltas
420
-
421
- decision_sample = {
422
- "decision_index": decision_index,
423
- "indicator": indicator,
424
- "r_i": reward_value,
425
- "base": float(base_reward),
426
- "strategy": normalized_strategy,
427
- "actions": actions_summary,
428
- }
429
- if reward_components:
430
- decision_sample["components"] = reward_components
431
- if resource_reward:
432
- decision_sample["resource_reward"] = float(resource_reward)
433
-
434
- stats = {
435
- "indicator": float(indicator),
436
- "reward": reward_value,
437
- "new_achievements_count": float(len(unlocked)),
438
- "base_reward": float(base_reward),
439
- "credited_achievements_count": float(len(credited)),
440
- }
441
- if resource_reward:
442
- stats["resource_reward"] = float(resource_reward)
443
- return stepwise_info, decision_sample, stats
444
-
445
-
446
- class RolloutMetrics(BaseModel):
447
- episode_returns: list[float]
448
- mean_return: float
449
- num_steps: int
450
- num_episodes: int = 0
451
- outcome_score: float | None = None
452
- events_score: float | None = None
453
- details: dict[str, Any] = Field(default_factory=dict)
454
-
455
-
456
- class RolloutResponse(BaseModel):
457
- run_id: str
458
- trajectories: list[RolloutTrajectory]
459
- branches: dict[str, list[str]] = Field(default_factory=dict)
460
- metrics: RolloutMetrics
461
- aborted: bool = False
462
- ops_executed: int = 0
463
- trace: dict[str, Any] | None = None
464
- pipeline_metadata: dict[str, Any] = Field(default_factory=dict)
465
-
466
-
467
- class RolloutTracingContext:
468
- """Helper managing tracing_v3 recording and optional SFT dumps for a rollout."""
469
-
470
- def __init__(
471
- self,
472
- tracer: SessionTracer | None,
473
- request: RolloutRequest,
474
- fastapi_request: Request,
475
- ) -> None:
476
- self.tracer = tracer
477
- self.enabled = tracer is not None
478
- self.request = request
479
- self.fastapi_request = fastapi_request
480
- self.run_id = request.run_id
481
- self.current_step_id: str | None = None
482
- self.current_turn: int | None = None
483
- self.lm_calls_summary: list[dict[str, Any]] = []
484
- self.decision_rewards: list[dict[str, Any]] = []
485
- self.sft_records: list[dict[str, Any]] = []
486
- self.latest_system_messages: list[str] = []
487
- self.latest_user_messages: list[str] = []
488
- self.latest_system_prompt_content: list[Any] = []
489
- self.latest_user_prompt_content: list[Any] = []
490
- self.trace_format = (
491
- getattr(request.record, "trace_format", "compact") or "compact"
492
- ).lower()
493
- self.return_trace = bool(getattr(request.record, "return_trace", False))
494
- self.sft_output_dir = getattr(fastapi_request.app.state, "sft_output_dir", None)
495
- self.session_trace = None
496
- self.metadata_updates: dict[str, Any] = {}
497
- self.policy_name = request.policy.policy_name or ""
498
- self.env_name = request.env.env_name or ""
499
- self.metadata_base: dict[str, Any] = {
500
- "run_id": self.run_id,
501
- "policy_name": self.policy_name,
502
- "policy_id": request.policy.policy_id,
503
- "env_name": self.env_name,
504
- "env_id": request.env.env_id,
505
- "seed": request.env.seed,
506
- "training_session_id": request.training_session_id,
507
- "synth_base_url": request.synth_base_url,
508
- }
509
-
510
- # Expose context for downstream calls inside this request lifecycle
511
- fastapi_request.state.rollout_tracing = self
512
- fastapi_request.state.rollout_run_id = self.run_id
513
-
514
- async def start_session(self) -> None:
515
- if not self.enabled or self.tracer is None:
516
- return
517
- try:
518
- await self.tracer.initialize()
519
- except Exception as exc:
520
- logger.debug("TRACING_INIT_FAIL: %s", exc)
521
- try:
522
- await self.tracer.start_session(
523
- session_id=self.run_id, metadata=dict(self.metadata_base)
524
- )
525
- except Exception as exc:
526
- logger.info("TRACING_START_FAIL: %s", exc)
527
- self.enabled = False
528
- self.tracer = None
529
-
530
- async def start_decision(self, turn_number: int) -> None:
531
- self.current_turn = turn_number
532
- self.current_step_id = f"decision_{turn_number}"
533
- if not self.enabled or self.tracer is None:
534
- return
535
- try:
536
- await self.tracer.start_timestep(step_id=self.current_step_id, turn_number=turn_number)
537
- except Exception as exc:
538
- logger.debug("TRACING_STEP_START_FAIL: %s", exc)
539
-
540
- async def end_decision(self) -> None:
541
- if not self.enabled or self.tracer is None:
542
- return
543
- try:
544
- await self.tracer.end_timestep(step_id=self.current_step_id)
545
- except Exception as exc:
546
- logger.debug("TRACING_STEP_END_FAIL: %s", exc)
547
- finally:
548
- self.current_step_id = None
549
-
550
- def _message_metadata(self) -> dict[str, Any]:
551
- return {
552
- "turn": self.current_turn,
553
- "step_id": self.current_step_id,
554
- }
555
-
556
- async def record_policy_prompts(
557
- self,
558
- system_messages: list[Any],
559
- user_messages: list[Any],
560
- ) -> None:
561
- self.latest_system_messages = [self._prompt_text(entry) for entry in system_messages]
562
- self.latest_user_messages = [self._prompt_text(entry) for entry in user_messages]
563
- self.latest_system_prompt_content = [
564
- self._prompt_content(entry, role="system") for entry in system_messages
565
- ]
566
- self.latest_user_prompt_content = [
567
- self._prompt_content(entry, role="user") for entry in user_messages
568
- ]
569
- if not self.enabled or self.tracer is None:
570
- return
571
- for entry in system_messages:
572
- try:
573
- await self.tracer.record_message(
574
- content=self._prompt_payload(entry, role="system"),
575
- message_type="system", # Use standard message type
576
- metadata=self._message_metadata(),
577
- )
578
- except Exception as exc:
579
- logger.debug("TRACING_SYSTEM_MSG_FAIL: %s", exc)
580
- for entry in user_messages:
581
- try:
582
- await self.tracer.record_message(
583
- content=self._prompt_payload(entry, role="user"),
584
- message_type="user", # Use standard message type
585
- metadata=self._message_metadata(),
586
- )
587
- except Exception as exc:
588
- logger.debug("TRACING_USER_MSG_FAIL: %s", exc)
589
-
590
- # Debug: Check message count
591
- if self.tracer and self.tracer._current_trace:
592
- msg_count = len(self.tracer._current_trace.markov_blanket_message_history)
593
- logger.info(f"[TRACE_DEBUG] After record_policy_prompts: {msg_count} messages in trace")
594
-
595
- def _content_to_text(self, content: Any) -> str:
596
- if isinstance(content, str):
597
- return content
598
- if isinstance(content, list):
599
- parts: list[str] = []
600
- for seg in content:
601
- if isinstance(seg, dict):
602
- text_val = seg.get("text") or seg.get("content")
603
- if isinstance(text_val, str):
604
- parts.append(text_val)
605
- return "".join(parts)
606
- if content is None:
607
- return ""
608
- return str(content)
609
-
610
- def _prompt_text(self, entry: Any) -> str:
611
- if isinstance(entry, dict):
612
- text = entry.get("text")
613
- if isinstance(text, str):
614
- return text
615
- content = entry.get("content")
616
- return self._content_to_text(content)
617
- return self._content_to_text(entry)
618
-
619
- def _prompt_payload(self, entry: Any, *, role: str) -> dict[str, Any]:
620
- if isinstance(entry, dict):
621
- payload = dict(entry)
622
- payload.setdefault("role", role)
623
- return payload
624
- return {
625
- "role": role,
626
- "text": self._prompt_text(entry),
627
- "content": entry,
628
- }
629
-
630
- def _prompt_content(self, entry: Any, *, role: str) -> Any:
631
- payload = self._prompt_payload(entry, role=role)
632
- return payload.get("content", payload.get("text"))
633
-
634
- def _content_has_image(self, content: Any) -> bool:
635
- if isinstance(content, list):
636
- return any(
637
- isinstance(seg, dict)
638
- and seg.get("type") in {"image", "image_url"}
639
- for seg in content
640
- )
641
- if isinstance(content, dict):
642
- if content.get("type") in {"image", "image_url"}:
643
- return True
644
- inner = content.get("content")
645
- if isinstance(inner, list):
646
- return any(
647
- isinstance(seg, dict)
648
- and seg.get("type") in {"image", "image_url"}
649
- for seg in inner
650
- )
651
- return False
652
-
653
- def _safe_json(self, payload: Any, limit: int = 4000) -> str:
654
- try:
655
- text = json.dumps(payload, ensure_ascii=False)
656
- except Exception:
657
- text = str(payload)
658
- if len(text) > limit:
659
- return text[:limit] + "…"
660
- return text
661
-
662
- async def record_tool_invocation(self, tool_calls: list[dict[str, Any]] | None) -> None:
663
- if tool_calls is None:
664
- return
665
- if self.enabled and self.tracer is not None:
666
- try:
667
- await self.tracer.record_message(
668
- content=self._safe_json(tool_calls),
669
- message_type="assistant", # Map to standard assistant message type
670
- metadata={**self._message_metadata(), "is_tool_call": True},
671
- )
672
- except Exception as exc:
673
- logger.debug("TRACING_TOOL_MSG_FAIL: %s", exc)
674
-
675
- async def _record_event(self, event: Any) -> int | None:
676
- if not self.enabled or self.tracer is None:
677
- return None
678
- try:
679
- return await self.tracer.record_event(event)
680
- except Exception as exc:
681
- logger.debug("TRACING_EVENT_FAIL: %s", exc)
682
- return None
683
-
684
- async def record_llm_call(
685
- self,
686
- *,
687
- inference_request: dict[str, Any],
688
- inference_response: dict[str, Any],
689
- tool_calls: list[dict[str, Any]] | None,
690
- provider: str,
691
- model_name: str,
692
- started_at: datetime,
693
- completed_at: datetime,
694
- latency_ms: int | None,
695
- ) -> None:
696
- usage = inference_response.get("usage") or {}
697
- input_tokens = usage.get("input_tokens") or usage.get("prompt_tokens")
698
- output_tokens = usage.get("output_tokens") or usage.get("completion_tokens")
699
- total_tokens = usage.get("total_tokens")
700
- cost_usd = usage.get("cost_usd") or usage.get("cost") or usage.get("total_cost")
701
-
702
- assistant_message = None
703
- choices = inference_response.get("choices") or []
704
- if choices:
705
- assistant_message = choices[0].get("message") or {}
706
- assistant_content = (
707
- assistant_message.get("content") if isinstance(assistant_message, dict) else None
708
- )
709
-
710
- raw_response = self._content_to_text(assistant_content)
711
- if not raw_response:
712
- raw_response = self._safe_json(inference_response, limit=2000)
713
-
714
- base_response = BaseLMResponse(
715
- raw_response=raw_response,
716
- tool_calls=assistant_message.get("tool_calls")
717
- if isinstance(assistant_message, dict)
718
- else None,
719
- usage=usage or None,
720
- api_type="chat_completions",
721
- )
722
-
723
- request_messages = inference_request.get("messages") or []
724
- try:
725
- temperature = float(inference_request.get("temperature"))
726
- except Exception:
727
- temperature = 0.0
728
-
729
- call_record = create_llm_call_record_from_response(
730
- response=base_response,
731
- model_name=model_name,
732
- provider=provider,
733
- messages=request_messages,
734
- temperature=temperature,
735
- request_params=inference_request,
736
- tools=inference_request.get("tools"),
737
- started_at=started_at,
738
- completed_at=completed_at,
739
- latency_ms=latency_ms,
740
- )
741
-
742
- event_metadata = {
743
- "policy_id": self.request.policy.policy_id,
744
- "turn": self.current_turn,
745
- "run_id": self.run_id,
746
- }
747
-
748
- event = LMCAISEvent(
749
- system_instance_id=f"policy:{self.policy_name or 'unknown'}",
750
- time_record=TimeRecord(event_time=completed_at.timestamp()),
751
- model_name=model_name,
752
- provider=provider,
753
- input_tokens=input_tokens,
754
- output_tokens=output_tokens,
755
- total_tokens=total_tokens,
756
- cost_usd=cost_usd,
757
- latency_ms=latency_ms,
758
- call_records=[call_record],
759
- metadata=event_metadata,
760
- )
761
-
762
- await self._record_event(event)
763
-
764
- self.lm_calls_summary.append(
765
- {
766
- "turn": self.current_turn,
767
- "model": model_name,
768
- "provider": provider,
769
- "total_tokens": total_tokens,
770
- "input_tokens": input_tokens,
771
- "output_tokens": output_tokens,
772
- "latency_ms": latency_ms,
773
- "tool_calls": len(tool_calls or []),
774
- }
775
- )
776
-
777
- if self.sft_output_dir is not None:
778
- assistant_structured = assistant_content if assistant_content is not None else ""
779
- assistant_text = self._content_to_text(assistant_content)
780
- dialogue_structured: list[dict[str, Any]] = []
781
- for content in self.latest_system_prompt_content:
782
- if content is None:
783
- continue
784
- dialogue_structured.append({"role": "system", "content": content})
785
- for content in self.latest_user_prompt_content:
786
- if content is None:
787
- continue
788
- dialogue_structured.append({"role": "user", "content": content})
789
- dialogue_text = (
790
- [{"role": "system", "content": s} for s in self.latest_system_messages]
791
- + [{"role": "user", "content": u} for u in self.latest_user_messages]
792
- )
793
- user_has_image = any(
794
- self._content_has_image(content) for content in self.latest_user_prompt_content
795
- )
796
- assistant_has_image = self._content_has_image(assistant_structured)
797
- record = {
798
- "run_id": self.run_id,
799
- "turn": self.current_turn,
800
- "model": model_name,
801
- "provider": provider,
802
- "dialogue": dialogue_structured,
803
- "dialogue_text": dialogue_text,
804
- "assistant": {
805
- "content": assistant_structured,
806
- "content_text": assistant_text,
807
- "tool_calls": assistant_message.get("tool_calls")
808
- if isinstance(assistant_message, dict)
809
- else [],
810
- "has_image": assistant_has_image,
811
- },
812
- "metadata": {
813
- "user_has_image": user_has_image,
814
- "assistant_has_image": assistant_has_image,
815
- "has_image": user_has_image or assistant_has_image,
816
- },
817
- "timestamp": datetime.utcnow().isoformat(),
818
- }
819
- self.sft_records.append(record)
820
-
821
- async def record_environment_event(
822
- self,
823
- *,
824
- env_handle: Any,
825
- prev_obs: dict[str, Any] | None,
826
- env_response: Any,
827
- next_obs: dict[str, Any] | None,
828
- metadata: dict[str, Any] | None = None,
829
- ) -> int | None:
830
- if not self.enabled or self.tracer is None:
831
- return None
832
-
833
- try:
834
- prev_summary = (
835
- _summarize_observation_for_storage(env_handle, prev_obs or {})
836
- if prev_obs is not None
837
- else None
838
- )
839
- except Exception:
840
- prev_summary = None
841
- try:
842
- next_summary = (
843
- _summarize_observation_for_storage(env_handle, next_obs or {})
844
- if next_obs is not None
845
- else None
846
- )
847
- except Exception:
848
- next_summary = None
849
-
850
- reward_val = getattr(env_response, "reward", None)
851
- try:
852
- reward_float = float(reward_val) if reward_val is not None else 0.0
853
- except Exception:
854
- reward_float = 0.0
855
-
856
- event = EnvironmentEvent(
857
- system_instance_id=f"environment:{self.env_name or 'unknown'}",
858
- time_record=TimeRecord(event_time=datetime.utcnow().timestamp()),
859
- reward=reward_float,
860
- terminated=bool(getattr(env_response, "done", False)),
861
- truncated=bool(getattr(env_response, "truncated", False)),
862
- system_state_before=prev_summary,
863
- system_state_after=next_summary,
864
- metadata={
865
- "turn": self.current_turn,
866
- "run_id": self.run_id,
867
- **(metadata or {}),
868
- },
869
- )
870
-
871
- return await self._record_event(event)
872
-
873
- async def record_decision_reward(
874
- self,
875
- *,
876
- event_id: int | None,
877
- decision_meta: dict[str, Any] | None,
878
- ) -> None:
879
- decision_meta = decision_meta or {}
880
- ach_delta = int(decision_meta.get("ach_delta", 0))
881
- unique_delta = int(decision_meta.get("unique_delta", 0))
882
- all_ach = list(decision_meta.get("all") or [])
883
- unique_ach = list(decision_meta.get("unique") or [])
884
-
885
- self.decision_rewards.append(
886
- {
887
- "turn": self.current_turn,
888
- "ach_delta": ach_delta,
889
- "unique_delta": unique_delta,
890
- "achievements": all_ach,
891
- "unique_achievements": unique_ach,
892
- }
893
- )
894
-
895
- if not self.enabled or self.tracer is None or event_id is None:
896
- return
897
- try:
898
- await self.tracer.record_event_reward(
899
- event_id=event_id,
900
- turn_number=self.current_turn,
901
- reward_value=float(ach_delta),
902
- reward_type="achievement_delta",
903
- annotation={"achievements": all_ach},
904
- source="environment",
905
- )
906
- if unique_delta:
907
- await self.tracer.record_event_reward(
908
- event_id=event_id,
909
- turn_number=self.current_turn,
910
- reward_value=float(unique_delta),
911
- reward_type="unique_achievement_delta",
912
- annotation={"achievements": unique_ach},
913
- source="environment",
914
- )
915
- except Exception as exc:
916
- logger.debug("TRACING_REWARD_FAIL: %s", exc)
917
-
918
- def update_metadata(self, **kwargs: Any) -> None:
919
- self.metadata_updates.update({k: v for k, v in kwargs.items() if v is not None})
920
-
921
- async def finalize(
922
- self,
923
- *,
924
- total_reward: float,
925
- achievement_state: dict[str, bool] | None,
926
- total_steps: int,
927
- ) -> Any:
928
- final_achievements = [key for key, val in (achievement_state or {}).items() if val]
929
- self.metadata_updates.setdefault("final_achievements", final_achievements)
930
- if self.enabled and self.tracer is not None:
931
- try:
932
- await self.tracer.record_outcome_reward(
933
- total_reward=int(total_reward),
934
- achievements_count=len(final_achievements),
935
- total_steps=int(total_steps),
936
- reward_metadata=dict(self.metadata_updates),
937
- )
938
- except Exception as exc:
939
- logger.debug("TRACING_OUTCOME_FAIL: %s", exc)
940
- try:
941
- # Debug: Check message count before end_session
942
- if self.tracer._current_trace:
943
- msg_count = len(self.tracer._current_trace.markov_blanket_message_history)
944
- logger.info(f"[TRACE_DEBUG] Before end_session: {msg_count} messages in trace")
945
-
946
- self.session_trace = await self.tracer.end_session()
947
-
948
- # Debug: Check if session was saved
949
- if self.session_trace:
950
- logger.info(f"[TRACE_DEBUG] Session ended successfully, session_id={self.session_trace.session_id}")
951
- self.session_trace.metadata.update(self.metadata_updates)
952
- logger.info(f"[TRACE_DEBUG] session_trace.metadata keys: {list(self.session_trace.metadata.keys())}")
953
- else:
954
- logger.warning("[TRACE_DEBUG] end_session returned None!")
955
- except Exception as exc:
956
- logger.warning(f"TRACING_END_SESSION_FAIL: {exc}", exc_info=True)
957
- self.session_trace = None
958
- with contextlib.suppress(Exception):
959
- await self.tracer.close()
960
-
961
- if self.sft_records and self.sft_output_dir:
962
- self.write_sft_records()
963
-
964
- # Clear context from request state to avoid leaks
965
- self.fastapi_request.state.rollout_tracing = None
966
-
967
- return self.session_trace
968
-
969
- def write_sft_records(self) -> None:
970
- if not self.sft_output_dir or not self.sft_records:
971
- return
972
- try:
973
- path = unique_sft_path(self.sft_output_dir, run_id=self.run_id)
974
- path.parent.mkdir(parents=True, exist_ok=True)
975
- with path.open("w", encoding="utf-8") as fh:
976
- for record in self.sft_records:
977
- json.dump(record, fh, ensure_ascii=False)
978
- fh.write("\n")
979
- logger.info(f"SFT_WRITTEN: {path}")
980
- except Exception as exc:
981
- logger.warning(f"SFT_WRITE_FAIL: {exc}")
982
- finally:
983
- self.sft_records.clear()
984
-
985
- def build_trace_payload(self, session_trace: Any) -> dict[str, Any] | None:
986
- if not self.return_trace or session_trace is None:
987
- return None
988
- if self.trace_format == "full":
989
- payload = session_trace.to_dict()
990
- payload.setdefault("metadata", {}).update(self.metadata_updates)
991
- return payload
992
- metadata = dict(session_trace.metadata)
993
- metadata.update(self.metadata_updates)
994
- return {
995
- "session_id": session_trace.session_id,
996
- "created_at": session_trace.created_at.isoformat(),
997
- "metadata": metadata,
998
- "events_count": len(session_trace.event_history),
999
- "messages_count": len(session_trace.markov_blanket_message_history),
1000
- "lm_calls": self.lm_calls_summary,
1001
- "decision_rewards": self.decision_rewards,
1002
- }
1003
-
1004
-
1005
- def _summarize_observation_for_storage(
1006
- env_handle: Any, observation: dict[str, Any]
1007
- ) -> dict[str, Any]:
1008
- """Return a compact dict for trajectory storage instead of the raw observation.
1009
-
1010
- - For Crafter, use the same summary used for the policy user prompt
1011
- - For others, keep a minimal subset or plain text preview
1012
- """
1013
- # Try Crafter-specific formatter
1014
- crafter_wrapper = None
1015
- with contextlib.suppress(Exception):
1016
- from .envs.crafter.environment import (
1017
- CrafterEnvironmentWrapper as _CrafterWrapper, # type: ignore
1018
- )
1019
-
1020
- crafter_wrapper = _CrafterWrapper # type: ignore[assignment]
1021
-
1022
- if crafter_wrapper is not None and isinstance(
1023
- getattr(env_handle, "env", None), crafter_wrapper
1024
- ):
1025
- with contextlib.suppress(Exception):
1026
- from .envs.crafter.shared import format_observation as _fmt # type: ignore
1027
-
1028
- text = _fmt(observation or {})
1029
- return {"text": text}
1030
-
1031
- # Generic fallback: extract a few small fields if present; avoid huge arrays
1032
- with contextlib.suppress(Exception):
1033
- inv = observation.get("inventory") if isinstance(observation, dict) else None
1034
- ach = observation.get("achievements_status") if isinstance(observation, dict) else None
1035
- pos = observation.get("player_position") if isinstance(observation, dict) else None
1036
- health = None
1037
- if isinstance(inv, dict):
1038
- health = inv.get("health")
1039
- summary = {
1040
- "position": pos,
1041
- "health": health,
1042
- "inventory_keys": sorted(k for k, v in (inv or {}).items() if v)[:10]
1043
- if isinstance(inv, dict)
1044
- else None,
1045
- "achievements_unlocked": sorted(k for k, v in (ach or {}).items() if v)[:10]
1046
- if isinstance(ach, dict)
1047
- else None,
1048
- }
1049
- return {"text": json.dumps(summary, ensure_ascii=False)}
1050
-
1051
- # Last resort: plain string preview
1052
- try:
1053
- return {"text": str(observation)[:10000]}
1054
- except Exception:
1055
- return {"text": ""}
1056
-
1057
-
1058
- class RunAbortRequest(BaseModel):
1059
- run_id: str
1060
-
1061
-
1062
- class RunAbortResponse(BaseModel):
1063
- ok: bool
1064
- run_id: str
1065
-
1066
-
1067
- class RunStatusResponse(BaseModel):
1068
- run_id: str
1069
- status: str
1070
- started_at: datetime
1071
- finished_at: datetime | None = None
1072
-
1073
-
1074
- @router.post("/rollout", response_model=RolloutResponse)
1075
- async def execute_rollout(
1076
- request: RolloutRequest,
1077
- req: Request,
1078
- ) -> RolloutResponse:
1079
- """Execute a rollout with coordinated environment and policy steps."""
1080
- logger.info("ROLLOUT: mode = %s", request.mode)
1081
-
1082
- # Emit rollout identifier early for correlation
1083
- with contextlib.suppress(Exception):
1084
- _rid = getattr(request, "run_id", None)
1085
- _pol = getattr(request.policy, "policy_name", None) or getattr(request.policy, "policy_id", None)
1086
- _env = getattr(request.env, "env_name", None) or getattr(request.env, "env_id", None)
1087
- logger.info("ROLLOUT_BEGIN: run_id=%s policy=%s env=%s mode=%s", _rid, _pol, _env, request.mode)
1088
- print(f"[rollout] begin run_id={_rid} policy={_pol} env={_env}", flush=True)
1089
- # Enforce per-episode step cap via env-specific parameters; default to 20 if omitted
1090
- try:
1091
- _env_params = {}
1092
- if isinstance(request.env, RolloutEnvSpec) and isinstance(request.env.config, dict):
1093
- _env_params = dict(request.env.config.get("env_params") or {})
1094
- max_steps_per_episode = int(_env_params.get("max_steps_per_episode") or 20)
1095
- assert max_steps_per_episode > 0, "max_steps_per_episode must be a positive integer"
1096
- except Exception as _mse:
1097
- raise HTTPException(
1098
- status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
1099
- detail={
1100
- "error": "invalid_env_params",
1101
- "message": f"Invalid or missing env_params.max_steps_per_episode: {_mse}",
1102
- },
1103
- ) from _mse
1104
- # Truncate incoming ops to the enforced cap (each step is [agent, env])
1105
- ops_seq: list[str] = list(request.ops or [])
1106
- allowed_ops = max(0, int(max_steps_per_episode) * 2)
1107
- if len(ops_seq) > allowed_ops:
1108
- with contextlib.suppress(Exception):
1109
- logger.info(
1110
- "ROLL_OUT: truncating ops to cap: requested_ops=%s allowed_ops=%s",
1111
- str(len(ops_seq)),
1112
- str(allowed_ops),
1113
- )
1114
- ops_seq = ops_seq[:allowed_ops]
1115
- # Simple API key auth for inbound rollout
1116
- header_key = req.headers.get("x-api-key")
1117
- env_key = os.getenv("ENVIRONMENT_API_KEY")
1118
- dev_key = os.getenv("DEV_ENVIRONMENT_API_KEY")
1119
- # Accept either ENVIRONMENT_API_KEY or DEV_ENVIRONMENT_API_KEY
1120
- expected_keys = [k for k in (env_key, dev_key) if k]
1121
- if not expected_keys:
1122
- missing = []
1123
- if not env_key:
1124
- missing.append("ENVIRONMENT_API_KEY")
1125
- if not dev_key:
1126
- missing.append("DEV_ENVIRONMENT_API_KEY")
1127
- msg = f"Auth not configured: missing {', '.join(missing)} in task service environment"
1128
- logger.error(msg)
1129
- raise HTTPException(status_code=status.HTTP_503_SERVICE_UNAVAILABLE, detail=msg)
1130
- if not header_key:
1131
- raise HTTPException(
1132
- status_code=status.HTTP_401_UNAUTHORIZED,
1133
- detail="Invalid or missing API key: X-API-Key header not provided",
1134
- )
1135
- if header_key not in expected_keys:
1136
- # Do not leak secrets; include short prefix for diagnostics
1137
- exp_src = env_key if env_key else (dev_key or "")
1138
- exp_prefix = (exp_src[:7] + "…") if len(exp_src) >= 7 else "set"
1139
- got_prefix = (header_key[:7] + "…") if len(header_key) >= 7 else "set"
1140
- raise HTTPException(
1141
- status_code=status.HTTP_401_UNAUTHORIZED,
1142
- detail=f"Invalid API key: header does not match expected (got={got_prefix}, expected_prefix={exp_prefix})",
1143
- )
1144
-
1145
- # Log contextual fields for traceability
1146
- if request.training_session_id:
1147
- logger.info(f"ROLL_OUT: training_session_id={request.training_session_id}")
1148
- if request.synth_base_url:
1149
- logger.info(f"ROLL_OUT: synth_base_url={request.synth_base_url}")
1150
-
1151
- # Log masked OpenAI API key presence for diagnostics
1152
- with contextlib.suppress(Exception):
1153
- _oa = os.getenv("OPENAI_API_KEY")
1154
- if _oa:
1155
- _pref = (_oa[:6] + "…") if len(_oa) >= 6 else "set"
1156
- logger.info(f"ROLL_OUT: OPENAI_API_KEY present (prefix={_pref})")
1157
- else:
1158
- logger.warning("ROLL_OUT: OPENAI_API_KEY missing")
1159
-
1160
- # Make synth_base_url available for outbound calls in this app
1161
- with contextlib.suppress(Exception):
1162
- task_app = req.app.state.task_app
1163
- if request.synth_base_url:
1164
- task_app.synth_base_url = request.synth_base_url
1165
-
1166
- tracer_factory = getattr(req.app.state, "session_tracer_factory", None)
1167
- tracer_instance: SessionTracer | None = None
1168
- if callable(tracer_factory):
1169
- try:
1170
- inst = tracer_factory()
1171
- tracer_instance = inst if isinstance(inst, SessionTracer) else None
1172
- except Exception as exc:
1173
- logger.debug(f"TRACER_FACTORY_FAIL: {exc}")
1174
- tracing_context = RolloutTracingContext(tracer_instance, request, req)
1175
- await tracing_context.start_session()
1176
- # Print whether tracing is active for this rollout
1177
- try:
1178
- print(
1179
- f"[rollout] tracing enabled={bool(tracing_context.enabled)} run_id={request.run_id}",
1180
- flush=True,
1181
- )
1182
- except Exception:
1183
- pass
1184
-
1185
- # Register run
1186
- registry.register_run(request.run_id)
1187
-
1188
- # Track resources created during this rollout so we can guarantee cleanup
1189
- created_env_id: str | None = None
1190
- created_policy_id: str | None = None
1191
- env_seed_used: int | None = None
1192
- trajectory_steps: list[RolloutStep] = []
1193
- decision_samples: list[dict[str, Any]] = []
1194
- pending_tool_calls: Any = None
1195
- current_obs: Any = {}
1196
- total_reward: float = 0.0
1197
- ops_executed = 0
1198
- last_agent_response_ts: float | None = None
1199
- last_policy_meta: dict[str, Any] | None = None
1200
- last_env_step_ms: float | None = None
1201
- last_env_step_completed_ts: float | None = None
1202
- decision_open = False
1203
- finalized = False
1204
- prev_achievements: dict[str, bool] = {}
1205
- session_trace = None
1206
- step_rewards_active = False
1207
-
1208
- try:
1209
- # Initialize deterministic seed early for the entire rollout
1210
- seed_value: int | None = None
1211
- try:
1212
- if request.env and request.env.seed is not None:
1213
- seed_value = int(request.env.seed)
1214
- else:
1215
- # Derive a stable seed from run_id
1216
- import hashlib as _hashlib # local import to avoid global deps
1217
-
1218
- _digest = _hashlib.sha256(request.run_id.encode("utf-8")).hexdigest()
1219
- # Use lower 32 bits to fit common RNG ranges
1220
- seed_value = int(_digest[:8], 16)
1221
- except Exception:
1222
- # Fallback to time-based seed if anything goes wrong
1223
- try:
1224
- seed_value = int((_time.time_ns() // 1_000_000) % (2**31 - 1))
1225
- except Exception:
1226
- seed_value = 42
1227
-
1228
- _seed_info = _set_global_seed(int(seed_value))
1229
- with contextlib.suppress(Exception):
1230
- logger.info(
1231
- "ROLL_OUT: RNG seeded seed=%s libs=%s",
1232
- str(_seed_info.get("seed")),
1233
- ",".join(_seed_info.get("libs", [])),
1234
- )
1235
- # Resolve or create environment
1236
- if request.env.env_id:
1237
- env_handle = registry.get_env(request.env.env_id)
1238
- if not env_handle:
1239
- raise HTTPException(
1240
- status_code=404,
1241
- detail=f"Environment {request.env.env_id} not found",
1242
- )
1243
- env_id = request.env.env_id
1244
- else:
1245
- # Create new environment
1246
- from .environment_routes import EnvCreateRequest, create_environment
1247
-
1248
- if not request.env.env_name:
1249
- raise ValueError("FATAL: env_name is required - NO FALLBACKS!")
1250
-
1251
- # Propagate training_session_id via env config for downstream usage
1252
- _env_config = dict(request.env.config or {})
1253
- if request.training_session_id is not None:
1254
- _env_config.setdefault("training_session_id", request.training_session_id)
1255
- env_response = await create_environment(
1256
- EnvCreateRequest(
1257
- env_name=request.env.env_name,
1258
- config=_env_config,
1259
- seed=request.env.seed,
1260
- rl_run_id=request.run_id,
1261
- )
1262
- )
1263
- env_id = env_response.env_id
1264
- env_handle = registry.get_env(env_id)
1265
- created_env_id = env_id
1266
-
1267
- tracing_context.update_metadata(env_id=env_id)
1268
-
1269
- # Resolve or create policy
1270
- if request.policy.policy_id:
1271
- policy_handle = registry.get_policy(request.policy.policy_id)
1272
- if not policy_handle:
1273
- raise HTTPException(
1274
- status_code=404,
1275
- detail=f"Policy {request.policy.policy_id} not found",
1276
- )
1277
- policy_id = request.policy.policy_id
1278
- else:
1279
- # Create new policy
1280
- from .policy_routes import PolicyCreateRequest, create_policy
1281
-
1282
- if not request.policy.policy_name:
1283
- raise ValueError("FATAL: policy_name is required - NO FALLBACKS!")
1284
-
1285
- # Propagate training_session_id and synth_base_url via policy config
1286
- _policy_config = dict(request.policy.config or {})
1287
- if request.training_session_id is not None:
1288
- _policy_config.setdefault("training_session_id", request.training_session_id)
1289
- if request.synth_base_url is not None:
1290
- _policy_config.setdefault("synth_base_url", request.synth_base_url)
1291
- policy_response = await create_policy(
1292
- PolicyCreateRequest(
1293
- policy_name=request.policy.policy_name,
1294
- config=_policy_config,
1295
- rl_run_id=request.run_id,
1296
- bound_env_id=env_id,
1297
- mode=request.mode, # Pass through mode for URL transformation control
1298
- ),
1299
- req,
1300
- )
1301
- policy_id = policy_response.policy_id
1302
- policy_handle = registry.get_policy(policy_id)
1303
- created_policy_id = policy_id
1304
-
1305
- tracing_context.update_metadata(policy_id=policy_id)
1306
-
1307
- # Bind policy to environment if not already bound
1308
- if policy_handle and not policy_handle.bound_env_id:
1309
- policy_handle.bound_env_id = env_id
1310
-
1311
- # Record seed bound to environment for end-of-rollout verification/logging
1312
- try:
1313
- env_seed_used = int(getattr(env_handle, "seed", 0) or 0)
1314
- except Exception:
1315
- env_seed_used = None
1316
- tracing_context.update_metadata(env_seed=env_seed_used)
1317
- # Initialize trajectory
1318
- trajectory_steps = []
1319
- pending_tool_calls = None
1320
- current_obs = env_handle.last_observation
1321
- total_reward = 0.0
1322
- ops_executed = 0
1323
- last_agent_response_ts = None
1324
- last_policy_meta = None
1325
- last_env_step_ms = None
1326
- last_env_step_completed_ts = None
1327
-
1328
- # Stepwise reward configuration (Crafter shaping; gate on explicit enable)
1329
- step_rewards_cfg_raw: dict[str, Any] = {}
1330
- try:
1331
- if isinstance(request.policy.config, dict):
1332
- step_rewards_cfg_raw = dict(request.policy.config.get("step_rewards") or {})
1333
- except Exception:
1334
- step_rewards_cfg_raw = {}
1335
- if not step_rewards_cfg_raw:
1336
- try:
1337
- if isinstance(request.env.config, dict):
1338
- step_rewards_cfg_raw = dict(request.env.config.get("step_rewards") or {})
1339
- except Exception:
1340
- step_rewards_cfg_raw = {}
1341
-
1342
- step_rewards_enabled = bool(step_rewards_cfg_raw.get("enabled", False))
1343
- step_rewards_mode = str(step_rewards_cfg_raw.get("mode") or "off").lower()
1344
- step_rewards_strategy = _normalize_step_strategy(step_rewards_cfg_raw.get("strategy"))
1345
- step_rewards_weights = _coerce_weights(step_rewards_cfg_raw.get("weights"))
1346
- step_rewards_k_limits = _coerce_k_limits(step_rewards_cfg_raw.get("k_limits"))
1347
- try:
1348
- step_rewards_indicator_lambda = float(
1349
- step_rewards_cfg_raw.get("indicator_lambda") or 0.0
1350
- )
1351
- except Exception:
1352
- step_rewards_indicator_lambda = 0.0
1353
- try:
1354
- step_rewards_beta = float(step_rewards_cfg_raw.get("step_beta") or 0.0)
1355
- except Exception:
1356
- step_rewards_beta = 0.0
1357
- step_rewards_active = step_rewards_enabled and step_rewards_mode == "decision_stepwise"
1358
-
1359
- def _extract_achievements(obs: Any) -> dict[str, bool]:
1360
- if not isinstance(obs, dict):
1361
- return {}
1362
- ach = obs.get("achievements_status")
1363
- if isinstance(ach, dict):
1364
- return {str(k): bool(v) for k, v in ach.items()}
1365
- return {}
1366
-
1367
- def _extract_inventory(obs: Any) -> dict[str, int]:
1368
- if not isinstance(obs, dict):
1369
- return {}
1370
- inv = obs.get("inventory")
1371
- if not isinstance(inv, dict):
1372
- return {}
1373
- cleaned: dict[str, int] = {}
1374
- for key, value in inv.items():
1375
- coerced = _coerce_int_value(value)
1376
- if coerced is None:
1377
- continue
1378
- cleaned[str(key)] = coerced
1379
- return cleaned
1380
-
1381
- def _extract_achievement_counts(obs: Any) -> dict[str, int]:
1382
- if not isinstance(obs, dict):
1383
- return {}
1384
- counts = obs.get("achievements_counts")
1385
- if not isinstance(counts, dict):
1386
- return {}
1387
- cleaned: dict[str, int] = {}
1388
- for key, value in counts.items():
1389
- coerced = _coerce_int_value(value)
1390
- if coerced is None:
1391
- continue
1392
- cleaned[str(key)] = coerced
1393
- return cleaned
1394
-
1395
- def _summarize_tool_calls(tool_calls: Any) -> list[dict[str, Any]]:
1396
- if not tool_calls:
1397
- return []
1398
- try:
1399
- items = (
1400
- tool_calls
1401
- if isinstance(tool_calls, list)
1402
- else list(tool_calls) # tolerates tuples or pydantic lists
1403
- )
1404
- except Exception:
1405
- return []
1406
- summary: list[dict[str, Any]] = []
1407
- for tc in items:
1408
- tool_name = None
1409
- args: Any = {}
1410
- if isinstance(tc, dict):
1411
- tool_name = tc.get("tool") or tc.get("tool_name") or tc.get("name")
1412
- raw_args = tc.get("arguments") or tc.get("args") or {}
1413
- else:
1414
- tool_name = getattr(tc, "tool", None) or getattr(tc, "tool_name", None)
1415
- raw_args = getattr(tc, "arguments", None) or getattr(tc, "args", None) or {}
1416
- args = raw_args
1417
- if isinstance(raw_args, str):
1418
- try:
1419
- args = json.loads(raw_args)
1420
- except Exception:
1421
- args = raw_args
1422
- summary.append({"tool": tool_name, "args": args})
1423
- return summary
1424
-
1425
- decision_samples: list[dict[str, Any]] = []
1426
- decision_index = 0
1427
- decision_open = False
1428
- session_trace = None
1429
- finalized = False
1430
- prev_achievements = _extract_achievements(current_obs)
1431
- prev_inventory_state = _extract_inventory(current_obs)
1432
- prev_achievement_counts_state = _extract_achievement_counts(current_obs)
1433
- # Track episode-level achievements that have been seen as true at any point so far
1434
- episode_seen_achievements: set[str] = {
1435
- k for k, v in (prev_achievements or {}).items() if bool(v)
1436
- }
1437
- episode_achievement_counts: dict[str, int] = {}
1438
- stepwise_indicator_sum = 0.0
1439
- stepwise_reward_sum = 0.0
1440
- stepwise_resource_reward_sum = 0.0
1441
- stepwise_new_achievements_total = 0
1442
- final_achievement_count = sum(1 for v in prev_achievements.values() if v)
1443
-
1444
- # Execute ops sequence (capped by env_params.max_steps_per_episode)
1445
- for op_idx, op in enumerate(ops_seq):
1446
- # Check for abort
1447
- if registry.is_run_aborted(request.run_id):
1448
- logger.info(f"Run {request.run_id} aborted at op {op_idx}")
1449
- break
1450
-
1451
- # Check safety limits
1452
- if ops_executed >= request.safety.max_ops:
1453
- logger.warning(f"Reached max_ops limit ({request.safety.max_ops})")
1454
- break
1455
-
1456
- if op == "agent":
1457
- # Policy step
1458
- from .policy_routes import PolicyStepRequest, step_policy
1459
-
1460
- if not decision_open:
1461
- await tracing_context.start_decision(decision_index)
1462
- decision_open = True
1463
-
1464
- agent_request_start = _time.perf_counter()
1465
- if last_agent_response_ts is not None and last_policy_meta is not None:
1466
- with contextlib.suppress(Exception):
1467
- timing_prev = last_policy_meta.setdefault("timing", {})
1468
- decision_ms = max(
1469
- 0.0,
1470
- (agent_request_start - float(last_agent_response_ts)) * 1000.0,
1471
- )
1472
- # Update timing on prior policy meta (kept by previous env step)
1473
- timing_prev["decision_ms"] = decision_ms
1474
- if last_env_step_ms is not None:
1475
- timing_prev["env_step_ms"] = float(last_env_step_ms)
1476
- timing_prev["overhead_ms"] = max(
1477
- 0.0, decision_ms - float(last_env_step_ms)
1478
- )
1479
- else:
1480
- timing_prev.setdefault("overhead_ms", 0.0)
1481
- timing_prev["decision_ready_s"] = agent_request_start
1482
- # Also backfill the last appended trajectory step so the trainer
1483
- # can always see decision_ms without relying on shared dict refs.
1484
- if trajectory_steps:
1485
- with contextlib.suppress(Exception):
1486
- _last = trajectory_steps[-1]
1487
- _info = dict(_last.info or {})
1488
- _meta = dict(_info.get("meta") or {})
1489
- _timing = dict(_meta.get("timing") or {})
1490
- _timing["decision_ms"] = decision_ms
1491
- if last_env_step_ms is not None:
1492
- _timing.setdefault("env_step_ms", float(last_env_step_ms))
1493
- _timing.setdefault(
1494
- "overhead_ms",
1495
- max(0.0, decision_ms - float(last_env_step_ms)),
1496
- )
1497
- else:
1498
- _timing.setdefault("overhead_ms", 0.0)
1499
- _meta["timing"] = _timing
1500
- _info["meta"] = _meta
1501
- _last.info = _info
1502
- last_env_step_ms = None
1503
- last_env_step_completed_ts = None
1504
-
1505
- # Build metadata for policy (carry previous tool_calls and env result)
1506
- metadata = {}
1507
- if pending_tool_calls:
1508
- metadata["prev_tool_calls"] = pending_tool_calls
1509
- if len(trajectory_steps) > 0:
1510
- last_step = trajectory_steps[-1]
1511
- # Prefer the last executed tool calls to seed history
1512
- if last_step.tool_calls:
1513
- metadata["prev_tool_calls"] = last_step.tool_calls
1514
- # Provide a compact env result snapshot
1515
- metadata["prev_env_result"] = {
1516
- "observation": last_step.obs,
1517
- "reward": last_step.reward,
1518
- "done": last_step.done,
1519
- "truncated": last_step.truncated,
1520
- "info": last_step.info,
1521
- }
1522
-
1523
- # Log compact metadata summary to confirm history threading
1524
- with contextlib.suppress(Exception):
1525
- _prev_calls = metadata.get("prev_tool_calls")
1526
- _count = len(_prev_calls) if isinstance(_prev_calls, list) else 0
1527
- _first_guess = None
1528
- if _count > 0 and isinstance(_prev_calls[0], dict):
1529
- _args = _prev_calls[0].get("arguments", None)
1530
- if isinstance(_args, str):
1531
- import json as _json
1532
- with contextlib.suppress(Exception):
1533
- _args = _json.loads(_args)
1534
- if not isinstance(_args, dict):
1535
- _args = {}
1536
- _first_guess = _args.get("guess") or _args.get("word")
1537
- logger.info(
1538
- "POLICY_METADATA: prev_tool_calls=%d first_guess=%r has_prev_env_result=%s",
1539
- _count,
1540
- _first_guess,
1541
- str("prev_env_result" in metadata),
1542
- )
1543
-
1544
- try:
1545
- policy_response = await step_policy(
1546
- PolicyStepRequest(
1547
- policy_id=policy_id,
1548
- observation=current_obs,
1549
- metadata=metadata,
1550
- ),
1551
- req,
1552
- )
1553
- except Exception as _pe:
1554
- # Hard fail the rollout on policy step error (e.g., inference auth 4xx)
1555
- logger.error(
1556
- "POLICY_STEP_HARD_FAIL: run_id=%s op_idx=%s err=%s",
1557
- request.run_id,
1558
- str(op_idx),
1559
- str(_pe),
1560
- )
1561
- raise HTTPException(status_code=500, detail=f"policy_step_failed: {str(_pe)}")
1562
-
1563
- agent_response_ts = _time.perf_counter()
1564
- if isinstance(policy_response.meta, dict):
1565
- with contextlib.suppress(Exception):
1566
- timing_cur = policy_response.meta.setdefault("timing", {})
1567
- timing_cur["agent_request_start_s"] = agent_request_start
1568
- timing_cur["agent_response_s"] = agent_response_ts
1569
- if "inference_ms" in policy_response.meta:
1570
- with contextlib.suppress(Exception):
1571
- timing_cur.setdefault(
1572
- "inference_ms",
1573
- float(policy_response.meta["inference_ms"]),
1574
- )
1575
- timing_cur.setdefault(
1576
- "inference_s",
1577
- float(policy_response.meta["inference_ms"]) / 1000.0,
1578
- )
1579
- last_policy_meta = policy_response.meta
1580
- else:
1581
- last_policy_meta = None
1582
- last_agent_response_ts = agent_response_ts
1583
-
1584
- # Diagnostic: summarize policy step target and tool calls
1585
- try:
1586
- model_name = None
1587
- target_url = None
1588
- if isinstance(policy_response.meta, dict):
1589
- req_body = policy_response.meta.get("inference_request") or {}
1590
- model_name = req_body.get("model")
1591
- target_url = policy_response.meta.get("inference_url")
1592
- _tc = policy_response.tool_calls or []
1593
- print(
1594
- {
1595
- "rollout.policy_step": True,
1596
- "run_id": request.run_id,
1597
- "model": model_name,
1598
- "inference_url": target_url,
1599
- "tool_calls_count": len(_tc) if isinstance(_tc, list) else 0,
1600
- },
1601
- flush=True,
1602
- )
1603
- except Exception:
1604
- pass
1605
-
1606
- pending_tool_calls = policy_response.tool_calls
1607
- # Log summarized agent tool calls
1608
- with contextlib.suppress(Exception):
1609
- _tc = pending_tool_calls or []
1610
- _summary = []
1611
- for _item in (_tc if isinstance(_tc, list) else []):
1612
- try:
1613
- if isinstance(_item, dict):
1614
- _tool = _item.get("tool")
1615
- _args = _item.get("args")
1616
- _keys = list(_args.keys()) if isinstance(_args, dict) else []
1617
- _summary.append({"tool": _tool, "args_keys": _keys})
1618
- except Exception:
1619
- continue
1620
- _rid = getattr(request, "run_id", None)
1621
- logger.info("AGENT_TOOL_CALLS: run_id=%s count=%d summary=%s", _rid, len(_tc), _summary)
1622
- print(f"[rollout] agent tool_calls run_id={_rid} count={len(_tc)} summary={_summary}", flush=True)
1623
- await tracing_context.record_tool_invocation(pending_tool_calls)
1624
- ops_executed += 1
1625
-
1626
- elif op == "env":
1627
- if not pending_tool_calls:
1628
- with contextlib.suppress(Exception):
1629
- logger.warning(
1630
- "POLICY_STEP_FAIL: missing tool_calls; failing rollout run_id=%s op_idx=%s",
1631
- request.run_id,
1632
- str(op_idx),
1633
- )
1634
- raise HTTPException(
1635
- status_code=500,
1636
- detail="policy_step_failed: missing tool_calls (no_tool_calls)",
1637
- )
1638
-
1639
- # Environment step
1640
- from .environment_routes import EnvStepRequest, step_environment
1641
-
1642
- env_step_error: Exception | None = None
1643
- env_response = None
1644
- env_step_start = _time.perf_counter()
1645
- try:
1646
- env_response = await step_environment(
1647
- EnvStepRequest(
1648
- env_id=env_id,
1649
- tool_calls=pending_tool_calls,
1650
- )
1651
- )
1652
- except Exception as _ee:
1653
- env_step_error = _ee
1654
- env_step_end = _time.perf_counter()
1655
- env_step_duration_ms = (env_step_end - env_step_start) * 1000.0
1656
- last_env_step_ms = env_step_duration_ms
1657
- last_env_step_completed_ts = env_step_end
1658
- if last_policy_meta is not None:
1659
- with contextlib.suppress(Exception):
1660
- timing_env = last_policy_meta.setdefault("timing", {})
1661
- timing_env["env_step_ms"] = env_step_duration_ms
1662
- timing_env["env_step_end_s"] = env_step_end
1663
-
1664
- if env_step_error is not None:
1665
- with contextlib.suppress(Exception):
1666
- logger.warning(
1667
- "ENV_STEP_FAIL: failing rollout run_id=%s op_idx=%s err=%s",
1668
- request.run_id,
1669
- str(op_idx),
1670
- str(env_step_error),
1671
- )
1672
- raise HTTPException(
1673
- status_code=500,
1674
- detail=f"env_step_failed: {str(env_step_error)}",
1675
- )
1676
-
1677
- # Reaching here means env step succeeded
1678
- assert env_response is not None
1679
-
1680
- # Record step, including policy meta if present for timing/tokens observability
1681
- _info = env_response.info if isinstance(env_response.info, dict) else {}
1682
- # Attach policy meta from the immediately preceding agent step
1683
- with contextlib.suppress(Exception):
1684
- prev_meta = {}
1685
- if "policy_response" in locals() and isinstance(policy_response.meta, dict): # type: ignore[name-defined]
1686
- prev_meta = policy_response.meta
1687
- if prev_meta:
1688
- _info = dict(_info)
1689
- _info["meta"] = prev_meta
1690
-
1691
- event_metadata = {
1692
- "op_index": op_idx,
1693
- }
1694
- event_id = await tracing_context.record_environment_event(
1695
- env_handle=env_handle,
1696
- prev_obs=current_obs,
1697
- env_response=env_response,
1698
- next_obs=getattr(env_response, "observation", None),
1699
- metadata=event_metadata,
1700
- )
1701
-
1702
- decision_index += 1
1703
- next_obs = env_response.observation
1704
- new_achievement_state = _extract_achievements(next_obs)
1705
- new_inventory_state = _extract_inventory(next_obs)
1706
- new_achievement_counts_state = _extract_achievement_counts(next_obs)
1707
- final_achievement_count = sum(
1708
- 1 for _, unlocked in new_achievement_state.items() if unlocked
1709
- )
1710
- indicator_val = 0
1711
- reward_stepwise = 0.0
1712
- decision_rewards_meta: dict[str, Any] | None = None
1713
- decision_record = None
1714
- _info = {} if not isinstance(_info, dict) else dict(_info)
1715
- if step_rewards_active:
1716
- decision_actions = _summarize_tool_calls(pending_tool_calls)
1717
- stepwise_info, decision_record, stats = compute_stepwise_reward(
1718
- prev_achievements or {},
1719
- new_achievement_state,
1720
- decision_index,
1721
- decision_actions,
1722
- step_rewards_indicator_lambda,
1723
- strategy=step_rewards_strategy,
1724
- weights=step_rewards_weights,
1725
- k_limits=step_rewards_k_limits,
1726
- episode_counts=episode_achievement_counts,
1727
- prev_inventory=prev_inventory_state,
1728
- new_inventory=new_inventory_state,
1729
- prev_counts=prev_achievement_counts_state,
1730
- new_counts=new_achievement_counts_state,
1731
- )
1732
- indicator_val = int(stats.get("indicator", 0.0))
1733
- reward_stepwise = float(stats.get("reward", 0.0))
1734
- stepwise_indicator_sum += float(stats.get("indicator", 0.0))
1735
- stepwise_reward_sum += reward_stepwise
1736
- stepwise_new_achievements_total += int(stats.get("new_achievements_count", 0.0))
1737
- with contextlib.suppress(Exception):
1738
- resource_component = stats.get("resource_reward")
1739
- if resource_component is not None:
1740
- stepwise_resource_reward_sum += float(resource_component)
1741
- _info["stepwise"] = stepwise_info
1742
- # Compute decision-level rewards (absolute vs unique) and attach to metadata
1743
- with contextlib.suppress(Exception):
1744
- turned_true = set(stepwise_info.get("new_achievements") or [])
1745
- seen_before = set(episode_seen_achievements)
1746
- new_unique = sorted(turned_true - seen_before)
1747
- ach_delta = int(len(turned_true))
1748
- unique_delta = int(len(new_unique))
1749
- # Prepare stable lists for logging/metadata
1750
- all_list = sorted(turned_true)
1751
- # Ensure nested meta exists
1752
- meta_block = (
1753
- _info.get("meta") if isinstance(_info.get("meta"), dict) else {}
1754
- )
1755
- decision_rewards = {
1756
- "turn": int(decision_index),
1757
- "ach_delta": ach_delta,
1758
- "unique_delta": unique_delta,
1759
- "all": all_list,
1760
- "unique": new_unique,
1761
- }
1762
- decision_rewards_meta = decision_rewards
1763
- meta_block["decision_rewards"] = decision_rewards
1764
- _info["meta"] = meta_block
1765
- # Update episode-level seen set after attributing uniqueness to this decision
1766
- episode_seen_achievements.update(turned_true)
1767
- if decision_record is not None:
1768
- decision_samples.append(decision_record)
1769
- prev_achievements = new_achievement_state
1770
- prev_inventory_state = new_inventory_state
1771
- prev_achievement_counts_state = new_achievement_counts_state
1772
-
1773
- await tracing_context.record_decision_reward(
1774
- event_id=event_id,
1775
- decision_meta=decision_rewards_meta,
1776
- )
1777
-
1778
- step = RolloutStep(
1779
- obs=_summarize_observation_for_storage(env_handle, current_obs),
1780
- tool_calls=pending_tool_calls,
1781
- reward=env_response.reward,
1782
- done=env_response.done,
1783
- truncated=env_response.truncated,
1784
- info=_info,
1785
- )
1786
- # Log summarized env application of tool calls and immediate reward/done
1787
- with contextlib.suppress(Exception):
1788
- _tc = pending_tool_calls or []
1789
- _summary = []
1790
- for _item in (_tc if isinstance(_tc, list) else []):
1791
- try:
1792
- if isinstance(_item, dict):
1793
- _tool = _item.get("tool")
1794
- _args = _item.get("args")
1795
- _keys = list(_args.keys()) if isinstance(_args, dict) else []
1796
- _summary.append({"tool": _tool, "args_keys": _keys})
1797
- except Exception:
1798
- continue
1799
- _rid = getattr(request, "run_id", None)
1800
- logger.info(
1801
- "ENV_APPLY: run_id=%s tool_calls=%d reward=%s done=%s summary=%s",
1802
- _rid,
1803
- len(_tc),
1804
- str(env_response.reward),
1805
- str(env_response.done),
1806
- _summary,
1807
- )
1808
- print(
1809
- f"[rollout] env apply run_id={_rid} tool_calls={len(_tc)} reward={env_response.reward} done={env_response.done} summary={_summary}",
1810
- flush=True,
1811
- )
1812
- trajectory_steps.append(step)
1813
-
1814
- if env_response.reward is not None:
1815
- total_reward += env_response.reward
1816
-
1817
- # Update state
1818
- current_obs = next_obs
1819
- pending_tool_calls = None
1820
- ops_executed += 1
1821
-
1822
- # Handle episode end
1823
- if env_response.done:
1824
- if request.on_done == "reset":
1825
- # Reset environment
1826
- from .environment_routes import (
1827
- EnvResetRequest,
1828
- reset_environment,
1829
- )
1830
-
1831
- reset_response = await reset_environment(EnvResetRequest(env_id=env_id))
1832
- current_obs = reset_response.observation
1833
- prev_achievements = _extract_achievements(current_obs)
1834
- episode_seen_achievements = {
1835
- k for k, v in (prev_achievements or {}).items() if bool(v)
1836
- }
1837
- episode_achievement_counts.clear()
1838
- elif request.on_done == "terminate":
1839
- break
1840
-
1841
- if decision_open:
1842
- await tracing_context.end_decision()
1843
- decision_open = False
1844
-
1845
- else:
1846
- logger.warning(f"Unknown op: {op}")
1847
-
1848
- if (
1849
- last_policy_meta is not None
1850
- and last_agent_response_ts is not None
1851
- and "timing" in last_policy_meta
1852
- and isinstance(last_policy_meta["timing"], dict)
1853
- and "decision_ms" not in last_policy_meta["timing"]
1854
- ):
1855
- with contextlib.suppress(Exception):
1856
- final_now = last_env_step_completed_ts or _time.perf_counter()
1857
- final_decision_ms = max(0.0, (final_now - float(last_agent_response_ts)) * 1000.0)
1858
- timing_final = last_policy_meta.setdefault("timing", {})
1859
- timing_final["decision_ms"] = final_decision_ms
1860
- if last_env_step_ms is not None:
1861
- timing_final.setdefault("env_step_ms", float(last_env_step_ms))
1862
- timing_final.setdefault(
1863
- "overhead_ms",
1864
- max(0.0, final_decision_ms - float(last_env_step_ms)),
1865
- )
1866
- else:
1867
- timing_final.setdefault("overhead_ms", 0.0)
1868
-
1869
- # Build trajectory
1870
- # Extract inference_url from policy config (REQUIRED for trace correlation)
1871
- # The trainer sets this in policy config with ?cid=... parameter
1872
- inference_url = None
1873
-
1874
- # Try policy config from request first (most reliable source)
1875
- try:
1876
- policy_config_snapshot = (
1877
- request.policy.config if isinstance(request.policy.config, dict) else {}
1878
- )
1879
- inference_url = policy_config_snapshot.get("inference_url")
1880
- if inference_url:
1881
- logger.info(
1882
- "ROLLOUT_TRAJECTORY: extracted inference_url from request.policy.config run_id=%s url=%s",
1883
- request.run_id,
1884
- inference_url,
1885
- )
1886
- except Exception as exc:
1887
- logger.warning(
1888
- "ROLLOUT_TRAJECTORY: failed to get inference_url from request.policy.config run_id=%s: %s",
1889
- request.run_id,
1890
- exc,
1891
- )
1892
-
1893
- # Fallback: Try policy handle snapshot (if request.policy.config failed)
1894
- if not inference_url and policy_handle is not None:
1895
- try:
1896
- policy_snapshot = policy_handle.snapshot()
1897
- inference_url = policy_snapshot.get("config", {}).get("inference_url")
1898
- if inference_url:
1899
- logger.info(
1900
- "ROLLOUT_TRAJECTORY: extracted inference_url from policy_handle.snapshot run_id=%s url=%s",
1901
- request.run_id,
1902
- inference_url,
1903
- )
1904
- except Exception as exc:
1905
- logger.warning(
1906
- "ROLLOUT_TRAJECTORY: failed to snapshot policy for run_id=%s policy_id=%s: %s",
1907
- request.run_id,
1908
- policy_id,
1909
- exc,
1910
- )
1911
-
1912
- # ASSERTION: inference_url MUST be present (required by RolloutTrajectory schema)
1913
- if not inference_url:
1914
- raise ValueError(
1915
- f"FATAL: inference_url is required but not found!\n"
1916
- f"\n"
1917
- f"run_id: {request.run_id}\n"
1918
- f"policy_id: {policy_id}\n"
1919
- f"policy_config_keys: {list(policy_config_snapshot.keys()) if 'policy_config_snapshot' in locals() else 'N/A'}\n"
1920
- f"\n"
1921
- f"The trainer MUST set inference_url in policy config with ?cid=... parameter.\n"
1922
- f"This is required for trace correlation and hydration.\n"
1923
- )
1924
-
1925
- # policy_config_snapshot already set above in try block (line 1876-1878)
1926
- # Ensure it exists for logging below
1927
- if 'policy_config_snapshot' not in locals():
1928
- policy_config_snapshot = {}
1929
-
1930
- logger.info(
1931
- "ROLLOUT_TRAJECTORY: run_id=%s policy_id=%s inference_url=%s trace_id=%s",
1932
- request.run_id,
1933
- policy_id,
1934
- inference_url,
1935
- policy_config_snapshot.get("trace_correlation_id"),
1936
- )
1937
-
1938
- trajectory = RolloutTrajectory(
1939
- env_id=env_id,
1940
- policy_id=policy_id,
1941
- steps=trajectory_steps,
1942
- final={"observation": _summarize_observation_for_storage(env_handle, current_obs)},
1943
- length=len(trajectory_steps),
1944
- inference_url=inference_url, # NEW: Required for trace correlation
1945
- decision_samples=decision_samples if step_rewards_active else None,
1946
- )
1947
-
1948
- # Build metrics
1949
- metrics = RolloutMetrics(
1950
- episode_returns=[total_reward],
1951
- mean_return=total_reward,
1952
- num_steps=len(trajectory_steps),
1953
- num_episodes=1,
1954
- )
1955
- if step_rewards_active:
1956
- stepwise_summary: dict[str, Any] = {
1957
- "indicator_sum": float(stepwise_indicator_sum),
1958
- "reward_sum": float(stepwise_reward_sum),
1959
- "resource_reward": float(stepwise_resource_reward_sum),
1960
- "new_achievements_total": int(stepwise_new_achievements_total),
1961
- "mode": step_rewards_mode,
1962
- "strategy": step_rewards_strategy,
1963
- "indicator_lambda": float(step_rewards_indicator_lambda),
1964
- }
1965
- if step_rewards_beta:
1966
- stepwise_summary["step_beta"] = float(step_rewards_beta)
1967
- if step_rewards_strategy == "per_achievement":
1968
- if step_rewards_weights:
1969
- stepwise_summary["weights"] = dict(step_rewards_weights)
1970
- if step_rewards_k_limits:
1971
- stepwise_summary["k_limits"] = dict(step_rewards_k_limits)
1972
- final_achievements_list = sorted(
1973
- key for key, val in (prev_achievements or {}).items() if bool(val)
1974
- )
1975
- stepwise_summary["unique_achievements_total"] = int(len(episode_seen_achievements))
1976
- stepwise_summary["unique_achievements"] = sorted(episode_seen_achievements)
1977
- stepwise_summary["final_achievements"] = final_achievements_list
1978
- metrics.details["stepwise"] = stepwise_summary
1979
-
1980
- # Environment-specific: Log summary if available
1981
- try:
1982
- # Check if this is a Wordle environment and use Wordle helpers (lazy import)
1983
- wordle_wrapper_cls = None
1984
- try:
1985
- from .envs.wordle.environment import WordleEnvironmentWrapper
1986
- from .envs.wordle.helpers import (
1987
- get_wordle_rollout_summary,
1988
- log_wordle_rollout_summary,
1989
- )
1990
-
1991
- wordle_wrapper_cls = WordleEnvironmentWrapper
1992
- except Exception:
1993
- wordle_wrapper_cls = None # type: ignore[assignment]
1994
- get_wordle_rollout_summary = None # type: ignore
1995
- log_wordle_rollout_summary = None # type: ignore
1996
-
1997
- is_wordle = wordle_wrapper_cls is not None and isinstance(
1998
- env_handle.env,
1999
- wordle_wrapper_cls, # type: ignore[arg-type]
2000
- )
2001
- if is_wordle:
2002
- # Convert trajectory steps to expected format
2003
- formatted_steps = []
2004
- for step in trajectory_steps:
2005
- formatted_steps.append({"tool_calls": step.tool_calls or []})
2006
-
2007
- if (
2008
- get_wordle_rollout_summary is not None
2009
- and log_wordle_rollout_summary is not None
2010
- ):
2011
- summary = get_wordle_rollout_summary(formatted_steps, current_obs, env_handle)
2012
- log_wordle_rollout_summary(request.run_id, summary)
2013
- except ImportError:
2014
- # Wordle helpers not available, skip Wordle-specific logging
2015
- pass
2016
- except Exception as e:
2017
- logger.warning(f"Failed to generate environment-specific summary: {e}")
2018
-
2019
- # Mark run as completed
2020
- aborted = registry.is_run_aborted(request.run_id)
2021
- if not aborted:
2022
- registry.complete_run(request.run_id)
2023
- if decision_open:
2024
- await tracing_context.end_decision()
2025
- decision_open = False
2026
- if not finalized:
2027
- session_trace = await tracing_context.finalize(
2028
- total_reward=total_reward,
2029
- achievement_state=prev_achievements,
2030
- total_steps=len(trajectory_steps),
2031
- )
2032
- finalized = True
2033
- trace_payload = tracing_context.build_trace_payload(session_trace)
2034
-
2035
- # Debug: Check trace payload
2036
- logger.info(f"[TRACE_DEBUG] trace_payload is None: {trace_payload is None}, return_trace={tracing_context.return_trace}")
2037
- if trace_payload:
2038
- logger.info(f"[TRACE_DEBUG] trace_payload keys: {list(trace_payload.keys())}")
2039
-
2040
- # Hard-fail if no steps executed (avg_turns == 0 scenario)
2041
- if metrics.num_steps <= 0:
2042
- raise HTTPException(status_code=500, detail="no_steps_executed: avg_turns == 0")
2043
-
2044
- response = RolloutResponse(
2045
- run_id=request.run_id,
2046
- trajectories=[trajectory],
2047
- branches={},
2048
- metrics=metrics,
2049
- aborted=aborted,
2050
- ops_executed=ops_executed,
2051
- trace=trace_payload,
2052
- )
2053
- logger.info(
2054
- "ROLLOUT_RESPONSE: run_id=%s aborted=%s ops_executed=%s metrics_steps=%s trace_present=%s pipeline_metadata=%s",
2055
- request.run_id,
2056
- aborted,
2057
- ops_executed,
2058
- metrics.num_steps,
2059
- bool(trace_payload),
2060
- response.pipeline_metadata,
2061
- )
2062
- return response
2063
-
2064
- except Exception as e:
2065
- logger.error(f"Rollout failed for run {request.run_id}: {e}")
2066
- registry.abort_run(request.run_id)
2067
- if decision_open:
2068
- with contextlib.suppress(Exception):
2069
- await tracing_context.end_decision()
2070
- decision_open = False
2071
- if not finalized:
2072
- session_trace = None
2073
- with contextlib.suppress(Exception):
2074
- session_trace = await tracing_context.finalize(
2075
- total_reward=total_reward,
2076
- achievement_state=prev_achievements,
2077
- total_steps=len(trajectory_steps),
2078
- )
2079
- finalized = True
2080
- raise HTTPException(status_code=500, detail=str(e)) from e
2081
- finally:
2082
- # Ensure any environment created for this rollout is terminated (no reuse across rollouts)
2083
- try:
2084
- if created_env_id:
2085
- from .environment_routes import EnvTerminateRequest, terminate_environment
2086
-
2087
- await terminate_environment(EnvTerminateRequest(env_id=created_env_id))
2088
- logger.info(
2089
- "ROLL_OUT: terminated environment env_id=%s seed=%s",
2090
- str(created_env_id),
2091
- str(env_seed_used) if env_seed_used is not None else "unknown",
2092
- )
2093
- # Verify removal from registry
2094
- with contextlib.suppress(Exception):
2095
- _post = registry.get_env(created_env_id)
2096
- logger.info(
2097
- "ROLL_OUT: env_killed=%s (post_lookup=%s)",
2098
- str(_post is None),
2099
- str(_post),
2100
- )
2101
- except Exception as _te:
2102
- logger.warning(f"ROLL_OUT: failed to terminate environment {created_env_id}: {_te}")
2103
-
2104
- # Best-effort policy cleanup if we created one (avoid reuse across rollouts)
2105
- with contextlib.suppress(Exception):
2106
- if created_policy_id:
2107
- from .policy_routes import PolicyTerminateRequest, terminate_policy
2108
-
2109
- await terminate_policy(PolicyTerminateRequest(policy_id=created_policy_id))
2110
- logger.info("ROLL_OUT: terminated policy policy_id=%s", str(created_policy_id))
2111
-
2112
- if not finalized:
2113
- session_trace = None
2114
- with contextlib.suppress(Exception):
2115
- session_trace = await tracing_context.finalize(
2116
- total_reward=total_reward,
2117
- achievement_state=prev_achievements,
2118
- total_steps=len(trajectory_steps),
2119
- )
2120
- finalized = True
2121
-
2122
- with contextlib.suppress(Exception):
2123
- _clear_seed_side_effects()
2124
- logger.info("ROLL_OUT: RNG seed terminated/cleared before conclusion")
2125
-
2126
-
2127
- @router.post("/run/abort", response_model=RunAbortResponse)
2128
- async def abort_run(request: RunAbortRequest) -> RunAbortResponse:
2129
- """Abort a running rollout."""
2130
- success = registry.abort_run(request.run_id)
2131
-
2132
- if not success:
2133
- raise HTTPException(
2134
- status_code=404,
2135
- detail=f"Run {request.run_id} not found",
2136
- )
2137
-
2138
- return RunAbortResponse(
2139
- ok=True,
2140
- run_id=request.run_id,
2141
- )
2142
-
2143
-
2144
- @router.get("/run/status/{run_id}", response_model=RunStatusResponse)
2145
- async def get_run_status(run_id: str) -> RunStatusResponse:
2146
- """Get the status of a run."""
2147
- run_handle = registry.get_run(run_id)
2148
-
2149
- if not run_handle:
2150
- raise HTTPException(
2151
- status_code=404,
2152
- detail=f"Run {run_id} not found",
2153
- )
2154
-
2155
- return RunStatusResponse(
2156
- run_id=run_id,
2157
- status=run_handle.status,
2158
- started_at=run_handle.started_at,
2159
- finished_at=run_handle.finished_at,
2160
- )