synth-ai 0.2.13.dev1__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.13.dev1/synth_ai.egg-info → synth_ai-0.2.13.dev2}/PKG-INFO +4 -1
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +12 -1
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/grpo_swe_mini.py +55 -26
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/rollout.py +40 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/grpo_crafter.py +18 -13
- {synth_ai-0.2.13.dev1/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.13.dev1/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.13.dev1/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/policy_routes.py +25 -3
- {synth_ai-0.2.13.dev1/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/rollout.py +10 -0
- {synth_ai-0.2.13.dev1/examples/warming_up_to_rl → 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.13.dev1/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.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/crafter_openai_vlm_agent.py +4 -4
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/run_crafter_vlm_benchmark.py +4 -4
- synth_ai-0.2.13.dev2/examples/workflows/math_rl/download_dataset.py +80 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/pyproject.toml +4 -1
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/builders.py +25 -11
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/cli.py +12 -6
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/configs/rl.py +5 -4
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/configs/sft.py +4 -3
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/env_resolver.py +5 -2
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/supported_algos.py +10 -5
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/utils.py +7 -4
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/__init__.py +7 -51
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/balance.py +4 -3
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/calc.py +2 -2
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/demo.py +14 -7
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/legacy_root_backup.py +1 -1
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/rl_demo.py +8 -7
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/root.py +0 -97
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/task_apps.py +1707 -186
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +28 -16
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/engine.py +7 -2
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/environment.py +68 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine.py +27 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/state_extraction.py +32 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/environment.py +60 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/taskset.py +116 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/engine.py +30 -4
- synth_ai-0.2.13.dev2/synth_ai/evals/client.py +82 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/jobs/client.py +16 -4
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/judge_schemas.py +16 -16
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → 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.dev1/synth_ai/rubrics/validators.py → synth_ai-0.2.13.dev2/synth_ai/task/rubrics/strict.py +53 -30
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/decorators.py +7 -3
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/replica_sync.py +4 -4
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/serialization.py +5 -5
- synth_ai-0.2.13.dev2/synth_ai/tracing_v3/trace_utils.py +317 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2/synth_ai.egg-info}/PKG-INFO +4 -1
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/SOURCES.txt +163 -50
- synth_ai-0.2.13.dev2/synth_ai.egg-info/dependency_links.txt +1 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/requires.txt +3 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/README_MoE.md +0 -224
- synth_ai-0.2.13.dev1/examples/agora_ex/__init__.py +0 -7
- synth_ai-0.2.13.dev1/examples/agora_ex/agora_ex.py +0 -65
- synth_ai-0.2.13.dev1/examples/agora_ex/agora_ex_task_app.py +0 -590
- synth_ai-0.2.13.dev1/examples/agora_ex/configs/rl_lora_qwen3_moe_2xh200.toml +0 -121
- synth_ai-0.2.13.dev1/examples/agora_ex/reward_fn_grpo-human.py +0 -129
- synth_ai-0.2.13.dev1/examples/agora_ex/system_prompt_CURRENT.md +0 -63
- synth_ai-0.2.13.dev1/examples/agora_ex/task_app/agora_ex_task_app.py +0 -590
- synth_ai-0.2.13.dev1/examples/agora_ex/task_app/reward_fn_grpo-human.py +0 -129
- synth_ai-0.2.13.dev1/examples/agora_ex/task_app/system_prompt_CURRENT.md +0 -63
- synth_ai-0.2.13.dev1/synth_ai/evals/client.py +0 -85
- synth_ai-0.2.13.dev1/synth_ai/rubrics/__init__.py +0 -22
- synth_ai-0.2.13.dev1/synth_ai/task/contracts.py +0 -137
- synth_ai-0.2.13.dev1/synth_ai/task/rubrics.py +0 -219
- synth_ai-0.2.13.dev1/synth_ai/task/validators.py +0 -11
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/LICENSE +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/MANIFEST.in +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/analyze_semantic_words.sh +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/crafter_debug_render.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/dev/qwen3_32b_qlora_4xh100.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/configs/crafter_rl_outcome.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/crafter_rl_lora.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/sse_metrics_streaming_notes.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/multi_step/task_app_config_notes.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/_shared.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/configs/coder_lora_30b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/configs/coder_lora_4b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/configs/coder_lora_small.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/generate_dataset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/infer_ft_smoke.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/infer_prod_proxy.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/infer_via_synth.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/scripts/infer_coder.sh +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/scripts/train_coder_30b.sh +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/sft_full_17b.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/sft_lora_30b.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/subset_jsonl.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/todos.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/qwen_coder/validate_jsonl.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/rl/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/rl/download_dataset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/run_crafter_demo.sh +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/sft/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/sft/evaluate.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/sft/export_dataset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/sft/generate_traces.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/grpo_swe_mini_task_app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/branching.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/environment_routes.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/hosted_app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/main.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/policy_routes.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/registry.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/storage/volume.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/test_agents.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/swe/task_app/hosted/utils.py +0 -0
- {synth_ai-0.2.13.dev1/synth_ai/v0/lm/caching → synth_ai-0.2.13.dev2/examples/task_apps}/__init__.py +0 -0
- {synth_ai-0.2.13.dev1/synth_ai/v0/lm/cost → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/__init__.py +0 -0
- {synth_ai-0.2.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/examples/warming_up_to_rl → synth_ai-0.2.13.dev2/examples/task_apps/crafter}/task_app/synth_envs_hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/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.13.dev1/examples/rl/task_app → synth_ai-0.2.13.dev2/examples/task_apps/math}/README.md +0 -0
- {synth_ai-0.2.13.dev1/synth_ai/v0/lm/vendors/local → synth_ai-0.2.13.dev2/examples/task_apps/math}/__init__.py +0 -0
- {synth_ai-0.2.13.dev1/examples/rl/task_app → synth_ai-0.2.13.dev2/examples/task_apps/math}/math_task_app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/PROPOSAL.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/README.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/crafter_image_only_agent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/vlm/filter_image_rows.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/analyze_trace_db.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/crafter_fft.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/export_trace_sft.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/groq_test.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/manage_secrets.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/old/event_rewards.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/old/notes.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/readme.md +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_eval.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_fft_and_save.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout_modal.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_local_rollout_traced.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/examples/warming_up_to_rl/run_rollout_remote.py +0 -0
- {synth_ai-0.2.13.dev1/synth_ai/v0/lm/vendors/supported → synth_ai-0.2.13.dev2/examples/workflows}/__init__.py +0 -0
- {synth_ai-0.2.13.dev1/synth_ai/v0/tracing → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/__init__.py +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/rl_from_base_qwen17.toml +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/run_eval.py +0 -0
- {synth_ai-0.2.13.dev1/examples/rl → synth_ai-0.2.13.dev2/examples/workflows/math_rl}/run_rl_and_save.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/setup.cfg +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/__init__.py +2 -2
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/__main__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/models/supported.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/config_finder.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/configs/__init__.py +10 -10
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/configs/shared.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/pollers.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/api/train/task_app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/_modal_wrapper.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/_typer_patch.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/man.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/recent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/status.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/traces.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/turso.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/cli/watch.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/compound/cais.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/config/base_url.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/core/experiment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/core/system.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demo_registry.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/core/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/core/cli.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/_common.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/config.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/deploy_modal.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/artifacts/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/artifacts/base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/db/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/db/sqlite.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/registry.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/resources/sqlite.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/results.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/rewards/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/rewards/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/shared_engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/environment/tools/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/bandit/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/config_logging.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/enron/units/keyword_stats.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/environment_mapping.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/minigrid/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/achievements.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/nethack/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/config_logging.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/red/units/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → 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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/tictactoe/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/verilog/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/environment.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/examples/wordle/taskset.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/reproducibility/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/reproducibility/helpers.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/reproducibility/tree.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/app.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/core_routes.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/external_registry.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/service/registry.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/engine.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/stateful/state.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/api.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/filters.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/tasks/utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/v0_observability/history.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/environments/v0_observability/log.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/evals/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/evals/base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/evals/types.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/handshake.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/http.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/http_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/inference/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/inference/client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/algorithms.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/constants.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/core.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/ft_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/gateway.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/health.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/jobs.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/contracts.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/env_keys.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl/secrets.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/rl_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/sft/data.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/sse.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/learning/validators.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/lm/__init__.py +0 -0
- /synth_ai-0.2.13.dev1/synth_ai/v0/lm/caching/dbs.py → /synth_ai-0.2.13.dev2/synth_ai/py.typed +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/apps/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/auth.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/datasets.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/errors.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/health.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/json.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/tracing_utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/task/vendors.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/db_config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/examples/basic_usage.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/hooks.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/lm_call_record_abstractions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/migration_helper.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/exceptions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/factory.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/types.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/storage/utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/daemon.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/turso/models.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/tracing_v3/utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/api/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/api/models/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/api/models/supported.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/config/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/config/base_url.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/__init__.py +0 -0
- {synth_ai-0.2.13.dev1/synth_ai/v0/tracing/events → synth_ai-0.2.13.dev2/synth_ai/v0/lm/caching}/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/constants.py +0 -0
- /synth_ai-0.2.13.dev1/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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/ephemeral.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/handler.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/initialize.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/caching/persistent.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/constants.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/all.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/exceptions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/main.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/main_v3.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/synth_models.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/core/vendor_clients.py +0 -0
- {synth_ai-0.2.13.dev1/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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/cost/monitor.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/cost/statefulness.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/injection.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/overrides.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/anthropic.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/openai.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/provider_support/suppress_logging.py +0 -0
- /synth_ai-0.2.13.dev1/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.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/structured_outputs/handler.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/structured_outputs/inject.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/tools/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/tools/base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/unified_interface.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/gemini_api.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/mistral_api.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/core/openai_api.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/openai_standard.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/retries.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/deepseek.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/grok.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/groq.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/ollama.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/openrouter.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/supported/together.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/vendors/synth_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/lm/warmup.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/abstractions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/base_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/client_manager.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/context.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/decorators.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/events/manage.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/events/scope.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/events/store.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/immediate_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/local.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/log_client_base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/retry_queue.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/trackers.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/upload.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing/utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/abstractions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/base_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/client_manager.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/config.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/context.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/decorators.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/events/manage.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/events/scope.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/events/store.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/immediate_client.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/local.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/log_client_base.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/retry_queue.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/trackers.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/upload.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v1/utils.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai/v0/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.13.dev1 → synth_ai-0.2.13.dev2}/synth_ai.egg-info/entry_points.txt +0 -0
- {synth_ai-0.2.13.dev1 → 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.13.
|
|
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"
|
|
@@ -12,7 +12,7 @@ variety = "gspo"
|
|
|
12
12
|
# Replace with the Modal URL printed by `uvx synth-ai modal-serve grpo-crafter`
|
|
13
13
|
task_url = "https://YOUR-MODAL-TASK-APP.modal.run"
|
|
14
14
|
# Point at the Synth backend (or compatible service) that exposes /api/judge/v1/*
|
|
15
|
-
judge_url = "https://
|
|
15
|
+
judge_url = "https://synth-backend-dev-docker.onrender.com/api"
|
|
16
16
|
|
|
17
17
|
[compute]
|
|
18
18
|
gpu_type = "H200"
|
|
@@ -101,6 +101,9 @@ verify_every_k = 0
|
|
|
101
101
|
|
|
102
102
|
[rubric]
|
|
103
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"
|
|
104
107
|
# Blend the hosted judge scores with environment returns inside the trainer.
|
|
105
108
|
[rubric.weights]
|
|
106
109
|
env = 0.2
|
|
@@ -110,10 +113,18 @@ outcome = 0.4
|
|
|
110
113
|
[rubric.event]
|
|
111
114
|
# Hosted judge rubric for per-decision progress scoring.
|
|
112
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
|
+
]
|
|
113
120
|
|
|
114
121
|
[rubric.outcome]
|
|
115
122
|
# Hosted judge rubric for final trajectory scoring.
|
|
116
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
|
+
]
|
|
117
128
|
|
|
118
129
|
[judge]
|
|
119
130
|
type = "gemini" # or "groq" when routing to Groq-hosted judges
|
|
@@ -60,34 +60,55 @@ try:
|
|
|
60
60
|
HAS_HOSTED = True
|
|
61
61
|
except Exception:
|
|
62
62
|
try: # pragma: no cover - optional dependency path
|
|
63
|
-
from examples.
|
|
64
|
-
|
|
63
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.branching import ( # type: ignore
|
|
64
|
+
BranchingEnvironmentConfig,
|
|
65
65
|
)
|
|
66
|
-
from examples.
|
|
67
|
-
|
|
66
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.environment_routes import ( # type: ignore # noqa: E501
|
|
67
|
+
CrafterEnvironmentRoutes,
|
|
68
68
|
)
|
|
69
|
-
from examples.
|
|
70
|
-
|
|
69
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.policy_routes import ( # type: ignore
|
|
70
|
+
PolicyRoutes,
|
|
71
71
|
)
|
|
72
|
-
from examples.
|
|
72
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import ( # type: ignore
|
|
73
|
+
RolloutPayload,
|
|
74
|
+
)
|
|
75
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import (
|
|
76
|
+
EnvironmentConfig,
|
|
77
|
+
)
|
|
78
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import (
|
|
79
|
+
PolicyConfig,
|
|
80
|
+
)
|
|
81
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import (
|
|
82
|
+
RolloutRequest,
|
|
83
|
+
)
|
|
84
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import (
|
|
85
|
+
RolloutResponse,
|
|
86
|
+
)
|
|
87
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import (
|
|
88
|
+
RunSpec,
|
|
89
|
+
)
|
|
90
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.rollout import (
|
|
91
|
+
ToolUse,
|
|
92
|
+
)
|
|
93
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import ( # type: ignore
|
|
73
94
|
RolloutEnvSpec as LegacyRolloutEnvSpec,
|
|
74
95
|
)
|
|
75
|
-
from examples.
|
|
96
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import (
|
|
76
97
|
RolloutPolicySpec as LegacyRolloutPolicySpec,
|
|
77
98
|
)
|
|
78
|
-
from examples.
|
|
99
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import (
|
|
79
100
|
RolloutRecordConfig as LegacyRolloutRecordConfig,
|
|
80
101
|
)
|
|
81
|
-
from examples.
|
|
102
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import (
|
|
82
103
|
RolloutRequest as LegacyRolloutRequest,
|
|
83
104
|
)
|
|
84
|
-
from examples.
|
|
105
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import (
|
|
85
106
|
RolloutResponse as LegacyRolloutResponse,
|
|
86
107
|
)
|
|
87
|
-
from examples.
|
|
108
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import (
|
|
88
109
|
RolloutSafetyConfig as LegacyRolloutSafetyConfig,
|
|
89
110
|
)
|
|
90
|
-
from examples.
|
|
111
|
+
from examples.task_apps.crafter.task_app.hosted.rollout import (
|
|
91
112
|
execute_rollout as legacy_execute_rollout,
|
|
92
113
|
)
|
|
93
114
|
HAS_HOSTED = True
|
|
@@ -264,7 +285,7 @@ def build_dataset() -> tuple[TaskDatasetRegistry, MiniSweDataset]:
|
|
|
264
285
|
def _base_task_info(dataset: MiniSweDataset) -> TaskInfo:
|
|
265
286
|
return TaskInfo(
|
|
266
287
|
task={"id": "swe_mini", "name": "mini-SWE Tasks", "version": "0.1.0"},
|
|
267
|
-
|
|
288
|
+
environment="swe-mini",
|
|
268
289
|
action_space={
|
|
269
290
|
"type": "tool",
|
|
270
291
|
"tools": ["run_command", "submit_patch"],
|
|
@@ -292,11 +313,6 @@ def _base_task_info(dataset: MiniSweDataset) -> TaskInfo:
|
|
|
292
313
|
},
|
|
293
314
|
"tool": {"name": "run_command", "parallel_tool_calls": False},
|
|
294
315
|
},
|
|
295
|
-
capabilities={
|
|
296
|
-
"supports_rollout": True,
|
|
297
|
-
"supports_env_lifecycle": True,
|
|
298
|
-
"requires_api_key_header": True,
|
|
299
|
-
},
|
|
300
316
|
limits={"max_ops": 2000, "max_time_s": 7200},
|
|
301
317
|
)
|
|
302
318
|
|
|
@@ -348,18 +364,31 @@ def provide_task_instances(
|
|
|
348
364
|
dataset: MiniSweDataset, base_info: TaskInfo, seeds: Sequence[int]
|
|
349
365
|
) -> Iterable[TaskInfo]:
|
|
350
366
|
infos: list[TaskInfo] = []
|
|
367
|
+
base_observation = getattr(base_info, "observation", None)
|
|
368
|
+
if hasattr(base_observation, "model_dump"):
|
|
369
|
+
base_observation_data = base_observation.model_dump()
|
|
370
|
+
elif isinstance(base_observation, dict):
|
|
371
|
+
base_observation_data = dict(base_observation)
|
|
372
|
+
else:
|
|
373
|
+
base_observation_data = {}
|
|
374
|
+
|
|
351
375
|
for seed in seeds:
|
|
352
376
|
instance = dataset.sample_by_index(int(seed))
|
|
353
377
|
infos.append(
|
|
354
378
|
TaskInfo(
|
|
355
379
|
task=base_info.task,
|
|
356
|
-
|
|
380
|
+
environment=base_info.environment,
|
|
357
381
|
action_space=base_info.action_space,
|
|
358
|
-
observation={
|
|
359
|
-
|
|
382
|
+
observation={
|
|
383
|
+
**base_observation_data,
|
|
384
|
+
"instance_id": instance["instance_id"],
|
|
385
|
+
},
|
|
386
|
+
dataset={
|
|
387
|
+
**base_info.dataset.model_dump(),
|
|
388
|
+
"instance_id": instance["instance_id"],
|
|
389
|
+
},
|
|
360
390
|
rubric=base_info.rubric,
|
|
361
391
|
inference=base_info.inference,
|
|
362
|
-
capabilities=base_info.capabilities,
|
|
363
392
|
limits=base_info.limits,
|
|
364
393
|
)
|
|
365
394
|
)
|
|
@@ -397,10 +426,10 @@ def build_config() -> TaskAppConfig:
|
|
|
397
426
|
HostedTaskAppCls = HostedTaskApp
|
|
398
427
|
except Exception:
|
|
399
428
|
try:
|
|
400
|
-
from examples.
|
|
401
|
-
|
|
429
|
+
from examples.task_apps.crafter.task_app.synth_envs_hosted.hosted_app import ( # type: ignore
|
|
430
|
+
create_app,
|
|
402
431
|
)
|
|
403
|
-
HostedTaskAppCls =
|
|
432
|
+
HostedTaskAppCls = create_app
|
|
404
433
|
except Exception as exc: # pragma: no cover - optional dependency path
|
|
405
434
|
logger.warning("Unable to import HostedTaskApp for swe-mini: %s", exc)
|
|
406
435
|
if HostedTaskAppCls is not None:
|
|
@@ -1238,6 +1238,15 @@ async def execute_rollout(
|
|
|
1238
1238
|
)
|
|
1239
1239
|
|
|
1240
1240
|
# Build partial trajectory and return HTTP 200
|
|
1241
|
+
# Extract inference_url from policy meta (best effort)
|
|
1242
|
+
inference_url = None
|
|
1243
|
+
if policy_handle is not None:
|
|
1244
|
+
try:
|
|
1245
|
+
policy_snapshot = policy_handle.snapshot()
|
|
1246
|
+
inference_url = policy_snapshot.get("config", {}).get("inference_url")
|
|
1247
|
+
except Exception:
|
|
1248
|
+
pass
|
|
1249
|
+
|
|
1241
1250
|
trajectory = RolloutTrajectory(
|
|
1242
1251
|
env_id=env_id,
|
|
1243
1252
|
policy_id=policy_id,
|
|
@@ -1249,6 +1258,7 @@ async def execute_rollout(
|
|
|
1249
1258
|
"at_op": op,
|
|
1250
1259
|
},
|
|
1251
1260
|
length=len(trajectory_steps),
|
|
1261
|
+
inference_url=inference_url, # NEW: Required for trace correlation
|
|
1252
1262
|
decision_samples=decision_samples if step_rewards_active else None,
|
|
1253
1263
|
)
|
|
1254
1264
|
metrics = RolloutMetrics(
|
|
@@ -1369,6 +1379,15 @@ async def execute_rollout(
|
|
|
1369
1379
|
},
|
|
1370
1380
|
)
|
|
1371
1381
|
trajectory_steps.append(term_step)
|
|
1382
|
+
# Extract inference_url from policy meta (best effort)
|
|
1383
|
+
inference_url = None
|
|
1384
|
+
if policy_handle is not None:
|
|
1385
|
+
try:
|
|
1386
|
+
policy_snapshot = policy_handle.snapshot()
|
|
1387
|
+
inference_url = policy_snapshot.get("config", {}).get("inference_url")
|
|
1388
|
+
except Exception:
|
|
1389
|
+
pass
|
|
1390
|
+
|
|
1372
1391
|
trajectory = RolloutTrajectory(
|
|
1373
1392
|
env_id=env_id,
|
|
1374
1393
|
policy_id=policy_id,
|
|
@@ -1379,6 +1398,7 @@ async def execute_rollout(
|
|
|
1379
1398
|
"at_op": op,
|
|
1380
1399
|
},
|
|
1381
1400
|
length=len(trajectory_steps),
|
|
1401
|
+
inference_url=inference_url, # NEW: Required for trace correlation
|
|
1382
1402
|
decision_samples=decision_samples if step_rewards_active else None,
|
|
1383
1403
|
)
|
|
1384
1404
|
metrics = RolloutMetrics(
|
|
@@ -1460,6 +1480,15 @@ async def execute_rollout(
|
|
|
1460
1480
|
)
|
|
1461
1481
|
trajectory_steps.append(term_step)
|
|
1462
1482
|
# Build partial response
|
|
1483
|
+
# Extract inference_url from policy meta (best effort)
|
|
1484
|
+
inference_url = None
|
|
1485
|
+
if policy_handle is not None:
|
|
1486
|
+
try:
|
|
1487
|
+
policy_snapshot = policy_handle.snapshot()
|
|
1488
|
+
inference_url = policy_snapshot.get("config", {}).get("inference_url")
|
|
1489
|
+
except Exception:
|
|
1490
|
+
pass
|
|
1491
|
+
|
|
1463
1492
|
trajectory = RolloutTrajectory(
|
|
1464
1493
|
env_id=env_id,
|
|
1465
1494
|
policy_id=policy_id,
|
|
@@ -1471,6 +1500,7 @@ async def execute_rollout(
|
|
|
1471
1500
|
"at_op": op,
|
|
1472
1501
|
},
|
|
1473
1502
|
length=len(trajectory_steps),
|
|
1503
|
+
inference_url=inference_url, # NEW: Required for trace correlation
|
|
1474
1504
|
decision_samples=decision_samples if step_rewards_active else None,
|
|
1475
1505
|
)
|
|
1476
1506
|
metrics = RolloutMetrics(
|
|
@@ -1688,12 +1718,22 @@ async def execute_rollout(
|
|
|
1688
1718
|
timing_final.setdefault("overhead_ms", 0.0)
|
|
1689
1719
|
|
|
1690
1720
|
# Build trajectory
|
|
1721
|
+
# Extract inference_url from policy meta
|
|
1722
|
+
inference_url = None
|
|
1723
|
+
if policy_handle is not None:
|
|
1724
|
+
try:
|
|
1725
|
+
policy_snapshot = policy_handle.snapshot()
|
|
1726
|
+
inference_url = policy_snapshot.get("config", {}).get("inference_url")
|
|
1727
|
+
except Exception:
|
|
1728
|
+
pass
|
|
1729
|
+
|
|
1691
1730
|
trajectory = RolloutTrajectory(
|
|
1692
1731
|
env_id=env_id,
|
|
1693
1732
|
policy_id=policy_id,
|
|
1694
1733
|
steps=trajectory_steps,
|
|
1695
1734
|
final={"observation": _summarize_observation_for_storage(env_handle, current_obs)},
|
|
1696
1735
|
length=len(trajectory_steps),
|
|
1736
|
+
inference_url=inference_url, # NEW: Required for trace correlation
|
|
1697
1737
|
decision_samples=decision_samples if step_rewards_active else None,
|
|
1698
1738
|
)
|
|
1699
1739
|
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
|
-
"""
|
|
3
|
-
Simple test script for the GRPO Synth Envs Hosted Service.
|
|
4
|
-
|
|
5
|
-
Run this after starting the service with:
|
|
6
|
-
python main.py
|
|
7
|
-
"""
|
|
2
|
+
"""Manual smoke script for the GRPO Synth Envs Hosted Service."""
|
|
8
3
|
|
|
9
4
|
import asyncio
|
|
10
5
|
import json
|
|
11
6
|
|
|
12
7
|
import httpx
|
|
8
|
+
import pytest
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
pytestmark = pytest.mark.skip(reason="Requires running hosted service on localhost:8000")
|
|
13
12
|
|
|
14
13
|
|
|
15
14
|
async def test_service():
|
|
@@ -0,0 +1,275 @@
|
|
|
1
|
+
# Task App Testing Guide
|
|
2
|
+
|
|
3
|
+
This document describes how to run tests for the task apps in this directory.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Each task app has unit and integration tests following a consistent pattern inspired by the customer environment tests in `customers/`.
|
|
8
|
+
|
|
9
|
+
## Test Structure
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
examples/task_apps/<app_name>/tests/
|
|
13
|
+
├── __init__.py
|
|
14
|
+
├── integration/
|
|
15
|
+
│ ├── __init__.py
|
|
16
|
+
│ └── test_<app>_eval.py # Server startup + eval tests
|
|
17
|
+
└── unit/
|
|
18
|
+
├── __init__.py
|
|
19
|
+
└── test_<app>_*.py # Environment, scoring, dataset tests
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Running Tests
|
|
23
|
+
|
|
24
|
+
### Prerequisites
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
# Install test dependencies
|
|
28
|
+
uv sync --dev
|
|
29
|
+
|
|
30
|
+
# Set required environment variables
|
|
31
|
+
export GROQ_API_KEY="your-groq-key"
|
|
32
|
+
export OPENAI_API_KEY="your-openai-key" # For Sokoban
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Run All Tests for a Task App
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Verilog
|
|
39
|
+
pytest examples/task_apps/verilog/tests/ -v
|
|
40
|
+
|
|
41
|
+
# Enron
|
|
42
|
+
pytest examples/task_apps/enron/tests/ -v
|
|
43
|
+
|
|
44
|
+
# Sokoban
|
|
45
|
+
pytest examples/task_apps/sokoban/tests/ -v
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Run Only Unit Tests (Fast)
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# Runs quickly, no server startup required
|
|
52
|
+
pytest examples/task_apps/verilog/tests/unit/ -v
|
|
53
|
+
pytest examples/task_apps/enron/tests/unit/ -v
|
|
54
|
+
pytest examples/task_apps/sokoban/tests/unit/ -v
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Run Only Integration Tests
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# Slower, starts servers and runs evals
|
|
61
|
+
pytest examples/task_apps/verilog/tests/integration/ -v
|
|
62
|
+
pytest examples/task_apps/enron/tests/integration/ -v
|
|
63
|
+
pytest examples/task_apps/sokoban/tests/integration/ -v
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Run All Task App Tests
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
# Run everything
|
|
70
|
+
pytest examples/task_apps/*/tests/ -v
|
|
71
|
+
|
|
72
|
+
# Skip slow tests
|
|
73
|
+
pytest examples/task_apps/*/tests/ -v -m "not slow"
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Test Categories
|
|
77
|
+
|
|
78
|
+
### Unit Tests
|
|
79
|
+
|
|
80
|
+
**Purpose**: Test individual components in isolation
|
|
81
|
+
- Environment initialization
|
|
82
|
+
- Reward calculation
|
|
83
|
+
- Tool implementations
|
|
84
|
+
- State management
|
|
85
|
+
|
|
86
|
+
**Characteristics**:
|
|
87
|
+
- Fast (< 1 second each)
|
|
88
|
+
- No external dependencies
|
|
89
|
+
- No server startup
|
|
90
|
+
- No API calls
|
|
91
|
+
|
|
92
|
+
**Examples**:
|
|
93
|
+
- `test_verilog_scoring.py`: Tests reward components (compile, simulate, submit)
|
|
94
|
+
- `test_enron_environment.py`: Tests search, answer, reward calculation
|
|
95
|
+
- `test_sokoban_environment.py`: Tests actions, rewards, truncation
|
|
96
|
+
|
|
97
|
+
### Integration Tests
|
|
98
|
+
|
|
99
|
+
**Purpose**: Test the full system end-to-end
|
|
100
|
+
- Server startup
|
|
101
|
+
- Health/info endpoints
|
|
102
|
+
- Full evaluation runs
|
|
103
|
+
- **Rollout execution** (manual and policy-driven)
|
|
104
|
+
|
|
105
|
+
**Characteristics**:
|
|
106
|
+
- Slower (30-300 seconds)
|
|
107
|
+
- Requires server startup
|
|
108
|
+
- May require API keys
|
|
109
|
+
- Tests real workflows
|
|
110
|
+
|
|
111
|
+
**Examples**:
|
|
112
|
+
- `test_verilog_eval.py`: Starts server, runs Groq eval with Qwen3-32B
|
|
113
|
+
- `test_verilog_rollout.py`: **Manual & policy rollouts via /rollout endpoint**
|
|
114
|
+
- `test_enron_eval.py`: Starts server, runs Groq eval
|
|
115
|
+
- `test_enron_rollout.py`: **Manual & policy rollouts, auth testing**
|
|
116
|
+
- `test_sokoban_eval.py`: Starts server, tests manual rollout
|
|
117
|
+
- `test_sokoban_rollout.py`: **6 rollout tests (manual, policy, difficulties, limits)**
|
|
118
|
+
|
|
119
|
+
## What Each Test Validates
|
|
120
|
+
|
|
121
|
+
### Verilog Tests
|
|
122
|
+
|
|
123
|
+
**Unit Tests** (4 tests):
|
|
124
|
+
- ✅ Compile success gives +0.1 reward
|
|
125
|
+
- ✅ Simulation pass gives +1.0 reward
|
|
126
|
+
- ✅ Submit success gives +10.0 reward
|
|
127
|
+
- ✅ Submit checks last simulation output correctly
|
|
128
|
+
|
|
129
|
+
**Integration Tests** (5 tests):
|
|
130
|
+
- ✅ Server starts and responds to /health
|
|
131
|
+
- ✅ /task_info returns valid Verilog task metadata
|
|
132
|
+
- ✅ Full eval with Qwen3-32B completes successfully
|
|
133
|
+
- ✅ **Manual rollout** with explicit write/compile/simulate/submit
|
|
134
|
+
- ✅ **Policy rollout** using Groq/Qwen3-32B (verifies LLM integration)
|
|
135
|
+
|
|
136
|
+
### Enron Tests
|
|
137
|
+
|
|
138
|
+
**Unit Tests** (3 tests):
|
|
139
|
+
- ✅ search_emails tool works correctly
|
|
140
|
+
- ✅ answer_question tool calculates rewards
|
|
141
|
+
- ✅ Exact answer match gives high reward (>0.9)
|
|
142
|
+
- ✅ Partial answer match gives medium reward (>0.5)
|
|
143
|
+
- ✅ Wrong answer gives low reward (<0.5)
|
|
144
|
+
|
|
145
|
+
**Integration Tests** (6 tests):
|
|
146
|
+
- ✅ Server starts and responds to /health
|
|
147
|
+
- ✅ /task_info returns valid Enron task metadata
|
|
148
|
+
- ✅ Full eval with Qwen3-32B completes successfully
|
|
149
|
+
- ✅ **Manual rollout** with explicit search/read/answer actions
|
|
150
|
+
- ✅ **Policy rollout** using Groq/Qwen3-32B
|
|
151
|
+
- ✅ **Authentication** enforcement (rejects requests without auth header)
|
|
152
|
+
|
|
153
|
+
### Sokoban Tests
|
|
154
|
+
|
|
155
|
+
**Unit Tests** (3 tests):
|
|
156
|
+
- ✅ Module imports work correctly
|
|
157
|
+
- ✅ Reward components exist (goal achieved, step penalty)
|
|
158
|
+
- ✅ Engine creation with different difficulty levels
|
|
159
|
+
|
|
160
|
+
**Integration Tests** (9 tests):
|
|
161
|
+
- ✅ Server starts and responds to /health
|
|
162
|
+
- ✅ /task_info returns valid Sokoban task metadata
|
|
163
|
+
- ✅ **Manual rollout** with movement actions (left/right/up/down)
|
|
164
|
+
- ✅ **Policy rollout** with OpenAI GPT-5-mini (may skip if slow)
|
|
165
|
+
- ✅ **All difficulty levels** (easy/medium/hard) work correctly
|
|
166
|
+
- ✅ **Max steps limit** enforcement (stops at configured limit)
|
|
167
|
+
- ✅ **Puzzle completion detection** (terminated=True when solved)
|
|
168
|
+
- ✅ Truncation on max_steps
|
|
169
|
+
- ✅ Response structure validation
|
|
170
|
+
|
|
171
|
+
## Debugging Test Failures
|
|
172
|
+
|
|
173
|
+
### Server Won't Start
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
# Check if port is already in use
|
|
177
|
+
lsof -i :<port>
|
|
178
|
+
|
|
179
|
+
# Check logs manually
|
|
180
|
+
uv run -m synth_ai task-app serve <app_name> --port 8999
|
|
181
|
+
|
|
182
|
+
# Check environment variables
|
|
183
|
+
echo $GROQ_API_KEY
|
|
184
|
+
echo $OPENAI_API_KEY
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
### Tests Timeout
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
# Run with more verbose output
|
|
191
|
+
pytest <test_file> -v -s
|
|
192
|
+
|
|
193
|
+
# Skip slow tests
|
|
194
|
+
pytest <test_file> -v --timeout=60
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Import Errors
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
# Ensure you're in the right directory
|
|
201
|
+
cd /path/to/synth-ai
|
|
202
|
+
|
|
203
|
+
# Reinstall dependencies
|
|
204
|
+
uv sync --dev
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
## CI/CD Integration
|
|
208
|
+
|
|
209
|
+
These tests can be run in CI with:
|
|
210
|
+
|
|
211
|
+
```yaml
|
|
212
|
+
# .github/workflows/test-task-apps.yml
|
|
213
|
+
- name: Run task app tests
|
|
214
|
+
env:
|
|
215
|
+
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
|
|
216
|
+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
217
|
+
run: |
|
|
218
|
+
# Unit tests (fast, always run)
|
|
219
|
+
pytest examples/task_apps/*/tests/unit/ -v
|
|
220
|
+
|
|
221
|
+
# Integration tests (slower, only on main)
|
|
222
|
+
if [ "$GITHUB_REF" = "refs/heads/main" ]; then
|
|
223
|
+
pytest examples/task_apps/*/tests/integration/ -v --timeout=300
|
|
224
|
+
fi
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
## Adding Tests for New Task Apps
|
|
228
|
+
|
|
229
|
+
When creating a new task app, follow this pattern:
|
|
230
|
+
|
|
231
|
+
1. **Create test structure**:
|
|
232
|
+
```bash
|
|
233
|
+
mkdir -p examples/task_apps/<new_app>/tests/{unit,integration}
|
|
234
|
+
touch examples/task_apps/<new_app>/tests/__init__.py
|
|
235
|
+
touch examples/task_apps/<new_app>/tests/unit/__init__.py
|
|
236
|
+
touch examples/task_apps/<new_app>/tests/integration/__init__.py
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
2. **Create unit tests** (`tests/unit/test_<app>_*.py`):
|
|
240
|
+
- Test environment initialization
|
|
241
|
+
- Test reward calculation
|
|
242
|
+
- Test tool implementations
|
|
243
|
+
- Test edge cases
|
|
244
|
+
|
|
245
|
+
3. **Create integration tests** (`tests/integration/test_<app>_eval.py`):
|
|
246
|
+
- Copy from an existing integration test
|
|
247
|
+
- Update app name, port, config path
|
|
248
|
+
- Add app-specific endpoint tests
|
|
249
|
+
|
|
250
|
+
4. **Add to CI**:
|
|
251
|
+
- Update CI config to include new tests
|
|
252
|
+
- Ensure required env vars are set
|
|
253
|
+
|
|
254
|
+
## Test Coverage Goals
|
|
255
|
+
|
|
256
|
+
- Unit test coverage: >80%
|
|
257
|
+
- Integration test coverage: 100% of critical paths
|
|
258
|
+
- All public APIs have at least one integration test
|
|
259
|
+
- All reward components have unit tests
|
|
260
|
+
|
|
261
|
+
## Common Issues
|
|
262
|
+
|
|
263
|
+
### "Task app terminated immediately"
|
|
264
|
+
- Check that the app name is correct
|
|
265
|
+
- Verify the app is registered in `synth_ai/task/apps.py`
|
|
266
|
+
- Check recent changes to the app code
|
|
267
|
+
|
|
268
|
+
### "GROQ_API_KEY must be set"
|
|
269
|
+
- Set the environment variable
|
|
270
|
+
- Or skip the test: `pytest -k "not groq"`
|
|
271
|
+
|
|
272
|
+
### "Config file not found"
|
|
273
|
+
- Ensure eval config exists in task app directory
|
|
274
|
+
- Check the path in the test matches actual location
|
|
275
|
+
|