synth-ai 0.2.12__tar.gz → 0.2.13.dev2__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.12/synth_ai.egg-info → synth_ai-0.2.13.dev2}/PKG-INFO +4 -1
- synth_ai-0.2.13.dev2/examples/multi_step/configs/crafter_rl_outcome.toml +74 -0
- synth_ai-0.2.13.dev2/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +186 -0
- synth_ai-0.2.13.dev2/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +83 -0
- synth_ai-0.2.13.dev2/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +78 -0
- synth_ai-0.2.13.dev2/examples/multi_step/crafter_rl_lora.md +70 -0
- synth_ai-0.2.13.dev2/examples/multi_step/sse_metrics_streaming_notes.md +357 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/multi_step/task_app_config_notes.md +7 -1
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/grpo_swe_mini.py +55 -26
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/rollout.py +40 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl/task_app/synth_envs_hosted → synth_ai-0.2.13.dev2/examples/swe/task_app/hosted}/test_service.py +5 -6
- synth_ai-0.2.13.dev2/examples/task_apps/TESTING.md +275 -0
- synth_ai-0.2.13.dev2/examples/task_apps/crafter/task_app/__init__.py +2 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/grpo_crafter.py +21 -46
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/grpo_crafter_task_app.py +1 -1
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/policy.py +60 -4
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/inference/openai_client.py +109 -45
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/policy_routes.py +67 -49
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/rollout.py +242 -193
- {synth_ai-0.2.12/examples/swe/task_app/hosted → synth_ai-0.2.13.dev2/examples/task_apps/crafter/task_app/synth_envs_hosted}/test_service.py +5 -6
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md +811 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py +120 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py +160 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py +155 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py +69 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py +96 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py +1502 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py +4 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py +68 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py +216 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py +35 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py +631 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py +1544 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py +1428 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py +4848 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py +41 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py +298 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml +95 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py +204 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py +2152 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py +429 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py +155 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md +78 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py +122 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py +76 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py +413 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py +204 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py +133 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py +229 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py +300 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py +205 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py +200 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py +284 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py +468 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py +575 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py +311 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py +259 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py +372 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py +296 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py +275 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py +22 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py +44 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py +514 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py +415 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py +1763 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py +33 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py +106 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py +334 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py +1020 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py +188 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py +1481 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py +862 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/modal_app.py +114 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/task_app/README.md +81 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/task_app/__init__.py +6 -0
- synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py +685 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/eval_groq_qwen32.toml +16 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/task_app/README.md +14 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/task_app/__init__.py +1 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/task_app/grpo_enron.py +906 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/task_app/grpo_enron_task_app.py +146 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/conftest.py +115 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/integration/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/integration/test_enron_eval.py +177 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/integration/test_enron_rollout.py +135 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/unit/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/enron/tests/unit/test_enron_environment.py +126 -0
- {synth_ai-0.2.12/examples/rl/task_app → synth_ai-0.2.13.dev2/examples/task_apps/math}/math_single_step.py +19 -10
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_battle/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_battle/modal_app.py +104 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_battle/task_app/README.md +68 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_battle/task_app/__init__.py +6 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py +932 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_red/README.md +357 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_red/__init__.py +3 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +225 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_red/pallet_town_rl_config.toml +73 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_red/task_app.py +606 -0
- synth_ai-0.2.13.dev2/examples/task_apps/pokemon_red/test_pallet_town_rewards.py +191 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/README.md +307 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/__init__.py +3 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/eval_groq_qwen32.toml +16 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/eval_openai_gpt5.toml +16 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/task_app.py +1058 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/conftest.py +113 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/integration/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py +57 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py +198 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/unit/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py +114 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/__init__.py +1 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/eval_groq_qwen32b.toml +20 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/task_app/README.md +12 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/task_app/__init__.py +1 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/task_app/grpo_verilog.py +931 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +145 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/conftest.py +115 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/integration/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/integration/test_verilog_eval.py +179 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/integration/test_verilog_rollout.py +55 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/unit/__init__.py +2 -0
- synth_ai-0.2.13.dev2/examples/task_apps/verilog/tests/unit/test_verilog_scoring.py +118 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/crafter_openai_vlm_agent.py +4 -4
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/run_crafter_vlm_benchmark.py +4 -4
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +4 -2
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +4 -2
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_eval.py +127 -18
- synth_ai-0.2.13.dev2/examples/workflows/math_rl/download_dataset.py +80 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/pyproject.toml +4 -2
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/__init__.py +41 -1
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/builders.py +73 -29
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/cli.py +12 -6
- synth_ai-0.2.13.dev2/synth_ai/api/train/configs/__init__.py +44 -0
- synth_ai-0.2.13.dev2/synth_ai/api/train/configs/rl.py +134 -0
- synth_ai-0.2.13.dev2/synth_ai/api/train/configs/sft.py +95 -0
- synth_ai-0.2.13.dev2/synth_ai/api/train/configs/shared.py +24 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/env_resolver.py +5 -2
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/supported_algos.py +10 -5
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/utils.py +7 -4
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/__init__.py +7 -51
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/_storage.py +4 -3
- synth_ai-0.2.13.dev2/synth_ai/cli/_validate_task_app.py +11 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/balance.py +4 -3
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/calc.py +2 -2
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/demo.py +49 -43
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/legacy_root_backup.py +1 -1
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/rl_demo.py +86 -106
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/root.py +0 -97
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/task_apps.py +1710 -186
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/core/cli.py +121 -159
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +28 -16
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/environment.py +16 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/engine.py +7 -2
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/environment.py +68 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine.py +27 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/memory_map.py +7 -0
- synth_ai-0.2.13.dev2/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py +477 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/state_extraction.py +32 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/environment.py +60 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/taskset.py +116 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/engine.py +30 -4
- synth_ai-0.2.13.dev2/synth_ai/evals/__init__.py +15 -0
- synth_ai-0.2.13.dev2/synth_ai/evals/client.py +82 -0
- synth_ai-0.2.13.dev2/synth_ai/evals/types.py +42 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/jobs/client.py +16 -4
- synth_ai-0.2.13.dev2/synth_ai/judge_schemas.py +127 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/__init__.py +14 -5
- synth_ai-0.2.13.dev2/synth_ai/task/contracts.py +223 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/proxy.py +48 -56
- synth_ai-0.2.13.dev2/synth_ai/task/rubrics/__init__.py +53 -0
- synth_ai-0.2.13.dev2/synth_ai/task/rubrics/loaders.py +133 -0
- synth_ai-0.2.13.dev2/synth_ai/task/rubrics/models.py +57 -0
- synth_ai-0.2.13.dev2/synth_ai/task/rubrics/scoring.py +113 -0
- synth_ai-0.2.13.dev2/synth_ai/task/rubrics/strict.py +149 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/server.py +8 -7
- synth_ai-0.2.13.dev2/synth_ai/task/validators.py +274 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/decorators.py +7 -3
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/replica_sync.py +4 -4
- synth_ai-0.2.13.dev2/synth_ai/tracing_v3/serialization.py +130 -0
- synth_ai-0.2.13.dev2/synth_ai/tracing_v3/trace_utils.py +317 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/native_manager.py +3 -3
- synth_ai-0.2.13.dev2/synth_ai/v0/lm/vendors/__init__.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/lm/vendors/core/__init__.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/lm/vendors/local/__init__.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/lm/vendors/local/ollama.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/lm/vendors/supported/__init__.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/tracing/__init__.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/tracing/events/__init__.py +0 -0
- synth_ai-0.2.13.dev2/synth_ai/v0/tracing_v1/events/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2/synth_ai.egg-info}/PKG-INFO +4 -1
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/SOURCES.txt +177 -38
- synth_ai-0.2.13.dev2/synth_ai.egg-info/dependency_links.txt +1 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/entry_points.txt +0 -1
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/requires.txt +3 -0
- synth_ai-0.2.12/examples/multi_step/crafter_rl_lora.md +0 -29
- synth_ai-0.2.12/synth_ai/task/contracts.py +0 -137
- synth_ai-0.2.12/synth_ai/task/rubrics.py +0 -219
- synth_ai-0.2.12/synth_ai/task/validators.py +0 -11
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/LICENSE +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/MANIFEST.in +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/analyze_semantic_words.sh +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/crafter_debug_render.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/dev/qwen3_32b_qlora_4xh100.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/_shared.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/configs/coder_lora_30b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/configs/coder_lora_4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/configs/coder_lora_small.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/generate_dataset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/infer_ft_smoke.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/infer_prod_proxy.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/infer_via_synth.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/scripts/infer_coder.sh +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/scripts/train_coder_30b.sh +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/sft_full_17b.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/sft_lora_30b.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/subset_jsonl.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/todos.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/qwen_coder/validate_jsonl.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/rl/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/rl/download_dataset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/run_crafter_demo.sh +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/sft/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/sft/evaluate.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/sft/export_dataset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/sft/generate_traces.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/grpo_swe_mini_task_app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/branching.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/environment_routes.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/hosted_app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/main.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/policy_routes.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/registry.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/storage/volume.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/test_agents.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/utils.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/caching → synth_ai-0.2.13.dev2/examples/task_apps}/__init__.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/cost → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/__init__.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/README.md +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/hosted_app.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.12/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/utils.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/structured_outputs → synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server}/__init__.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/vendors → synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests}/__init__.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/vendors/core → synth_ai-0.2.13.dev2/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils}/__init__.py +0 -0
- /synth_ai-0.2.12/synth_ai.egg-info/dependency_links.txt → /synth_ai-0.2.13.dev2/examples/task_apps/enron/__init__.py +0 -0
- {synth_ai-0.2.12/examples/rl/task_app → synth_ai-0.2.13.dev2/examples/task_apps/math}/README.md +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/vendors/local → synth_ai-0.2.13.dev2/examples/task_apps/math}/__init__.py +0 -0
- {synth_ai-0.2.12/examples/rl/task_app → synth_ai-0.2.13.dev2/examples/task_apps/math}/math_task_app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/PROPOSAL.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/README.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/crafter_image_only_agent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/vlm/filter_image_rows.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/analyze_trace_db.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/crafter_fft.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/export_trace_sft.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/groq_test.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/manage_secrets.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/old/event_rewards.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/old/notes.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/readme.md +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_fft_and_save.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout_modal.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout_traced.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_rollout_remote.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/lm/vendors/supported → synth_ai-0.2.13.dev2/examples/workflows}/__init__.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/tracing → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/__init__.py +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/rl_from_base_qwen17.toml +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/run_eval.py +0 -0
- {synth_ai-0.2.12/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/run_rl_and_save.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/setup.cfg +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/__main__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/models/supported.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/config_finder.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/pollers.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/api/train/task_app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/_modal_wrapper.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/_typer_patch.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/man.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/recent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/status.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/traces.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/turso.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/cli/watch.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/compound/cais.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/config/base_url.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/core/experiment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/core/system.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demo_registry.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/core/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/_common.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/config.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/deploy_modal.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/artifacts/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/artifacts/base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/db/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/db/sqlite.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/registry.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/resources/sqlite.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/results.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/rewards/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/rewards/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/shared_engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/tools/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/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.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/config_logging.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/units/keyword_stats.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/environment_mapping.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/achievements.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/config_logging.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/units/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/environment.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/taskset.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/reproducibility/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/reproducibility/helpers.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/reproducibility/tree.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/app.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/core_routes.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/external_registry.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/registry.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/engine.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/state.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/api.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/filters.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/v0_observability/history.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/environments/v0_observability/log.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/evals/base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/handshake.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/http.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/http_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/inference/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/inference/client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/algorithms.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/constants.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/core.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/ft_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/gateway.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/health.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/jobs.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/contracts.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/env_keys.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/secrets.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/data.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/sse.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/learning/validators.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/lm/__init__.py +0 -0
- /synth_ai-0.2.12/synth_ai/v0/lm/caching/dbs.py → /synth_ai-0.2.13.dev2/synth_ai/py.typed +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/apps/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/auth.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/datasets.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/errors.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/health.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/json.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/tracing_utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/task/vendors.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/db_config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/examples/basic_usage.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/hooks.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/lm_call_record_abstractions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/migration_helper.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/exceptions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/factory.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/types.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/daemon.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/models.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/api/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/api/models/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/api/models/supported.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/config/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/config/base_url.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/__init__.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/tracing/events → synth_ai-0.2.13.dev2/synth_ai/v0/lm/caching}/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/constants.py +0 -0
- /synth_ai-0.2.12/synth_ai/v0/lm/vendors/core/synth_dev_api.py → /synth_ai-0.2.13.dev2/synth_ai/v0/lm/caching/dbs.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/ephemeral.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/handler.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/initialize.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/persistent.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/constants.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/all.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/exceptions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/main.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/main_v3.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/synth_models.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/vendor_clients.py +0 -0
- {synth_ai-0.2.12/synth_ai/v0/tracing_v1/events → synth_ai-0.2.13.dev2/synth_ai/v0/lm/cost}/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/cost/monitor.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/cost/statefulness.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/injection.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/overrides.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/anthropic.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/openai.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/suppress_logging.py +0 -0
- /synth_ai-0.2.12/synth_ai/v0/lm/vendors/local/ollama.py → /synth_ai-0.2.13.dev2/synth_ai/v0/lm/structured_outputs/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/structured_outputs/handler.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/structured_outputs/inject.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/tools/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/tools/base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/unified_interface.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/gemini_api.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/mistral_api.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/openai_api.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/openai_standard.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/retries.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/deepseek.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/grok.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/groq.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/ollama.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/openrouter.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/together.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/synth_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/warmup.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/abstractions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/base_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/client_manager.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/context.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/decorators.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/events/manage.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/events/scope.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/events/store.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/immediate_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/local.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/log_client_base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/retry_queue.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/trackers.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/upload.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/abstractions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/base_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/client_manager.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/config.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/context.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/decorators.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/events/manage.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/events/scope.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/events/store.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/immediate_client.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/local.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/log_client_base.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/retry_queue.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/trackers.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/upload.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/utils.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.12 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: synth-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13.dev2
|
|
4
4
|
Summary: RL as a service SDK - Core AI functionality and tracing
|
|
5
5
|
Author-email: Synth AI <josh@usesynth.ai>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -50,9 +50,12 @@ Requires-Dist: textual>=1.1.0
|
|
|
50
50
|
Requires-Dist: openai-harmony>=0.0.1
|
|
51
51
|
Requires-Dist: asyncpg>=0.30.0
|
|
52
52
|
Requires-Dist: aiohttp>=3.8.0
|
|
53
|
+
Requires-Dist: httpx>=0.28.1
|
|
53
54
|
Requires-Dist: datasets>=4.0.0
|
|
54
55
|
Requires-Dist: transformers>=4.56.1
|
|
55
56
|
Requires-Dist: modal==1.1.4
|
|
57
|
+
Requires-Dist: pyboy>=2.6.0
|
|
58
|
+
Requires-Dist: setuptools>=80.9.0
|
|
56
59
|
Provides-Extra: dev
|
|
57
60
|
Requires-Dist: build>=1.2.2.post1; extra == "dev"
|
|
58
61
|
Requires-Dist: twine>=4.0.0; extra == "dev"
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Crafter RL experiment – outcome rewards only (step rewards disabled)
|
|
2
|
+
|
|
3
|
+
[algorithm]
|
|
4
|
+
type = "online"
|
|
5
|
+
method = "policy_gradient"
|
|
6
|
+
variety = "gspo"
|
|
7
|
+
|
|
8
|
+
[services]
|
|
9
|
+
# Replace with the Modal URL printed by `uvx synth-ai modal-serve grpo-crafter`
|
|
10
|
+
task_url = "https://YOUR-MODAL-TASK-APP.modal.run"
|
|
11
|
+
|
|
12
|
+
[compute]
|
|
13
|
+
gpu_type = "H200"
|
|
14
|
+
gpu_count = 2
|
|
15
|
+
|
|
16
|
+
[topology]
|
|
17
|
+
type = "single_node_split"
|
|
18
|
+
gpus_for_vllm = 1
|
|
19
|
+
gpus_for_training = 1
|
|
20
|
+
gpus_for_ref = 0
|
|
21
|
+
tensor_parallel = 1
|
|
22
|
+
|
|
23
|
+
[vllm]
|
|
24
|
+
tensor_parallel_size = 1
|
|
25
|
+
max_model_len = 8192
|
|
26
|
+
|
|
27
|
+
[reference]
|
|
28
|
+
placement = "none"
|
|
29
|
+
|
|
30
|
+
[model]
|
|
31
|
+
base = "Qwen/Qwen3-4B"
|
|
32
|
+
trainer_mode = "lora"
|
|
33
|
+
label = "crafter-rl-outcome"
|
|
34
|
+
|
|
35
|
+
[lora]
|
|
36
|
+
r = 16
|
|
37
|
+
alpha = 32
|
|
38
|
+
dropout = 0.05
|
|
39
|
+
target_modules = ["all-linear"]
|
|
40
|
+
|
|
41
|
+
[rollout]
|
|
42
|
+
env_name = "crafter"
|
|
43
|
+
max_turns = 10
|
|
44
|
+
episodes_per_batch = 4
|
|
45
|
+
policy_name = "crafter-react"
|
|
46
|
+
max_concurrent_rollouts = 12
|
|
47
|
+
batches_per_step = 2
|
|
48
|
+
ops = ["agent", "env"]
|
|
49
|
+
|
|
50
|
+
[evaluation]
|
|
51
|
+
instances = 10
|
|
52
|
+
every_n_iters = 5
|
|
53
|
+
seeds = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
|
|
54
|
+
|
|
55
|
+
[training]
|
|
56
|
+
num_epochs = 1
|
|
57
|
+
iterations_per_epoch = 20
|
|
58
|
+
gradient_accumulation_steps = 1
|
|
59
|
+
max_accumulated_minibatch = 1
|
|
60
|
+
max_turns = 8
|
|
61
|
+
batch_size = 3
|
|
62
|
+
group_size = 4
|
|
63
|
+
learning_rate = 5e-5
|
|
64
|
+
log_interval = 1
|
|
65
|
+
weight_sync_interval = 1
|
|
66
|
+
step_rewards_enabled = false
|
|
67
|
+
event_rewards_kind = "unique"
|
|
68
|
+
|
|
69
|
+
[training.weight_sync]
|
|
70
|
+
enable = true
|
|
71
|
+
targets = ["policy"]
|
|
72
|
+
mode = "direct"
|
|
73
|
+
direct = true
|
|
74
|
+
verify_every_k = 0
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
# Crafter RL experiment – stepwise shaping with hosted judge rubrics
|
|
2
|
+
#
|
|
3
|
+
# This configuration extends the stepwise LoRA baseline by wiring the Synth judge
|
|
4
|
+
# service so evaluation rolls combine dense step rewards with hosted rubric scoring.
|
|
5
|
+
|
|
6
|
+
[algorithm]
|
|
7
|
+
type = "online"
|
|
8
|
+
method = "policy_gradient"
|
|
9
|
+
variety = "gspo"
|
|
10
|
+
|
|
11
|
+
[services]
|
|
12
|
+
# Replace with the Modal URL printed by `uvx synth-ai modal-serve grpo-crafter`
|
|
13
|
+
task_url = "https://YOUR-MODAL-TASK-APP.modal.run"
|
|
14
|
+
# Point at the Synth backend (or compatible service) that exposes /api/judge/v1/*
|
|
15
|
+
judge_url = "https://synth-backend-dev-docker.onrender.com/api"
|
|
16
|
+
|
|
17
|
+
[compute]
|
|
18
|
+
gpu_type = "H200"
|
|
19
|
+
gpu_count = 2
|
|
20
|
+
|
|
21
|
+
[topology]
|
|
22
|
+
type = "single_node_split"
|
|
23
|
+
gpus_for_vllm = 1
|
|
24
|
+
gpus_for_training = 1
|
|
25
|
+
gpus_for_ref = 0
|
|
26
|
+
tensor_parallel = 1
|
|
27
|
+
|
|
28
|
+
[vllm]
|
|
29
|
+
tensor_parallel_size = 1
|
|
30
|
+
max_model_len = 8192
|
|
31
|
+
|
|
32
|
+
[reference]
|
|
33
|
+
placement = "none"
|
|
34
|
+
|
|
35
|
+
[model]
|
|
36
|
+
base = "Qwen/Qwen3-4B"
|
|
37
|
+
trainer_mode = "lora"
|
|
38
|
+
label = "crafter-rl-stepwise-hosted-judge"
|
|
39
|
+
|
|
40
|
+
[lora]
|
|
41
|
+
r = 16
|
|
42
|
+
alpha = 32
|
|
43
|
+
dropout = 0.05
|
|
44
|
+
target_modules = ["all-linear"]
|
|
45
|
+
|
|
46
|
+
[rollout]
|
|
47
|
+
env_name = "crafter"
|
|
48
|
+
max_turns = 10
|
|
49
|
+
episodes_per_batch = 4
|
|
50
|
+
policy_name = "crafter-react"
|
|
51
|
+
max_concurrent_rollouts = 8
|
|
52
|
+
batches_per_step = 2
|
|
53
|
+
ops = ["agent", "env"]
|
|
54
|
+
|
|
55
|
+
[rollout.env_config]
|
|
56
|
+
difficulty = "easy"
|
|
57
|
+
|
|
58
|
+
[rollout.env_config.step_rewards]
|
|
59
|
+
enabled = true
|
|
60
|
+
mode = "decision_stepwise"
|
|
61
|
+
strategy = "consistent" # +1 for each decision that unlocks a new achievement
|
|
62
|
+
indicator_lambda = 1.0
|
|
63
|
+
step_beta = 0.0
|
|
64
|
+
|
|
65
|
+
[rollout.policy_config]
|
|
66
|
+
temperature = 0.2
|
|
67
|
+
top_p = 0.95
|
|
68
|
+
max_tokens = 512
|
|
69
|
+
|
|
70
|
+
[evaluation]
|
|
71
|
+
instances = 16
|
|
72
|
+
every_n_iters = 8
|
|
73
|
+
seeds = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
|
|
74
|
+
|
|
75
|
+
[training]
|
|
76
|
+
num_epochs = 1
|
|
77
|
+
iterations_per_epoch = 16
|
|
78
|
+
gradient_accumulation_steps = 1
|
|
79
|
+
max_accumulated_minibatch = 1
|
|
80
|
+
max_turns = 10
|
|
81
|
+
batch_size = 4
|
|
82
|
+
group_size = 4
|
|
83
|
+
learning_rate = 5e-5
|
|
84
|
+
log_interval = 1
|
|
85
|
+
weight_sync_interval = 1
|
|
86
|
+
event_rewards_kind = "unique"
|
|
87
|
+
|
|
88
|
+
# Enable dense decision rewards in the trainer to mirror env_config step rewards.
|
|
89
|
+
step_rewards_enabled = true
|
|
90
|
+
step_rewards_mode = "decision_stepwise"
|
|
91
|
+
step_rewards_indicator_lambda = 1.0
|
|
92
|
+
step_rewards_beta = 0.0
|
|
93
|
+
step_rewards_strategy = "consistent"
|
|
94
|
+
|
|
95
|
+
[training.weight_sync]
|
|
96
|
+
enable = true
|
|
97
|
+
targets = ["policy"]
|
|
98
|
+
mode = "direct"
|
|
99
|
+
direct = true
|
|
100
|
+
verify_every_k = 0
|
|
101
|
+
|
|
102
|
+
[rubric]
|
|
103
|
+
enabled = true
|
|
104
|
+
model = "openai/gpt-oss-120b"
|
|
105
|
+
api_base = "https://synth-backend-dev-docker.onrender.com/api/judge"
|
|
106
|
+
api_key_env = "OPENAI_API_KEY"
|
|
107
|
+
# Blend the hosted judge scores with environment returns inside the trainer.
|
|
108
|
+
[rubric.weights]
|
|
109
|
+
env = 0.2
|
|
110
|
+
event = 0.4
|
|
111
|
+
outcome = 0.4
|
|
112
|
+
|
|
113
|
+
[rubric.event]
|
|
114
|
+
# Hosted judge rubric for per-decision progress scoring.
|
|
115
|
+
rubric_id = "crafter/event@v1"
|
|
116
|
+
criteria = [
|
|
117
|
+
{ key = "progress.unique_achievements", weight = 0.9, description = "Return 1 when this decision explicitly unlocks a brand-new Crafter achievement (inventory or status text confirms it this turn). Otherwise return 0.", aggregation = "weighted_sum" },
|
|
118
|
+
{ key = "process.intent_alignment", weight = 0.1, description = "Use at most 0.3 to acknowledge tightly coupled setup that finishes the last prerequisite; keep ≤0.1 when the agent only repositions or gathers without an imminent unlock.", aggregation = "weighted_sum" },
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[rubric.outcome]
|
|
122
|
+
# Hosted judge rubric for final trajectory scoring.
|
|
123
|
+
rubric_id = "crafter/outcome@v1"
|
|
124
|
+
criteria = [
|
|
125
|
+
{ key = "outcome.goal_completion", weight = 0.6, description = "Full credit when the agent ends with strong survival metrics and a clear crafted milestone (e.g., iron tools, furnace).", aggregation = "weighted_sum" },
|
|
126
|
+
{ key = "outcome.achievement_depth", weight = 0.4, description = "Partial credit for intermediate achievements (saplings, wood/stone tools) that set up future success.", aggregation = "weighted_sum" },
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[judge]
|
|
130
|
+
type = "gemini" # or "groq" when routing to Groq-hosted judges
|
|
131
|
+
timeout_s = 45
|
|
132
|
+
|
|
133
|
+
[judge.options]
|
|
134
|
+
event = true
|
|
135
|
+
outcome = true
|
|
136
|
+
provider = "openai"
|
|
137
|
+
model = "openai/gpt-oss-120b"
|
|
138
|
+
rubric_id = "crafter/bundle@v1"
|
|
139
|
+
max_concurrency = 6
|
|
140
|
+
tracks = ["process", "reasoning", "progress", "outcome"]
|
|
141
|
+
|
|
142
|
+
[judge.options.rubric_overrides]
|
|
143
|
+
|
|
144
|
+
[judge.options.rubric_overrides.event]
|
|
145
|
+
goal_text = """
|
|
146
|
+
Treat each decision as a check for new Crafter achievements.
|
|
147
|
+
Award the top score only when the log shows a fresh achievement unlock or an immediately verifiable deterministic completion.
|
|
148
|
+
Keep otherwise useful setup actions in a narrow low band so non-achievement turns stay near zero."""
|
|
149
|
+
aggregation = "weighted_sum"
|
|
150
|
+
|
|
151
|
+
[[judge.options.rubric_overrides.event.criteria]]
|
|
152
|
+
id = "progress.unique_achievements"
|
|
153
|
+
weight = 0.9
|
|
154
|
+
scale = "binary"
|
|
155
|
+
description = "Return 1 when this decision explicitly unlocks a brand-new Crafter achievement (inventory or status text confirms it this turn). Otherwise return 0."
|
|
156
|
+
|
|
157
|
+
[[judge.options.rubric_overrides.event.criteria]]
|
|
158
|
+
id = "process.intent_alignment"
|
|
159
|
+
weight = 0.1
|
|
160
|
+
scale = "bounded"
|
|
161
|
+
description = "Use at most 0.3 to acknowledge tightly coupled setup that finishes the last prerequisite; keep ≤0.1 when the agent only repositions or gathers without an imminent unlock."
|
|
162
|
+
|
|
163
|
+
[judge.options.rubric_overrides.outcome]
|
|
164
|
+
goal_text = """
|
|
165
|
+
Summarise the episode outcome in relation to Crafter’s win condition:
|
|
166
|
+
survive, accumulate resources, and craft advanced tools or structures.
|
|
167
|
+
Highlight notable achievements, safety failures, and preparedness for future exploration."""
|
|
168
|
+
aggregation = "weighted_sum"
|
|
169
|
+
|
|
170
|
+
[[judge.options.rubric_overrides.outcome.criteria]]
|
|
171
|
+
id = "outcome.goal_completion"
|
|
172
|
+
weight = 0.6
|
|
173
|
+
scale = "binary"
|
|
174
|
+
description = "Full credit when the agent ends with strong survival metrics and a clear crafted milestone (e.g., iron tools, furnace)."
|
|
175
|
+
|
|
176
|
+
[[judge.options.rubric_overrides.outcome.criteria]]
|
|
177
|
+
id = "outcome.achievement_depth"
|
|
178
|
+
weight = 0.4
|
|
179
|
+
scale = "bounded"
|
|
180
|
+
description = "Partial credit for intermediate achievements (saplings, wood/stone tools) that set up future success."
|
|
181
|
+
|
|
182
|
+
[judge.options.weights]
|
|
183
|
+
process = 0.05
|
|
184
|
+
reasoning = 0.15
|
|
185
|
+
progress = 0.30
|
|
186
|
+
outcome = 0.50
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Crafter RL experiment – shaped stepwise rewards (achievement + resource shaping)
|
|
2
|
+
|
|
3
|
+
[algorithm]
|
|
4
|
+
type = "online"
|
|
5
|
+
method = "policy_gradient"
|
|
6
|
+
variety = "gspo"
|
|
7
|
+
|
|
8
|
+
[services]
|
|
9
|
+
# Replace with the Modal URL printed by `uvx synth-ai modal-serve grpo-crafter`
|
|
10
|
+
task_url = "https://YOUR-MODAL-TASK-APP.modal.run"
|
|
11
|
+
|
|
12
|
+
[compute]
|
|
13
|
+
gpu_type = "H200"
|
|
14
|
+
gpu_count = 2
|
|
15
|
+
|
|
16
|
+
[topology]
|
|
17
|
+
type = "single_node_split"
|
|
18
|
+
gpus_for_vllm = 1
|
|
19
|
+
gpus_for_training = 1
|
|
20
|
+
gpus_for_ref = 0
|
|
21
|
+
tensor_parallel = 1
|
|
22
|
+
|
|
23
|
+
[vllm]
|
|
24
|
+
tensor_parallel_size = 1
|
|
25
|
+
max_model_len = 8192
|
|
26
|
+
|
|
27
|
+
[reference]
|
|
28
|
+
placement = "none"
|
|
29
|
+
|
|
30
|
+
[model]
|
|
31
|
+
base = "Qwen/Qwen3-4B"
|
|
32
|
+
trainer_mode = "lora"
|
|
33
|
+
label = "crafter-rl-stepwise-shaped"
|
|
34
|
+
|
|
35
|
+
[lora]
|
|
36
|
+
r = 16
|
|
37
|
+
alpha = 32
|
|
38
|
+
dropout = 0.05
|
|
39
|
+
target_modules = ["all-linear"]
|
|
40
|
+
|
|
41
|
+
[rollout]
|
|
42
|
+
env_name = "crafter"
|
|
43
|
+
max_turns = 10
|
|
44
|
+
episodes_per_batch = 4
|
|
45
|
+
policy_name = "crafter-react"
|
|
46
|
+
max_concurrent_rollouts = 8
|
|
47
|
+
batches_per_step = 2
|
|
48
|
+
ops = ["agent", "env"]
|
|
49
|
+
|
|
50
|
+
[evaluation]
|
|
51
|
+
instances = 10
|
|
52
|
+
every_n_iters = 10
|
|
53
|
+
seeds = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
[training]
|
|
57
|
+
num_epochs = 1
|
|
58
|
+
iterations_per_epoch = 10
|
|
59
|
+
gradient_accumulation_steps = 1
|
|
60
|
+
max_accumulated_minibatch = 1
|
|
61
|
+
max_turns = 10
|
|
62
|
+
batch_size = 4
|
|
63
|
+
group_size = 4
|
|
64
|
+
learning_rate = 5e-5
|
|
65
|
+
log_interval = 1
|
|
66
|
+
weight_sync_interval = 1
|
|
67
|
+
step_rewards_enabled = true
|
|
68
|
+
step_rewards_mode = "decision_stepwise"
|
|
69
|
+
step_rewards_indicator_lambda = 0.5
|
|
70
|
+
step_rewards_beta = 0.0
|
|
71
|
+
event_rewards_kind = "unique"
|
|
72
|
+
step_rewards_strategy = "per_achievement"
|
|
73
|
+
|
|
74
|
+
# Reward each achievement up to a cap inside `compute_stepwise_reward`
|
|
75
|
+
step_rewards_weights = { collect_sapling = 0.6, collect_wood = 0.8, collect_stone = 1.0, collect_iron = 1.2, collect_drink = 0.4, collect_food = 0.4 }
|
|
76
|
+
step_rewards_k_limits = { collect_sapling = 2, collect_wood = 4, collect_stone = 3, collect_iron = 3, collect_drink = 3, collect_food = 3 }
|
|
77
|
+
|
|
78
|
+
[training.weight_sync]
|
|
79
|
+
enable = true
|
|
80
|
+
targets = ["policy"]
|
|
81
|
+
mode = "direct"
|
|
82
|
+
direct = true
|
|
83
|
+
verify_every_k = 0
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Crafter RL experiment – simple stepwise rewards (1 point per new achievement)
|
|
2
|
+
|
|
3
|
+
[algorithm]
|
|
4
|
+
type = "online"
|
|
5
|
+
method = "policy_gradient"
|
|
6
|
+
variety = "gspo"
|
|
7
|
+
|
|
8
|
+
[services]
|
|
9
|
+
# Replace with the Modal URL printed by `uvx synth-ai modal-serve grpo-crafter`
|
|
10
|
+
task_url = "https://YOUR-MODAL-TASK-APP.modal.run"
|
|
11
|
+
|
|
12
|
+
[compute]
|
|
13
|
+
gpu_type = "H200"
|
|
14
|
+
gpu_count = 2
|
|
15
|
+
|
|
16
|
+
[topology]
|
|
17
|
+
type = "single_node_split"
|
|
18
|
+
gpus_for_vllm = 1
|
|
19
|
+
gpus_for_training = 1
|
|
20
|
+
gpus_for_ref = 0
|
|
21
|
+
tensor_parallel = 1
|
|
22
|
+
|
|
23
|
+
[vllm]
|
|
24
|
+
tensor_parallel_size = 1
|
|
25
|
+
max_model_len = 8192
|
|
26
|
+
|
|
27
|
+
[reference]
|
|
28
|
+
placement = "none"
|
|
29
|
+
|
|
30
|
+
[model]
|
|
31
|
+
base = "Qwen/Qwen3-4B"
|
|
32
|
+
trainer_mode = "lora"
|
|
33
|
+
label = "crafter-rl-stepwise-simple"
|
|
34
|
+
|
|
35
|
+
[lora]
|
|
36
|
+
r = 16
|
|
37
|
+
alpha = 32
|
|
38
|
+
dropout = 0.05
|
|
39
|
+
target_modules = ["all-linear"]
|
|
40
|
+
|
|
41
|
+
[rollout]
|
|
42
|
+
env_name = "crafter"
|
|
43
|
+
max_turns = 10
|
|
44
|
+
episodes_per_batch = 4
|
|
45
|
+
policy_name = "crafter-react"
|
|
46
|
+
max_concurrent_rollouts = 8
|
|
47
|
+
batches_per_step = 2
|
|
48
|
+
ops = ["agent", "env"]
|
|
49
|
+
|
|
50
|
+
[evaluation]
|
|
51
|
+
instances = 10
|
|
52
|
+
every_n_iters = 10
|
|
53
|
+
seeds = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
54
|
+
|
|
55
|
+
[training]
|
|
56
|
+
num_epochs = 1
|
|
57
|
+
iterations_per_epoch = 10
|
|
58
|
+
gradient_accumulation_steps = 1
|
|
59
|
+
max_accumulated_minibatch = 1
|
|
60
|
+
max_turns = 10
|
|
61
|
+
batch_size = 4
|
|
62
|
+
group_size = 4
|
|
63
|
+
learning_rate = 5e-5
|
|
64
|
+
log_interval = 1
|
|
65
|
+
weight_sync_interval = 1
|
|
66
|
+
step_rewards_enabled = true
|
|
67
|
+
step_rewards_mode = "decision_stepwise"
|
|
68
|
+
step_rewards_indicator_lambda = 1.0
|
|
69
|
+
step_rewards_beta = 0.0
|
|
70
|
+
event_rewards_kind = "unique"
|
|
71
|
+
step_rewards_strategy = "consistent"
|
|
72
|
+
|
|
73
|
+
[training.weight_sync]
|
|
74
|
+
enable = true
|
|
75
|
+
targets = ["policy"]
|
|
76
|
+
mode = "direct"
|
|
77
|
+
direct = true
|
|
78
|
+
verify_every_k = 0
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# Crafter RL LoRA (10-step runs)
|
|
2
|
+
|
|
3
|
+
This walkthrough shows how to fine-tune the Crafter task app with our 10-step RL LoRA config.
|
|
4
|
+
|
|
5
|
+
1. **Deploy the Crafter task app on Modal**
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# assumes .env contains SYNTH_API_KEY, ENVIRONMENT_API_KEY, GROQ_API_KEY, etc.
|
|
9
|
+
uvx synth-ai modal-serve grpo-crafter \
|
|
10
|
+
--env-file examples/warming_up_to_rl/.env \
|
|
11
|
+
--name grpo-crafter-task-app
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
* The command prints the public `https://…modal.run` URL; copy it for the RL configs below.*
|
|
15
|
+
|
|
16
|
+
2. **Wire up the three RL experiment configs**
|
|
17
|
+
|
|
18
|
+
Update the `task_url` placeholder in each config with the Modal URL from step 1:
|
|
19
|
+
|
|
20
|
+
- `examples/multi_step/configs/crafter_rl_outcome.toml`
|
|
21
|
+
- `examples/multi_step/configs/crafter_rl_stepwise_simple.toml`
|
|
22
|
+
- `examples/multi_step/configs/crafter_rl_stepwise_shaped.toml`
|
|
23
|
+
|
|
24
|
+
The difference between them (all run with LoRA on 2×H100 split 1/1 for vLLM vs. trainer):
|
|
25
|
+
|
|
26
|
+
| Config | Reward signal |
|
|
27
|
+
| ------ | ------------- |
|
|
28
|
+
| `crafter_rl_outcome.toml` | Outcome-only — step rewards disabled. |
|
|
29
|
+
| `crafter_rl_stepwise_simple.toml` | Stepwise (“consistent”) — +1 for every newly unlocked achievement. |
|
|
30
|
+
| `crafter_rl_stepwise_shaped.toml` | Stepwise (“per_achievement”) — combines achievement credit with inventory/achievement-count shaping from the rollout hook. |
|
|
31
|
+
|
|
32
|
+
3. **Launch the three RL runs in parallel**
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
export SYNTH_API_KEY=... # already sourced if examples/.env was loaded
|
|
36
|
+
export TASK_APP_URL=https://your-modal-task-app.modal.run
|
|
37
|
+
|
|
38
|
+
uvx synth-ai train --type rl \
|
|
39
|
+
--config examples/multi_step/configs/crafter_rl_outcome.toml \
|
|
40
|
+
--run-name crafter-rl-outcome \
|
|
41
|
+
--no-poll &
|
|
42
|
+
|
|
43
|
+
uvx synth-ai train --type rl \
|
|
44
|
+
--config examples/multi_step/configs/crafter_rl_stepwise_simple.toml \
|
|
45
|
+
--run-name crafter-rl-stepwise-simple \
|
|
46
|
+
--no-poll &
|
|
47
|
+
|
|
48
|
+
uvx synth-ai train --type rl \
|
|
49
|
+
--config examples/multi_step/configs/crafter_rl_stepwise_shaped.toml \
|
|
50
|
+
--run-name crafter-rl-stepwise-shaped \
|
|
51
|
+
--no-poll &
|
|
52
|
+
|
|
53
|
+
wait
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
*`--no-poll` returns immediately so each run can stream logs in its own terminal; `wait` blocks until all jobs finish.*
|
|
57
|
+
|
|
58
|
+
4. **Track results**
|
|
59
|
+
|
|
60
|
+
Tail each job’s logs with `uvx synth-ai train logs --run-name <name>` or open the Modal dashboard. Compare:
|
|
61
|
+
|
|
62
|
+
- Avg outcome reward (modal dashboard)
|
|
63
|
+
- Stepwise reward components (`resource_reward`, `unique_achievements_total`) in the task app logs
|
|
64
|
+
- Trace JSONL dumps under `traces/v3` if tracing is enabled
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
* This config forces 10 agent turns per rollout, reduces batch size to avoid OOMs, and enforces Crafter-specific defaults.*
|
|
68
|
+
|
|
69
|
+
INFO - 🎉 Training completed successfully!
|
|
70
|
+
INFO - All batch rewards: [0.0625, 0.0625, 0.125, 0.0625, 0.0625, 0.3125, 0.375, 0.4375, 0.5, 0.9375]
|