synth-ai 0.2.16__tar.gz → 0.2.17__tar.gz
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.
- synth_ai-0.2.17/PKG-INFO +198 -0
- synth_ai-0.2.17/README.md +113 -0
- synth_ai-0.2.17/examples/analyze_semantic_words.sh +17 -0
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/README.md +98 -0
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml +25 -0
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/configs/eval_rl_final.toml +24 -0
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/configs/filter_high_reward.toml +10 -0
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml +42 -0
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/configs/train_sft_qwen4b_vl.toml +40 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/README.md +158 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b.toml +25 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/eval_groq_qwen32b.toml +25 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/eval_openai_gpt_oss_120b.toml +29 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/filter_high_reward_dataset.toml +10 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/train_rl_from_sft.toml +41 -0
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/train_sft_qwen4b.toml +40 -0
- synth_ai-0.2.17/examples/dev/qwen3_32b_qlora_4xh100.toml +45 -0
- synth_ai-0.2.17/examples/multi_step/configs/crafter_rl_outcome.toml +74 -0
- synth_ai-0.2.17/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +145 -0
- synth_ai-0.2.17/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +83 -0
- synth_ai-0.2.17/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +78 -0
- synth_ai-0.2.17/examples/multi_step/configs/crafter_rl_stepwise_simple_NEW_FORMAT.toml +105 -0
- synth_ai-0.2.17/examples/multi_step/configs/verilog_rl_lora.toml +147 -0
- synth_ai-0.2.17/examples/qwen_coder/configs/coder_lora_30b.toml +60 -0
- synth_ai-0.2.17/examples/qwen_coder/configs/coder_lora_4b.toml +61 -0
- synth_ai-0.2.17/examples/qwen_coder/configs/coder_lora_small.toml +57 -0
- synth_ai-0.2.17/examples/qwen_vl/README.md +152 -0
- synth_ai-0.2.17/examples/qwen_vl/SETUP_COMPLETE.md +274 -0
- synth_ai-0.2.17/examples/qwen_vl/VISION_TESTS_COMPLETE.md +489 -0
- synth_ai-0.2.17/examples/qwen_vl/collect_data_via_cli.md +415 -0
- synth_ai-0.2.17/examples/qwen_vl/collect_vision_traces.py +368 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/crafter_rl_vision_qwen3vl4b.toml +110 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/crafter_vlm_sft_example.toml +59 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/eval_gpt4o_mini_vision.toml +26 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/eval_gpt5nano_vision.toml +26 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/eval_qwen3vl_vision.toml +26 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/filter_qwen3vl_sft.toml +49 -0
- synth_ai-0.2.17/examples/qwen_vl/configs/filter_vision_sft.toml +52 -0
- synth_ai-0.2.17/examples/qwen_vl/crafter_qwen_vl_agent.py +300 -0
- synth_ai-0.2.17/examples/qwen_vl/run_vision_comparison.sh +61 -0
- synth_ai-0.2.17/examples/rl/README.md +169 -0
- synth_ai-0.2.17/examples/rl/configs/rl_from_base_qwen.toml +62 -0
- synth_ai-0.2.17/examples/rl/configs/rl_from_base_qwen17.toml +79 -0
- synth_ai-0.2.17/examples/rl/task_app/README.md +21 -0
- synth_ai-0.2.17/examples/rl/task_app/math_single_step.py +990 -0
- synth_ai-0.2.17/examples/run_crafter_demo.sh +10 -0
- synth_ai-0.2.17/examples/sft/README.md +139 -0
- synth_ai-0.2.17/examples/sft/configs/crafter_fft_qwen0p6b.toml +49 -0
- synth_ai-0.2.17/examples/sft/configs/crafter_lora_qwen0p6b.toml +49 -0
- synth_ai-0.2.17/examples/swe/task_app/README.md +135 -0
- synth_ai-0.2.17/examples/swe/task_app/grpo_swe_mini.py +604 -0
- synth_ai-0.2.17/examples/swe/task_app/hosted/envs/crafter/react_agent.py +108 -0
- synth_ai-0.2.17/examples/swe/task_app/hosted/envs/mini_swe/environment.py +1191 -0
- synth_ai-0.2.17/examples/swe/task_app/hosted/inference/openai_client.py +618 -0
- synth_ai-0.2.17/examples/swe/task_app/morph_backend.py +178 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/README.md +42 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/grpo_crafter.py +1033 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/grpo_crafter_task_app.py +146 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/policy.py +583 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.py +122 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py +702 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py +1191 -0
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py +2176 -0
- synth_ai-0.2.17/examples/task_apps/enron/task_app/grpo_enron_task_app.py +146 -0
- synth_ai-0.2.17/examples/task_apps/math/README.md +21 -0
- synth_ai-0.2.17/examples/task_apps/pokemon_red/README.md +356 -0
- synth_ai-0.2.17/examples/task_apps/pokemon_red/eval_image_only_gpt4o.toml +30 -0
- synth_ai-0.2.17/examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +224 -0
- synth_ai-0.2.17/examples/task_apps/pokemon_red/task_app.py +830 -0
- synth_ai-0.2.17/examples/task_apps/sokoban/README.md +306 -0
- synth_ai-0.2.17/examples/task_apps/verilog/eval_groq_qwen32b.toml +22 -0
- synth_ai-0.2.17/examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +145 -0
- synth_ai-0.2.17/examples/vlm/configs/crafter_vlm_gpt4o.toml +49 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/configs/crafter_fft.toml +53 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +54 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +84 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/run_local_rollout_traced.py +477 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/README.md +42 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/grpo_crafter.py +827 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py +135 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py +454 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py +108 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +618 -0
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +1084 -0
- synth_ai-0.2.17/examples/workflows/math_rl/configs/rl_from_base_qwen.toml +62 -0
- synth_ai-0.2.17/examples/workflows/math_rl/configs/rl_from_base_qwen17.toml +79 -0
- synth_ai-0.2.17/pyproject.toml +229 -0
- synth_ai-0.2.17/synth_ai/api/train/builders.py +357 -0
- synth_ai-0.2.17/synth_ai/api/train/cli.py +773 -0
- synth_ai-0.2.17/synth_ai/api/train/configs/__init__.py +51 -0
- synth_ai-0.2.17/synth_ai/api/train/configs/rl.py +159 -0
- synth_ai-0.2.17/synth_ai/api/train/configs/sft.py +99 -0
- synth_ai-0.2.17/synth_ai/api/train/configs/shared.py +81 -0
- synth_ai-0.2.17/synth_ai/auth/credentials.py +119 -0
- synth_ai-0.2.17/synth_ai/cli/__init__.py +98 -0
- synth_ai-0.2.17/synth_ai/cli/commands/__init__.py +17 -0
- synth_ai-0.2.17/synth_ai/cli/commands/demo/__init__.py +6 -0
- synth_ai-0.2.17/synth_ai/cli/commands/demo/core.py +163 -0
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/__init__.py +23 -0
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/core.py +614 -0
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/errors.py +72 -0
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/validation.py +11 -0
- synth_ai-0.2.17/synth_ai/cli/commands/eval/__init__.py +19 -0
- synth_ai-0.2.17/synth_ai/cli/commands/eval/core.py +1109 -0
- synth_ai-0.2.17/synth_ai/cli/commands/eval/errors.py +81 -0
- synth_ai-0.2.17/synth_ai/cli/commands/eval/validation.py +133 -0
- synth_ai-0.2.17/synth_ai/cli/commands/filter/__init__.py +12 -0
- synth_ai-0.2.17/synth_ai/cli/commands/filter/core.py +388 -0
- synth_ai-0.2.17/synth_ai/cli/commands/filter/errors.py +55 -0
- synth_ai-0.2.17/synth_ai/cli/commands/filter/validation.py +77 -0
- synth_ai-0.2.17/synth_ai/cli/commands/help/__init__.py +177 -0
- synth_ai-0.2.17/synth_ai/cli/commands/help/core.py +73 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/__init__.py +64 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/client.py +192 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/config.py +92 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/errors.py +20 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/formatters.py +164 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/subcommands/__init__.py +9 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/subcommands/files.py +79 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/subcommands/jobs.py +334 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/subcommands/models.py +79 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/subcommands/runs.py +81 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/subcommands/summary.py +47 -0
- synth_ai-0.2.17/synth_ai/cli/commands/status/utils.py +114 -0
- synth_ai-0.2.17/synth_ai/cli/commands/train/__init__.py +53 -0
- synth_ai-0.2.17/synth_ai/cli/commands/train/core.py +21 -0
- synth_ai-0.2.17/synth_ai/cli/commands/train/errors.py +117 -0
- synth_ai-0.2.17/synth_ai/cli/commands/train/judge_schemas.py +199 -0
- synth_ai-0.2.17/synth_ai/cli/commands/train/judge_validation.py +304 -0
- synth_ai-0.2.17/synth_ai/cli/commands/train/validation.py +443 -0
- synth_ai-0.2.17/synth_ai/cli/demo.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/deploy/__init__.py +28 -0
- synth_ai-0.2.17/synth_ai/cli/deploy/core.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/deploy/errors.py +23 -0
- synth_ai-0.2.17/synth_ai/cli/deploy/validation.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/eval/__init__.py +36 -0
- synth_ai-0.2.17/synth_ai/cli/eval/core.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/eval/errors.py +31 -0
- synth_ai-0.2.17/synth_ai/cli/eval/validation.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/filter/__init__.py +28 -0
- synth_ai-0.2.17/synth_ai/cli/filter/core.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/filter/errors.py +23 -0
- synth_ai-0.2.17/synth_ai/cli/filter/validation.py +5 -0
- synth_ai-0.2.17/synth_ai/cli/modal_serve/__init__.py +12 -0
- synth_ai-0.2.17/synth_ai/cli/modal_serve/core.py +14 -0
- synth_ai-0.2.17/synth_ai/cli/modal_serve/errors.py +8 -0
- synth_ai-0.2.17/synth_ai/cli/modal_serve/validation.py +11 -0
- synth_ai-0.2.17/synth_ai/cli/serve/__init__.py +12 -0
- synth_ai-0.2.17/synth_ai/cli/serve/core.py +14 -0
- synth_ai-0.2.17/synth_ai/cli/serve/errors.py +8 -0
- synth_ai-0.2.17/synth_ai/cli/serve/validation.py +11 -0
- synth_ai-0.2.17/synth_ai/cli/setup.py +21 -0
- synth_ai-0.2.17/synth_ai/cli/status.py +15 -0
- synth_ai-0.2.17/synth_ai/cli/task_app_deploy.py +7 -0
- synth_ai-0.2.17/synth_ai/cli/task_app_modal_serve.py +11 -0
- synth_ai-0.2.17/synth_ai/cli/task_app_serve.py +11 -0
- synth_ai-0.2.17/synth_ai/cli/task_apps.py +3134 -0
- synth_ai-0.2.17/synth_ai/cli/train/__init__.py +12 -0
- synth_ai-0.2.17/synth_ai/cli/train/core.py +21 -0
- synth_ai-0.2.17/synth_ai/cli/train/errors.py +8 -0
- synth_ai-0.2.17/synth_ai/cli/train/validation.py +24 -0
- synth_ai-0.2.17/synth_ai/cli/train.py +5 -0
- synth_ai-0.2.17/synth_ai/demos/crafter/grpo_crafter_task_app.py +185 -0
- synth_ai-0.2.17/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +184 -0
- synth_ai-0.2.17/synth_ai/environments/examples/red/engine.py +742 -0
- synth_ai-0.2.17/synth_ai/environments/examples/red/engine_helpers/reward_components.py +248 -0
- synth_ai-0.2.17/synth_ai/environments/examples/red/environment.py +324 -0
- synth_ai-0.2.17/synth_ai/environments/examples/red/trace_hooks_v3.py +168 -0
- synth_ai-0.2.17/synth_ai/http.py +12 -0
- synth_ai-0.2.17/synth_ai/judge_schemas.py +126 -0
- synth_ai-0.2.17/synth_ai/learning/rl/client.py +269 -0
- synth_ai-0.2.17/synth_ai/streaming/__init__.py +29 -0
- synth_ai-0.2.17/synth_ai/streaming/config.py +94 -0
- synth_ai-0.2.17/synth_ai/streaming/handlers.py +469 -0
- synth_ai-0.2.17/synth_ai/streaming/streamer.py +301 -0
- synth_ai-0.2.17/synth_ai/streaming/types.py +95 -0
- synth_ai-0.2.17/synth_ai/task/validators.py +417 -0
- synth_ai-0.2.17/synth_ai/tracing_v3/migration_helper.py +119 -0
- synth_ai-0.2.17/synth_ai/utils/env.py +294 -0
- synth_ai-0.2.17/synth_ai/utils/http.py +172 -0
- synth_ai-0.2.17/synth_ai/utils/modal.py +308 -0
- synth_ai-0.2.17/synth_ai.egg-info/PKG-INFO +198 -0
- synth_ai-0.2.17/synth_ai.egg-info/SOURCES.txt +953 -0
- synth_ai-0.2.17/synth_ai.egg-info/requires.txt +76 -0
- synth_ai-0.2.16/PKG-INFO +0 -193
- synth_ai-0.2.16/README.md +0 -113
- synth_ai-0.2.16/examples/analyze_semantic_words.sh +0 -17
- synth_ai-0.2.16/examples/dev/qwen3_32b_qlora_4xh100.toml +0 -40
- synth_ai-0.2.16/examples/multi_step/configs/crafter_rl_outcome.toml +0 -74
- synth_ai-0.2.16/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +0 -187
- synth_ai-0.2.16/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +0 -83
- synth_ai-0.2.16/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +0 -78
- synth_ai-0.2.16/examples/multi_step/configs/verilog_rl_lora.toml +0 -190
- synth_ai-0.2.16/examples/qwen_coder/configs/coder_lora_30b.toml +0 -62
- synth_ai-0.2.16/examples/qwen_coder/configs/coder_lora_4b.toml +0 -58
- synth_ai-0.2.16/examples/qwen_coder/configs/coder_lora_small.toml +0 -59
- synth_ai-0.2.16/examples/qwen_vl/README.md +0 -154
- synth_ai-0.2.16/examples/qwen_vl/SETUP_COMPLETE.md +0 -275
- synth_ai-0.2.16/examples/qwen_vl/VISION_TESTS_COMPLETE.md +0 -490
- synth_ai-0.2.16/examples/qwen_vl/collect_data_via_cli.md +0 -423
- synth_ai-0.2.16/examples/qwen_vl/collect_vision_traces.py +0 -368
- synth_ai-0.2.16/examples/qwen_vl/configs/crafter_rl_vision_qwen3vl4b.toml +0 -127
- synth_ai-0.2.16/examples/qwen_vl/configs/crafter_vlm_sft_example.toml +0 -60
- synth_ai-0.2.16/examples/qwen_vl/configs/eval_gpt4o_mini_vision.toml +0 -43
- synth_ai-0.2.16/examples/qwen_vl/configs/eval_gpt5nano_vision.toml +0 -45
- synth_ai-0.2.16/examples/qwen_vl/configs/eval_qwen2vl_vision.toml +0 -44
- synth_ai-0.2.16/examples/qwen_vl/configs/filter_qwen2vl_sft.toml +0 -50
- synth_ai-0.2.16/examples/qwen_vl/configs/filter_vision_sft.toml +0 -53
- synth_ai-0.2.16/examples/qwen_vl/crafter_qwen_vl_agent.py +0 -300
- synth_ai-0.2.16/examples/qwen_vl/run_vision_comparison.sh +0 -62
- synth_ai-0.2.16/examples/rl/README.md +0 -169
- synth_ai-0.2.16/examples/rl/configs/rl_from_base_qwen.toml +0 -37
- synth_ai-0.2.16/examples/rl/configs/rl_from_base_qwen17.toml +0 -76
- synth_ai-0.2.16/examples/rl/task_app/README.md +0 -22
- synth_ai-0.2.16/examples/rl/task_app/math_single_step.py +0 -990
- synth_ai-0.2.16/examples/run_crafter_demo.sh +0 -10
- synth_ai-0.2.16/examples/sft/README.md +0 -139
- synth_ai-0.2.16/examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -46
- synth_ai-0.2.16/examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -46
- synth_ai-0.2.16/examples/swe/task_app/README.md +0 -105
- synth_ai-0.2.16/examples/swe/task_app/grpo_swe_mini.py +0 -600
- synth_ai-0.2.16/examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -108
- synth_ai-0.2.16/examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -1164
- synth_ai-0.2.16/examples/swe/task_app/hosted/inference/openai_client.py +0 -618
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/README.md +0 -42
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/grpo_crafter.py +0 -970
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/grpo_crafter_task_app.py +0 -146
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -605
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -123
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py +0 -734
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py +0 -1183
- synth_ai-0.2.16/examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py +0 -2162
- synth_ai-0.2.16/examples/task_apps/enron/task_app/grpo_enron_task_app.py +0 -146
- synth_ai-0.2.16/examples/task_apps/math/README.md +0 -22
- synth_ai-0.2.16/examples/task_apps/pokemon_red/README.md +0 -357
- synth_ai-0.2.16/examples/task_apps/pokemon_red/eval_image_only_gpt4o.toml +0 -29
- synth_ai-0.2.16/examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +0 -225
- synth_ai-0.2.16/examples/task_apps/pokemon_red/task_app.py +0 -799
- synth_ai-0.2.16/examples/task_apps/sokoban/README.md +0 -307
- synth_ai-0.2.16/examples/task_apps/verilog/eval_groq_qwen32b.toml +0 -24
- synth_ai-0.2.16/examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +0 -145
- synth_ai-0.2.16/examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -46
- synth_ai-0.2.16/examples/warming_up_to_rl/configs/crafter_fft.toml +0 -50
- synth_ai-0.2.16/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -56
- synth_ai-0.2.16/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -84
- synth_ai-0.2.16/examples/warming_up_to_rl/run_local_rollout_traced.py +0 -477
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/README.md +0 -42
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/grpo_crafter.py +0 -696
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py +0 -135
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -478
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -108
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +0 -618
- synth_ai-0.2.16/examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +0 -1081
- synth_ai-0.2.16/examples/workflows/math_rl/configs/rl_from_base_qwen.toml +0 -35
- synth_ai-0.2.16/examples/workflows/math_rl/configs/rl_from_base_qwen17.toml +0 -74
- synth_ai-0.2.16/pyproject.toml +0 -216
- synth_ai-0.2.16/synth_ai/api/train/builders.py +0 -351
- synth_ai-0.2.16/synth_ai/api/train/cli.py +0 -658
- synth_ai-0.2.16/synth_ai/api/train/configs/__init__.py +0 -44
- synth_ai-0.2.16/synth_ai/api/train/configs/rl.py +0 -134
- synth_ai-0.2.16/synth_ai/api/train/configs/sft.py +0 -95
- synth_ai-0.2.16/synth_ai/api/train/configs/shared.py +0 -24
- synth_ai-0.2.16/synth_ai/cli/__init__.py +0 -90
- synth_ai-0.2.16/synth_ai/cli/demo.py +0 -165
- synth_ai-0.2.16/synth_ai/cli/setup.py +0 -266
- synth_ai-0.2.16/synth_ai/cli/status.py +0 -134
- synth_ai-0.2.16/synth_ai/cli/task_app_deploy.py +0 -16
- synth_ai-0.2.16/synth_ai/cli/task_app_modal_serve.py +0 -16
- synth_ai-0.2.16/synth_ai/cli/task_app_serve.py +0 -18
- synth_ai-0.2.16/synth_ai/cli/task_apps.py +0 -4563
- synth_ai-0.2.16/synth_ai/cli/train.py +0 -18
- synth_ai-0.2.16/synth_ai/cli/tui.py +0 -62
- synth_ai-0.2.16/synth_ai/demos/crafter/grpo_crafter_task_app.py +0 -185
- synth_ai-0.2.16/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +0 -184
- synth_ai-0.2.16/synth_ai/environments/examples/red/engine.py +0 -721
- synth_ai-0.2.16/synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -276
- synth_ai-0.2.16/synth_ai/environments/examples/red/environment.py +0 -298
- synth_ai-0.2.16/synth_ai/judge_schemas.py +0 -127
- synth_ai-0.2.16/synth_ai/learning/rl/client.py +0 -267
- synth_ai-0.2.16/synth_ai/task/validators.py +0 -417
- synth_ai-0.2.16/synth_ai/tracing_v3/migration_helper.py +0 -120
- synth_ai-0.2.16/synth_ai/tui/__init__.py +0 -5
- synth_ai-0.2.16/synth_ai/tui/__main__.py +0 -13
- synth_ai-0.2.16/synth_ai/tui/cli/__init__.py +0 -1
- synth_ai-0.2.16/synth_ai/tui/cli/query_experiments.py +0 -164
- synth_ai-0.2.16/synth_ai/tui/cli/query_experiments_v3.py +0 -164
- synth_ai-0.2.16/synth_ai/tui/dashboard.py +0 -911
- synth_ai-0.2.16/synth_ai/utils/env.py +0 -287
- synth_ai-0.2.16/synth_ai/utils/http.py +0 -169
- synth_ai-0.2.16/synth_ai/utils/modal.py +0 -308
- synth_ai-0.2.16/synth_ai.egg-info/PKG-INFO +0 -193
- synth_ai-0.2.16/synth_ai.egg-info/SOURCES.txt +0 -878
- synth_ai-0.2.16/synth_ai.egg-info/requires.txt +0 -70
- {synth_ai-0.2.16 → synth_ai-0.2.17}/LICENSE +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/MANIFEST.in +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/crafter_debug_render.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/SFT_README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/README_verilog_rl.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/VERILOG_REWARDS.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/VERILOG_RL_CHECKLIST.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/crafter_eval_synth_qwen4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/crafter_eval_text_only_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/crafter_sft_qwen30b_lora.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/crafter_synth_backend.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/verilog_eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/configs/verilog_eval_synth_qwen8b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/convert_traces_to_sft.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/crafter_rl_lora.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/judges/crafter_backend_judge.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/judges/verilog_backend_judge.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/readme.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/run_sft_qwen30b.sh +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/sse_metrics_streaming_notes.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/task_app_config_notes.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/multi_step/verilog_rl_lora.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/_shared.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/generate_dataset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/infer_ft_smoke.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/infer_prod_proxy.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/infer_via_synth.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/scripts/infer_coder.sh +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/scripts/train_coder_30b.sh +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/sft_full_17b.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/sft_lora_30b.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/subset_jsonl.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/todos.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_coder/validate_jsonl.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/BUGS_AND_FIXES.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/IMAGE_VALIDATION_COMPLETE.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/IMAGE_VALIDATION_SUMMARY.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/INFERENCE_SFT_TESTS.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/NEXT_STEPS_2B.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/QUICKSTART.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/QUICKSTART_RL_VISION.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/RL_VISION_COMPLETE.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/RL_VISION_TESTING.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/SDK_VISION_INTEGRATION.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/VLM_PIPELINE_COMPLETE.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/configs/eval_gpt4o_vision_proper.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/configs/filter_vision_test.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/configs/sft_qwen3_vl_2b_test.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/crafter_gpt5nano_agent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/run_vision_sft_pipeline.sh +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/test_image_validation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/qwen_vl/test_sft_vision_data.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/download_dataset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/run_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/rl/task_app/math_task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/sft/evaluate.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/sft/export_dataset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/sft/generate_traces.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/grpo_swe_mini_task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/branching.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/environment_routes.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/hosted_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/main.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/policy_routes.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/rollout.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/storage/volume.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/test_agents.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/test_service.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/swe/task_app/hosted/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/IMAGE_ONLY_EVAL_QUICKSTART.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/TESTING.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/CREATE_SFT_DATASET.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/EVAL_IMAGE_ONLY_RESULTS.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/FILTER_COMMAND_STATUS.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/QUERY_EXAMPLES.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/README_IMAGE_ONLY_EVAL.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/eval_image_only_gpt4o.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/eval_text_only_groq_llama.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/filter_sft_dataset.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/modal_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/task_app/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/task_app/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/eval_groq_qwen32.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/filter_sft.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/task_app/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/task_app/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/task_app/grpo_enron.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/conftest.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/integration/test_enron_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/integration/test_enron_rollout.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/enron/tests/unit/test_enron_environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/math/math_single_step.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/math/math_task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_battle/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_battle/modal_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_battle/task_app/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_battle/task_app/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_COMPLETE.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_STATUS.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_red/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_red/pallet_town_rl_config.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/pokemon_red/test_pallet_town_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/eval_groq_qwen32.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/eval_openai_gpt5.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/filter_sft.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/conftest.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/filter_sft.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/task_app/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/task_app/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/task_app/grpo_verilog.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/conftest.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/integration/test_verilog_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/integration/test_verilog_rollout.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/task_apps/verilog/tests/unit/test_verilog_scoring.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/vlm/PROPOSAL.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/vlm/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/vlm/crafter_image_only_agent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/vlm/crafter_openai_vlm_agent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/vlm/filter_image_rows.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/vlm/run_crafter_vlm_benchmark.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/analyze_trace_db.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/export_trace_sft.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/groq_test.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/manage_secrets.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/old/event_rewards.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/old/notes.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/readme.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_fft_and_save.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_local_rollout.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_local_rollout_modal.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/run_rollout_remote.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/download_dataset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/run_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/examples/workflows/math_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/setup.cfg +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/__main__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/_utils/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/_utils/base_url.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/_utils/http.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/_utils/prompts.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/_utils/task_app_state.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/_utils/user_config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/models/supported.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/config_finder.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/env_resolver.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/pollers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/supported_algos.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/api/train/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/_modal_wrapper.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/_storage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/_typer_patch.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/_validate_task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/balance.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/calc.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/legacy_root_backup.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/lib/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/lib/task_app_discovery.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/lib/task_app_env.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/recent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/rl_demo.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/root.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/task_app_list.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/traces.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/turso.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/cli/watch.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/config/base_url.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/core/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/core/cli.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/crafter/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/crafter/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/_common.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/config.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/deploy_modal.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/_common.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/config.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/deploy_modal.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/modal_task_app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/demos/math/task_app_entry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/artifacts/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/artifacts/base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/db/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/db/sqlite.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/resources/sqlite.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/results.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/rewards/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/rewards/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/shared_engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/environment/tools/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/bandit/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/bandit/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/bandit/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/bandit/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/run_rollouts_for_models_and_compare_v3.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/config_logging.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/enron/units/keyword_stats.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/environment_mapping.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/minigrid/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/achievements.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/nethack/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/config_logging.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/memory_map.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/engine_helpers/state_extraction.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/red/units/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/sokoban/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/tictactoe/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/tictactoe/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/tictactoe/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/tictactoe/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/verilog/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/verilog/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/verilog/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/verilog/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/wordle/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/wordle/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/wordle/environment.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/examples/wordle/taskset.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/reproducibility/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/reproducibility/helpers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/reproducibility/tree.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/service/app.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/service/core_routes.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/service/external_registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/service/registry.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/stateful/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/stateful/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/stateful/engine.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/stateful/state.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/tasks/api.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/tasks/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/tasks/filters.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/tasks/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/v0_observability/history.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/environments/v0_observability/log.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/evals/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/evals/base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/evals/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/evals/types.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/http_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/inference/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/inference/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/jobs/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/algorithms.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/constants.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/core.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/ft_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/gateway.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/health.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/jobs.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/rl/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/rl/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/rl/contracts.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/rl/env_keys.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/rl/secrets.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/rl_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/sft/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/sft/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/sft/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/sft/data.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/sse.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/learning/validators.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/lm/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/py.typed +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/apps/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/auth.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/contracts.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/datasets.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/errors.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/health.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/json.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/proxy.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/rubrics/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/rubrics/loaders.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/rubrics/models.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/rubrics/scoring.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/rubrics/strict.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/rubrics.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/server.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/trace_correlation_helpers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/tracing_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/task/vendors.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/constants.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/db_config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/examples/basic_usage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/hooks.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/lm_call_record_abstractions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/replica_sync.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/serialization.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/exceptions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/factory.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/types.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/storage/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/trace_utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/turso/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/turso/daemon.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/turso/models.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/turso/native_manager.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/tracing_v3/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/base_url.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/cli.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/process.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/prompts.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/sqld.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/task_app_discovery.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/task_app_env.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/task_app_state.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/utils/user_config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/api/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/api/models/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/api/models/supported.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/config/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/config/base_url.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/constants.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/dbs.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/ephemeral.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/handler.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/initialize.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/caching/persistent.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/constants.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/all.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/exceptions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/main.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/main_v3.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/synth_models.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/core/vendor_clients.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/cost/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/cost/monitor.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/cost/statefulness.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/injection.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/overrides.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/provider_support/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/provider_support/anthropic.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/provider_support/openai.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/provider_support/suppress_logging.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/structured_outputs/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/structured_outputs/handler.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/structured_outputs/inject.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/tools/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/tools/base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/unified_interface.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/core/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/core/gemini_api.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/core/mistral_api.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/core/openai_api.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/local/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/local/ollama.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/openai_standard.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/retries.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/deepseek.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/grok.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/groq.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/ollama.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/openrouter.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/supported/together.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/vendors/synth_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/lm/warmup.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/abstractions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/base_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/client_manager.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/context.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/decorators.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/events/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/events/manage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/events/scope.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/events/store.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/immediate_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/local.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/log_client_base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/retry_queue.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/trackers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/upload.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/abstractions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/base_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/client_manager.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/config.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/context.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/decorators.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/events/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/events/manage.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/events/scope.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/events/store.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/immediate_client.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/local.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/log_client_base.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/retry_queue.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/trackers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/upload.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v1/utils.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai/v0/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai.egg-info/dependency_links.txt +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai.egg-info/entry_points.txt +0 -0
- {synth_ai-0.2.16 → synth_ai-0.2.17}/synth_ai.egg-info/top_level.txt +0 -0
synth_ai-0.2.17/PKG-INFO
ADDED
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: synth-ai
|
|
3
|
+
Version: 0.2.17
|
|
4
|
+
Summary: RL as a service SDK - Core AI functionality and tracing
|
|
5
|
+
Author-email: Synth AI <josh@usesynth.ai>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/synth-laboratories/synth-ai
|
|
8
|
+
Project-URL: Repository, https://github.com/synth-laboratories/synth-ai
|
|
9
|
+
Project-URL: Issues, https://github.com/synth-laboratories/synth-ai/issues
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: pydantic>=2.0.0
|
|
14
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
15
|
+
Requires-Dist: requests>=2.32.3
|
|
16
|
+
Requires-Dist: urllib3>=2.3.0
|
|
17
|
+
Requires-Dist: certifi>=2024.8.30
|
|
18
|
+
Requires-Dist: tqdm>=4.66.4
|
|
19
|
+
Requires-Dist: jsonschema>=4.23.0
|
|
20
|
+
Requires-Dist: backoff>=2.0.0
|
|
21
|
+
Requires-Dist: typing_extensions>=4.0.0
|
|
22
|
+
Requires-Dist: rich>=13.9.0
|
|
23
|
+
Requires-Dist: openai>=1.99.0
|
|
24
|
+
Requires-Dist: anthropic>=0.42.0
|
|
25
|
+
Requires-Dist: langfuse<3.0.0,>=2.53.9
|
|
26
|
+
Requires-Dist: opentelemetry-api<1.27.0,>=1.26.0
|
|
27
|
+
Requires-Dist: opentelemetry-sdk<1.27.0,>=1.26.0
|
|
28
|
+
Requires-Dist: diskcache>=5.6.3
|
|
29
|
+
Requires-Dist: groq>=0.30.0
|
|
30
|
+
Requires-Dist: google-genai>=1.26.0
|
|
31
|
+
Requires-Dist: together>=1.5.21
|
|
32
|
+
Requires-Dist: mistralai>=1.9.2
|
|
33
|
+
Requires-Dist: fastapi>=0.115.12
|
|
34
|
+
Requires-Dist: uvicorn>=0.34.2
|
|
35
|
+
Requires-Dist: numpy>=2.2.3
|
|
36
|
+
Requires-Dist: networkx>=3.4.2
|
|
37
|
+
Requires-Dist: redis>=6.2.0
|
|
38
|
+
Requires-Dist: duckdb>=1.0.0
|
|
39
|
+
Requires-Dist: ty>=0.0.1a5
|
|
40
|
+
Requires-Dist: toml>=0.10.2
|
|
41
|
+
Requires-Dist: sqlalchemy>=2.0.42
|
|
42
|
+
Requires-Dist: aiosqlite>=0.21.0
|
|
43
|
+
Requires-Dist: greenlet>=3.2.3
|
|
44
|
+
Requires-Dist: libsql>=0.1.8
|
|
45
|
+
Requires-Dist: pynacl>=1.5.0
|
|
46
|
+
Requires-Dist: google-api-core>=2.25.1
|
|
47
|
+
Requires-Dist: google-generativeai>=0.8.5
|
|
48
|
+
Requires-Dist: crafter>=1.8.3
|
|
49
|
+
Requires-Dist: click<8.2,>=8.1.7
|
|
50
|
+
Requires-Dist: openai-harmony>=0.0.1
|
|
51
|
+
Requires-Dist: asyncpg>=0.30.0
|
|
52
|
+
Requires-Dist: aiohttp>=3.8.0
|
|
53
|
+
Requires-Dist: httpx>=0.28.1
|
|
54
|
+
Requires-Dist: datasets>=4.0.0
|
|
55
|
+
Requires-Dist: transformers>=4.56.1
|
|
56
|
+
Requires-Dist: modal==1.1.4
|
|
57
|
+
Requires-Dist: pyboy>=2.6.0
|
|
58
|
+
Requires-Dist: setuptools>=80.9.0
|
|
59
|
+
Provides-Extra: dev
|
|
60
|
+
Requires-Dist: build>=1.2.2.post1; extra == "dev"
|
|
61
|
+
Requires-Dist: twine>=4.0.0; extra == "dev"
|
|
62
|
+
Requires-Dist: keyring>=24.0.0; extra == "dev"
|
|
63
|
+
Requires-Dist: pytest>=8.3.3; extra == "dev"
|
|
64
|
+
Requires-Dist: pytest-xdist>=3.6.1; extra == "dev"
|
|
65
|
+
Requires-Dist: pytest-timeout>=2.3.1; extra == "dev"
|
|
66
|
+
Requires-Dist: pytest-asyncio>=0.24.0; extra == "dev"
|
|
67
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
68
|
+
Requires-Dist: pyright>=1.1.350; extra == "dev"
|
|
69
|
+
Requires-Dist: coverage[toml]>=7.3.0; extra == "dev"
|
|
70
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
71
|
+
Provides-Extra: research
|
|
72
|
+
Requires-Dist: crafter>=1.8.3; extra == "research"
|
|
73
|
+
Requires-Dist: datasets>=4.0.0; extra == "research"
|
|
74
|
+
Provides-Extra: swe
|
|
75
|
+
Requires-Dist: morphcloud>=0.1.3; extra == "swe"
|
|
76
|
+
Requires-Dist: swebench>=2.3.0; extra == "swe"
|
|
77
|
+
Provides-Extra: all
|
|
78
|
+
Requires-Dist: crafter>=1.8.3; extra == "all"
|
|
79
|
+
Requires-Dist: datasets>=4.0.0; extra == "all"
|
|
80
|
+
Requires-Dist: morphcloud>=0.1.3; extra == "all"
|
|
81
|
+
Requires-Dist: swebench>=2.3.0; extra == "all"
|
|
82
|
+
Provides-Extra: analytics
|
|
83
|
+
Requires-Dist: pandas>=2.2.3; extra == "analytics"
|
|
84
|
+
Dynamic: license-file
|
|
85
|
+
|
|
86
|
+
# Synth-AI SDK
|
|
87
|
+
|
|
88
|
+
[](https://www.python.org/)
|
|
89
|
+
[](LICENSE)
|
|
90
|
+
[](https://pypi.org/project/synth-ai/)
|
|
91
|
+

|
|
92
|
+

|
|
93
|
+

|
|
94
|
+
|
|
95
|
+
> **Synth-AI** — Reinforcement Learning-as-a-Service for agents.
|
|
96
|
+
> **Docs:** [Get Started →](https://docs.usesynth.ai/sdk/get-started)
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## 🚀 Install version 0.2.16
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
pip install synth-ai
|
|
104
|
+
# or
|
|
105
|
+
uv add synth-ai
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
**Import:**
|
|
109
|
+
|
|
110
|
+
```python
|
|
111
|
+
import synth_ai
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
**CLI (with uvx):**
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
uvx synth-ai setup
|
|
118
|
+
uvx synth-ai demo
|
|
119
|
+
uvx synth-ai deploy
|
|
120
|
+
uvx synth-ai run
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
> Full quickstart: [https://docs.usesynth.ai/sdk/get-started](https://docs.usesynth.ai/sdk/get-started)
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
When you run `uvx synth-ai setup`, the SDK opens your browser to the Synth dashboard for a one‑time pairing (handshake) with your signed‑in session. The SDK will automatically:
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
Fast and effective reinforcement learning for agents, via an API.
|
|
131
|
+
Easily scale GPU topologies, train multi-node, and integrate with existing agent software.
|
|
132
|
+
|
|
133
|
+
### Highlights
|
|
134
|
+
|
|
135
|
+
- Scale GPU topologies (A10Gs, H100s, multi-node available on request)
|
|
136
|
+
- Thin FastAPI wrapper integration
|
|
137
|
+
- Supports OSS models like **Qwen3** (GPT-OSS GA soon)
|
|
138
|
+
- Own your trained models
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
## ⚙️ Getting Started
|
|
143
|
+
|
|
144
|
+
Synth-AI ships with a built-in RL example: training **Qwen3-0.6B** on math reasoning.
|
|
145
|
+
|
|
146
|
+
1. Create accounts at [Synth](https://usesynth.ai) and [Modal](https://modal.com)
|
|
147
|
+
2. Then run:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
uvx synth-ai demo
|
|
151
|
+
uvx synth-ai setup
|
|
152
|
+
uvx synth-ai deploy
|
|
153
|
+
uvx synth-ai run
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
3. To walk through your first RL run, see
|
|
157
|
+
👉 [Synth-AI SDK Docs](https://docs.usesynth.ai/sdk/get-started)
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## 🔐 SDK → Dashboard Pairing
|
|
162
|
+
|
|
163
|
+
When you run `uvx synth-ai setup` (or legacy `uvx synth-ai rl_demo setup`):
|
|
164
|
+
|
|
165
|
+
- The SDK opens your browser to the Synth dashboard to pair your SDK with your signed-in session.
|
|
166
|
+
- Automatically detects your **user + organization**
|
|
167
|
+
- Ensures both **API keys** exist
|
|
168
|
+
- Writes them to your project’s `.env` as:
|
|
169
|
+
|
|
170
|
+
```
|
|
171
|
+
SYNTH_API_KEY=
|
|
172
|
+
ENVIRONMENT_API_KEY=
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
✅ No keys printed or requested interactively — all handled via browser pairing.
|
|
176
|
+
|
|
177
|
+
### Environment overrides
|
|
178
|
+
|
|
179
|
+
- `SYNTH_CANONICAL_ORIGIN` → override dashboard base URL (default: https://www.usesynth.ai/dashboard)
|
|
180
|
+
- `SYNTH_CANONICAL_DEV` → `1|true|on` to use local dashboard (http://localhost:3000)
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
184
|
+
## 📚 Documentation
|
|
185
|
+
|
|
186
|
+
- **SDK Docs:** [https://docs.usesynth.ai/sdk/get-started](https://docs.usesynth.ai/sdk/get-started)
|
|
187
|
+
- **CLI Reference:** [https://docs.usesynth.ai/cli](https://docs.usesynth.ai/cli)
|
|
188
|
+
- **API Reference:** [https://docs.usesynth.ai/api](https://docs.usesynth.ai/api)
|
|
189
|
+
- **Changelog:** [https://docs.usesynth.ai/changelog](https://docs.usesynth.ai/changelog)
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## 🧠 Meta
|
|
194
|
+
|
|
195
|
+
- Package: [`synth-ai`](https://pypi.org/project/synth-ai)
|
|
196
|
+
- Import: `synth_ai`
|
|
197
|
+
- Source: [github.com/synth-laboratories/synth-ai](https://github.com/synth-laboratories/synth-ai)
|
|
198
|
+
- License: MIT
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
# Synth-AI SDK
|
|
2
|
+
|
|
3
|
+
[](https://www.python.org/)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://pypi.org/project/synth-ai/)
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
> **Synth-AI** — Reinforcement Learning-as-a-Service for agents.
|
|
11
|
+
> **Docs:** [Get Started →](https://docs.usesynth.ai/sdk/get-started)
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 🚀 Install version 0.2.16
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pip install synth-ai
|
|
19
|
+
# or
|
|
20
|
+
uv add synth-ai
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
**Import:**
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
import synth_ai
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
**CLI (with uvx):**
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
uvx synth-ai setup
|
|
33
|
+
uvx synth-ai demo
|
|
34
|
+
uvx synth-ai deploy
|
|
35
|
+
uvx synth-ai run
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
> Full quickstart: [https://docs.usesynth.ai/sdk/get-started](https://docs.usesynth.ai/sdk/get-started)
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
When you run `uvx synth-ai setup`, the SDK opens your browser to the Synth dashboard for a one‑time pairing (handshake) with your signed‑in session. The SDK will automatically:
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Fast and effective reinforcement learning for agents, via an API.
|
|
46
|
+
Easily scale GPU topologies, train multi-node, and integrate with existing agent software.
|
|
47
|
+
|
|
48
|
+
### Highlights
|
|
49
|
+
|
|
50
|
+
- Scale GPU topologies (A10Gs, H100s, multi-node available on request)
|
|
51
|
+
- Thin FastAPI wrapper integration
|
|
52
|
+
- Supports OSS models like **Qwen3** (GPT-OSS GA soon)
|
|
53
|
+
- Own your trained models
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## ⚙️ Getting Started
|
|
58
|
+
|
|
59
|
+
Synth-AI ships with a built-in RL example: training **Qwen3-0.6B** on math reasoning.
|
|
60
|
+
|
|
61
|
+
1. Create accounts at [Synth](https://usesynth.ai) and [Modal](https://modal.com)
|
|
62
|
+
2. Then run:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
uvx synth-ai demo
|
|
66
|
+
uvx synth-ai setup
|
|
67
|
+
uvx synth-ai deploy
|
|
68
|
+
uvx synth-ai run
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
3. To walk through your first RL run, see
|
|
72
|
+
👉 [Synth-AI SDK Docs](https://docs.usesynth.ai/sdk/get-started)
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## 🔐 SDK → Dashboard Pairing
|
|
77
|
+
|
|
78
|
+
When you run `uvx synth-ai setup` (or legacy `uvx synth-ai rl_demo setup`):
|
|
79
|
+
|
|
80
|
+
- The SDK opens your browser to the Synth dashboard to pair your SDK with your signed-in session.
|
|
81
|
+
- Automatically detects your **user + organization**
|
|
82
|
+
- Ensures both **API keys** exist
|
|
83
|
+
- Writes them to your project’s `.env` as:
|
|
84
|
+
|
|
85
|
+
```
|
|
86
|
+
SYNTH_API_KEY=
|
|
87
|
+
ENVIRONMENT_API_KEY=
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
✅ No keys printed or requested interactively — all handled via browser pairing.
|
|
91
|
+
|
|
92
|
+
### Environment overrides
|
|
93
|
+
|
|
94
|
+
- `SYNTH_CANONICAL_ORIGIN` → override dashboard base URL (default: https://www.usesynth.ai/dashboard)
|
|
95
|
+
- `SYNTH_CANONICAL_DEV` → `1|true|on` to use local dashboard (http://localhost:3000)
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
## 📚 Documentation
|
|
100
|
+
|
|
101
|
+
- **SDK Docs:** [https://docs.usesynth.ai/sdk/get-started](https://docs.usesynth.ai/sdk/get-started)
|
|
102
|
+
- **CLI Reference:** [https://docs.usesynth.ai/cli](https://docs.usesynth.ai/cli)
|
|
103
|
+
- **API Reference:** [https://docs.usesynth.ai/api](https://docs.usesynth.ai/api)
|
|
104
|
+
- **Changelog:** [https://docs.usesynth.ai/changelog](https://docs.usesynth.ai/changelog)
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## 🧠 Meta
|
|
109
|
+
|
|
110
|
+
- Package: [`synth-ai`](https://pypi.org/project/synth-ai)
|
|
111
|
+
- Import: `synth_ai`
|
|
112
|
+
- Source: [github.com/synth-laboratories/synth-ai](https://github.com/synth-laboratories/synth-ai)
|
|
113
|
+
- License: MIT
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# Run Crafter agent and analyze semantic map word distribution
|
|
4
|
+
# This script demonstrates semantic analysis of agent observations
|
|
5
|
+
# Output: Markdown tables and JSON data (no plotting dependencies)
|
|
6
|
+
|
|
7
|
+
echo "🔍 Analyzing semantic map words from Crafter agent..."
|
|
8
|
+
echo "Make sure the synth-ai service is running: uvx synth-ai deploy --runtime uvicorn"
|
|
9
|
+
echo ""
|
|
10
|
+
|
|
11
|
+
cd synth_ai/environments/examples/crafter_classic/agent_demos/
|
|
12
|
+
|
|
13
|
+
# Run the semantic analysis (markdown output only)
|
|
14
|
+
python analyze_semantic_words_markdown.py --model gemini-1.5-flash --episodes 3 --max-turns 30
|
|
15
|
+
|
|
16
|
+
echo ""
|
|
17
|
+
echo "✅ Analysis complete! Check the generated markdown report and JSON files."
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# Pokémon VL: Vision-Language RL Pipeline
|
|
2
|
+
|
|
3
|
+
This playbook demonstrates end-to-end vision-language reinforcement learning on Pokémon Red using Synth AI's CLI tools. We follow the eval → collect data → SFT → RL → eval pipeline, but with vision models throughout.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
**Model**: Qwen3-VL-4B-Instruct (4B parameter vision-language model via Synth API)
|
|
8
|
+
**Environment**: Pokémon Red (Game Boy emulation with vision support)
|
|
9
|
+
**Benchmark**: Pallet Town progression task (leave bedroom → get starter → win first battle)
|
|
10
|
+
|
|
11
|
+
## Pipeline Steps
|
|
12
|
+
|
|
13
|
+
1. **Deploy Task App** - Host the Pokémon Red environment
|
|
14
|
+
2. **Collect Vision Rollouts** - Generate high-quality demonstrations using Qwen3-VL
|
|
15
|
+
3. **Filter Dataset** - Extract successful trajectories for supervised fine-tuning
|
|
16
|
+
4. **Fine-Tune Qwen3-4B VL** - Train vision-language model on filtered data
|
|
17
|
+
5. **Vision-Language RL** - Bootstrap RL training from SFT checkpoint
|
|
18
|
+
6. **Final Evaluation** - Compare SFT and RL performance
|
|
19
|
+
|
|
20
|
+
## Prerequisites
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
# Install dependencies
|
|
24
|
+
uv pip install -e .
|
|
25
|
+
|
|
26
|
+
# Setup authentication
|
|
27
|
+
uvx synth-ai setup
|
|
28
|
+
|
|
29
|
+
# Copy environment template
|
|
30
|
+
cp examples/blog_posts/pokemon_vl/.env.example .env
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Quick Start
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
# Export trace database path
|
|
37
|
+
export POKEMON_VL_TRACE_DB=traces/v3/pokemon_vl_blog.db
|
|
38
|
+
|
|
39
|
+
# 1. Deploy task app
|
|
40
|
+
uvx synth-ai deploy pokemon_red --runtime modal --name pokemon-vl-blog --env-file .env
|
|
41
|
+
|
|
42
|
+
# 2. Collect vision rollouts with Qwen3-VL
|
|
43
|
+
uvx synth-ai eval pokemon_red --config examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml --trace-db "${POKEMON_VL_TRACE_DB}"
|
|
44
|
+
|
|
45
|
+
# 3. Filter high-reward trajectories
|
|
46
|
+
uvx synth-ai filter --config examples/blog_posts/pokemon_vl/configs/filter_high_reward.toml
|
|
47
|
+
|
|
48
|
+
# 4. Fine-tune Qwen3-4B VL
|
|
49
|
+
uvx synth-ai train --type sft --config examples/blog_posts/pokemon_vl/configs/train_sft_qwen4b_vl.toml --env-file .env --poll
|
|
50
|
+
|
|
51
|
+
# 5. RL from SFT checkpoint (replace JOB_ID)
|
|
52
|
+
uvx synth-ai train --type rl --config examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml --env-file .env --poll
|
|
53
|
+
|
|
54
|
+
# 6. Evaluate final RL model
|
|
55
|
+
uvx synth-ai eval pokemon_red --config examples/blog_posts/pokemon_vl/configs/eval_rl_final.toml --trace-db "${POKEMON_VL_TRACE_DB}"
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Vision Features
|
|
59
|
+
|
|
60
|
+
- **Full Game Boy Frames**: Base64-encoded PNG screenshots (160x144 resolution)
|
|
61
|
+
- **Vision-Only Mode**: Pure image understanding without text state
|
|
62
|
+
- **Vision + Text Mode**: Combined visual and structured state information
|
|
63
|
+
- **Efficient Action Batching**: `execute_sequence` tool for 5-10 actions per inference call
|
|
64
|
+
|
|
65
|
+
## Expected Results
|
|
66
|
+
|
|
67
|
+
| Stage | Model | Mean Reward | Success Rate | Best Achievement |
|
|
68
|
+
|-------|-------|-------------|--------------|------------------|
|
|
69
|
+
| Initial | Qwen3-VL (vision) | ~150 | 60% | Win first battle |
|
|
70
|
+
| SFT | Qwen3-4B VL | ~200 | 75% | Win first battle + explore |
|
|
71
|
+
| RL | Qwen3-4B VL + RL | ~350 | 85% | Complete Pallet Town |
|
|
72
|
+
|
|
73
|
+
## Files
|
|
74
|
+
|
|
75
|
+
- `configs/` - All TOML configuration files
|
|
76
|
+
- `ft_data/` - Filtered datasets for fine-tuning
|
|
77
|
+
- `.env.example` - Environment variables template
|
|
78
|
+
|
|
79
|
+
## Vision Model Configuration
|
|
80
|
+
|
|
81
|
+
The vision models receive:
|
|
82
|
+
- **Input**: Game Boy screenshot + optional structured state (position, HP, party, etc.)
|
|
83
|
+
- **Output**: Sequence of button presses via `execute_sequence` tool
|
|
84
|
+
- **Action Space**: UP, DOWN, LEFT, RIGHT, A, B, START, SELECT with frame counts
|
|
85
|
+
|
|
86
|
+
## Reward Function
|
|
87
|
+
|
|
88
|
+
Dense rewards for Pallet Town progression:
|
|
89
|
+
- Leave bedroom (+20)
|
|
90
|
+
- Exit house (+30)
|
|
91
|
+
- Find Oak's lab (+40)
|
|
92
|
+
- Talk to Oak (+50)
|
|
93
|
+
- Get starter Pokémon (+100)
|
|
94
|
+
- Enter battle (+75)
|
|
95
|
+
- Deal damage (+50 per 10HP)
|
|
96
|
+
- Win battle (+150)
|
|
97
|
+
|
|
98
|
+
Total possible: ~700 points
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[eval]
|
|
2
|
+
app_id = "pokemon_red"
|
|
3
|
+
task_app_url = "https://synth-laboratories--pokemon-vl-qwen-xml-fastapi-app.modal.run"
|
|
4
|
+
model = "Qwen/Qwen3-VL-8B-Instruct" # Vision-capable Qwen3-VL model
|
|
5
|
+
seeds = [10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
|
|
6
|
+
max_turns = 10
|
|
7
|
+
concurrency = 2
|
|
8
|
+
env_name = "pokemon_red"
|
|
9
|
+
policy_name = "pokemon_vl_qwen3_vl"
|
|
10
|
+
trace_format = "full"
|
|
11
|
+
return_trace = true
|
|
12
|
+
|
|
13
|
+
[eval.policy_config]
|
|
14
|
+
provider = "synth" # Use Synth internal API for vision models
|
|
15
|
+
model = "Qwen/Qwen3-VL-8B-Instruct" # Vision-capable Qwen3-VL model
|
|
16
|
+
inference_url = "http://localhost:8000/api/inference/v1/chat/completions"
|
|
17
|
+
temperature = 1.0 # Higher temperature to encourage tool calling
|
|
18
|
+
top_p = 0.95
|
|
19
|
+
max_tokens = 4096
|
|
20
|
+
use_vision = true
|
|
21
|
+
image_only_mode = false
|
|
22
|
+
max_llm_calls = 10
|
|
23
|
+
|
|
24
|
+
[eval.env_config.env_params]
|
|
25
|
+
max_steps_per_episode = 10
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[eval]
|
|
2
|
+
app_id = "pokemon_red"
|
|
3
|
+
task_app_url = "http://127.0.0.1:8914"
|
|
4
|
+
model = "fft:REPLACE-WITH-RL-JOB-ID" # Update with final RL job ID
|
|
5
|
+
seeds = [100, 101, 102, 103, 104, 105, 106, 107, 108, 109]
|
|
6
|
+
max_turns = 15 # Allow more steps for trained model
|
|
7
|
+
concurrency = 3
|
|
8
|
+
env_name = "pokemon_red"
|
|
9
|
+
policy_name = "pokemon_vl_rl_final"
|
|
10
|
+
trace_format = "full"
|
|
11
|
+
return_trace = true
|
|
12
|
+
|
|
13
|
+
[eval.policy_config]
|
|
14
|
+
provider = "synth"
|
|
15
|
+
model = "fft:REPLACE-WITH-RL-JOB-ID" # Update with final RL job ID
|
|
16
|
+
temperature = 0.1 # Lower temperature for evaluation
|
|
17
|
+
top_p = 0.9
|
|
18
|
+
max_tokens = 4096
|
|
19
|
+
use_vision = true
|
|
20
|
+
image_only_mode = false
|
|
21
|
+
max_llm_calls = 15
|
|
22
|
+
|
|
23
|
+
[eval.env_config.env_params]
|
|
24
|
+
max_steps_per_episode = 15
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Filter high-quality vision-language rollouts for SFT training
|
|
2
|
+
# Assumes traces stored in pokemon_vl_blog.db via eval commands
|
|
3
|
+
|
|
4
|
+
[filter]
|
|
5
|
+
db = "traces/v3/pokemon_vl_blog.db"
|
|
6
|
+
output = "examples/blog_posts/pokemon_vl/ft_data/pokemon_vl_high_reward.jsonl"
|
|
7
|
+
min_official_score = 0.3 # Require at least 30% completion (Pallet Town progression)
|
|
8
|
+
models = ["Qwen/Qwen3-VL-4B-Instruct"] # Vision models used for rollouts
|
|
9
|
+
shuffle = true
|
|
10
|
+
shuffle_seed = 42
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Vision-Language RL: Continue training Qwen3-4B VL from SFT checkpoint
|
|
2
|
+
# Update task_url with deployed Modal task app URL
|
|
3
|
+
# Set model.source to the SFT job id from `uvx synth-ai train --type sft`
|
|
4
|
+
|
|
5
|
+
type = "rl"
|
|
6
|
+
|
|
7
|
+
[services]
|
|
8
|
+
task_url = "http://127.0.0.1:8914"
|
|
9
|
+
|
|
10
|
+
[compute]
|
|
11
|
+
gpu_type = "H100"
|
|
12
|
+
gpu_count = 8
|
|
13
|
+
|
|
14
|
+
[topology]
|
|
15
|
+
gpus_for_vllm = 4
|
|
16
|
+
gpus_for_training = 3
|
|
17
|
+
gpus_for_ref = 1
|
|
18
|
+
|
|
19
|
+
[vllm]
|
|
20
|
+
tensor_parallel_size = 4
|
|
21
|
+
|
|
22
|
+
[model]
|
|
23
|
+
source = "fft:REPLACE-WITH-SFT-JOB-ID" # Update with actual SFT job ID
|
|
24
|
+
label = "pokemon_vl_rl_blog"
|
|
25
|
+
supports_vision = true
|
|
26
|
+
|
|
27
|
+
[rollout]
|
|
28
|
+
max_turns = 10
|
|
29
|
+
episodes_per_batch = 64
|
|
30
|
+
|
|
31
|
+
[evaluation]
|
|
32
|
+
instances = 100
|
|
33
|
+
every_n_iters = 20
|
|
34
|
+
seeds = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]
|
|
35
|
+
|
|
36
|
+
[training]
|
|
37
|
+
log_interval = 1
|
|
38
|
+
|
|
39
|
+
[training.weight_sync]
|
|
40
|
+
enable = true
|
|
41
|
+
targets = ["policy"]
|
|
42
|
+
weight_sync_interval = 1
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Vision-Language Supervised Fine-Tuning: Qwen3-4B VL on filtered Pokémon rollouts
|
|
2
|
+
# Update the `data` path once `uvx synth-ai filter` produces your JSONL
|
|
3
|
+
|
|
4
|
+
[algorithm]
|
|
5
|
+
type = "offline"
|
|
6
|
+
method = "sft"
|
|
7
|
+
variety = "fft"
|
|
8
|
+
|
|
9
|
+
[job]
|
|
10
|
+
model = "Qwen/Qwen3-VL-4B-Instruct" # Vision-enabled Qwen3-VL model
|
|
11
|
+
data = "../ft_data/pokemon_vl_high_reward.jsonl"
|
|
12
|
+
poll_seconds = 1800
|
|
13
|
+
|
|
14
|
+
[compute]
|
|
15
|
+
gpu_type = "H100"
|
|
16
|
+
gpu_count = 4
|
|
17
|
+
nodes = 1
|
|
18
|
+
|
|
19
|
+
[data.topology]
|
|
20
|
+
container_count = 4
|
|
21
|
+
|
|
22
|
+
[training]
|
|
23
|
+
mode = "full_finetune"
|
|
24
|
+
use_qlora = false
|
|
25
|
+
|
|
26
|
+
[hyperparameters]
|
|
27
|
+
n_epochs = 2
|
|
28
|
+
world_size = 4
|
|
29
|
+
sequence_length = 4096 # Longer for vision tokens + text
|
|
30
|
+
per_device_batch = 2
|
|
31
|
+
gradient_accumulation_steps = 64
|
|
32
|
+
learning_rate = 8e-6
|
|
33
|
+
warmup_ratio = 0.03
|
|
34
|
+
|
|
35
|
+
[hyperparameters.parallelism]
|
|
36
|
+
use_deepspeed = true
|
|
37
|
+
deepspeed_stage = 3
|
|
38
|
+
fsdp = false
|
|
39
|
+
bf16 = true
|
|
40
|
+
fp16 = false
|