synth-ai 0.2.10__tar.gz → 0.2.13.dev1__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.10/synth_ai.egg-info → synth_ai-0.2.13.dev1}/PKG-INFO +4 -2
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/README.md +3 -1
- synth_ai-0.2.13.dev1/examples/agora_ex/README_MoE.md +224 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/__init__.py +7 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/agora_ex.py +65 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/agora_ex_task_app.py +590 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/configs/rl_lora_qwen3_moe_2xh200.toml +121 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/reward_fn_grpo-human.py +129 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/system_prompt_CURRENT.md +63 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/task_app/agora_ex_task_app.py +590 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/task_app/reward_fn_grpo-human.py +129 -0
- synth_ai-0.2.13.dev1/examples/agora_ex/task_app/system_prompt_CURRENT.md +63 -0
- synth_ai-0.2.13.dev1/examples/multi_step/configs/crafter_rl_outcome.toml +74 -0
- synth_ai-0.2.13.dev1/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +175 -0
- synth_ai-0.2.13.dev1/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +83 -0
- synth_ai-0.2.13.dev1/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +78 -0
- synth_ai-0.2.13.dev1/examples/multi_step/crafter_rl_lora.md +70 -0
- synth_ai-0.2.13.dev1/examples/multi_step/sse_metrics_streaming_notes.md +357 -0
- synth_ai-0.2.13.dev1/examples/multi_step/task_app_config_notes.md +494 -0
- synth_ai-0.2.13.dev1/examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +35 -0
- synth_ai-0.2.13.dev1/examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +26 -0
- synth_ai-0.2.13.dev1/examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +36 -0
- synth_ai-0.2.13.dev1/examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +32 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_eval.py +267 -41
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/grpo_crafter.py +3 -33
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +109 -45
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +42 -46
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py +376 -193
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/pyproject.toml +3 -2
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/__init__.py +41 -1
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/builders.py +74 -33
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/cli.py +29 -6
- synth_ai-0.2.13.dev1/synth_ai/api/train/configs/__init__.py +44 -0
- synth_ai-0.2.13.dev1/synth_ai/api/train/configs/rl.py +133 -0
- synth_ai-0.2.13.dev1/synth_ai/api/train/configs/sft.py +94 -0
- synth_ai-0.2.13.dev1/synth_ai/api/train/configs/shared.py +24 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/env_resolver.py +18 -19
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/supported_algos.py +8 -5
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/utils.py +6 -1
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/__init__.py +4 -2
- synth_ai-0.2.13.dev1/synth_ai/cli/_storage.py +19 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/balance.py +14 -2
- synth_ai-0.2.13.dev1/synth_ai/cli/calc.py +84 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/demo.py +38 -39
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/legacy_root_backup.py +12 -14
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/recent.py +12 -7
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/rl_demo.py +81 -102
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/status.py +4 -3
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/task_apps.py +146 -137
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/traces.py +4 -3
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/watch.py +3 -2
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/core/cli.py +121 -159
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/environment.py +16 -0
- synth_ai-0.2.13.dev1/synth_ai/evals/__init__.py +15 -0
- synth_ai-0.2.13.dev1/synth_ai/evals/client.py +85 -0
- synth_ai-0.2.13.dev1/synth_ai/evals/types.py +42 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/jobs/client.py +15 -3
- synth_ai-0.2.13.dev1/synth_ai/judge_schemas.py +127 -0
- synth_ai-0.2.13.dev1/synth_ai/rubrics/__init__.py +22 -0
- synth_ai-0.2.13.dev1/synth_ai/rubrics/validators.py +126 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/server.py +14 -7
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/decorators.py +51 -26
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/examples/basic_usage.py +12 -7
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/llm_call_record_helpers.py +107 -53
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/replica_sync.py +8 -4
- synth_ai-0.2.13.dev1/synth_ai/tracing_v3/serialization.py +130 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/utils.py +11 -9
- synth_ai-0.2.13.dev1/synth_ai/tracing_v3/turso/__init__.py +12 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/turso/daemon.py +2 -1
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/turso/native_manager.py +28 -15
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1/synth_ai.egg-info}/PKG-INFO +4 -2
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai.egg-info/SOURCES.txt +33 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai.egg-info/entry_points.txt +0 -1
- synth_ai-0.2.10/examples/multi_step/crafter_rl_lora.md +0 -29
- synth_ai-0.2.10/synth_ai/cli/calc.py +0 -69
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/LICENSE +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/MANIFEST.in +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/analyze_semantic_words.sh +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/crafter_debug_render.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/dev/qwen3_32b_qlora_4xh100.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/_shared.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/configs/coder_lora_30b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/configs/coder_lora_4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/configs/coder_lora_small.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/generate_dataset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/infer_ft_smoke.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/infer_prod_proxy.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/infer_via_synth.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/scripts/infer_coder.sh +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/scripts/train_coder_30b.sh +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/sft_full_17b.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/sft_lora_30b.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/subset_jsonl.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/todos.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/qwen_coder/validate_jsonl.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/configs/rl_from_base_qwen17.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/download_dataset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/run_eval.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/task_app/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/task_app/math_single_step.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/rl/task_app/math_task_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/run_crafter_demo.sh +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/sft/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/sft/evaluate.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/sft/export_dataset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/sft/generate_traces.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/grpo_swe_mini.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/grpo_swe_mini_task_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/branching.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/environment_routes.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/hosted_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/main.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/policy_routes.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/registry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/rollout.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/storage/volume.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/test_agents.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/test_service.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/swe/task_app/hosted/utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/PROPOSAL.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/crafter_image_only_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/crafter_openai_vlm_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/filter_image_rows.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/vlm/run_crafter_vlm_benchmark.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/analyze_trace_db.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/crafter_fft.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/export_trace_sft.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/groq_test.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/manage_secrets.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/old/event_rewards.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/old/notes.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/readme.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_fft_and_save.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_local_rollout.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_local_rollout_modal.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_local_rollout_traced.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/run_rollout_remote.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/setup.cfg +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/__main__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/models/supported.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/config_finder.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/pollers.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/api/train/task_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/_modal_wrapper.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/_typer_patch.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/man.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/root.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/cli/turso.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/compound/cais.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/config/base_url.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/core/experiment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/core/system.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demo_registry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/core/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/_common.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/config.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/deploy_modal.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/artifacts/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/artifacts/base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/db/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/db/sqlite.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/registry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/resources/sqlite.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/results.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/rewards/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/rewards/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/shared_engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/environment/tools/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/bandit/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/bandit/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/bandit/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/bandit/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/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.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/config_logging.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/enron/units/keyword_stats.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/environment_mapping.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/minigrid/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/achievements.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/nethack/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/config_logging.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/memory_map.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/engine_helpers/state_extraction.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/red/units/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/sokoban/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/tictactoe/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/tictactoe/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/tictactoe/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/tictactoe/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/verilog/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/verilog/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/verilog/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/verilog/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/wordle/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/wordle/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/wordle/environment.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/examples/wordle/taskset.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/reproducibility/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/reproducibility/helpers.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/reproducibility/tree.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/service/app.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/service/core_routes.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/service/external_registry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/service/registry.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/stateful/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/stateful/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/stateful/engine.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/stateful/state.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/tasks/api.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/tasks/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/tasks/filters.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/tasks/utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/v0_observability/history.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/environments/v0_observability/log.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/evals/base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/handshake.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/http.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/http_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/inference/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/inference/client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/algorithms.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/constants.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/core.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/ft_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/gateway.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/health.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/jobs.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl/client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl/contracts.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl/env_keys.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl/secrets.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/rl_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/sft/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/sft/client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/sft/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/sft/data.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/sse.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/learning/validators.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/lm/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/apps/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/auth.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/contracts.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/datasets.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/errors.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/health.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/json.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/proxy.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/rubrics.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/tracing_utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/validators.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/task/vendors.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/db_config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/hooks.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/lm_call_record_abstractions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/migration_helper.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/exceptions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/factory.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/storage/types.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/turso/models.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/tracing_v3/utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/api/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/api/models/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/api/models/supported.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/config/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/config/base_url.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/constants.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/dbs.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/ephemeral.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/handler.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/initialize.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/caching/persistent.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/constants.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/all.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/exceptions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/main.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/main_v3.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/synth_models.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/core/vendor_clients.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/cost/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/cost/monitor.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/cost/statefulness.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/injection.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/overrides.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/provider_support/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/provider_support/anthropic.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/provider_support/openai.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/provider_support/suppress_logging.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/structured_outputs/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/structured_outputs/handler.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/structured_outputs/inject.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/tools/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/tools/base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/unified_interface.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/core/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/core/gemini_api.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/core/mistral_api.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/core/openai_api.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/local/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/local/ollama.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/openai_standard.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/retries.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/deepseek.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/grok.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/groq.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/ollama.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/openrouter.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/supported/together.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/vendors/synth_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/lm/warmup.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/abstractions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/base_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/client_manager.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/context.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/decorators.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/events/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/events/manage.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/events/scope.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/events/store.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/immediate_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/local.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/log_client_base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/retry_queue.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/trackers.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/upload.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing/utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/abstractions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/base_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/client_manager.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/config.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/context.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/decorators.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/events/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/events/manage.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/events/scope.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/events/store.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/immediate_client.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/local.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/log_client_base.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/retry_queue.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/trackers.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/upload.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v1/utils.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai/v0/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai.egg-info/dependency_links.txt +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai.egg-info/requires.txt +0 -0
- {synth_ai-0.2.10 → synth_ai-0.2.13.dev1}/synth_ai.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: synth-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13.dev1
|
|
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
|
|
@@ -79,7 +79,7 @@ Dynamic: license-file
|
|
|
79
79
|
|
|
80
80
|
[](https://www.python.org/)
|
|
81
81
|
[](LICENSE)
|
|
82
|
-
[](https://pypi.org/project/synth-ai/)
|
|
83
83
|

|
|
84
84
|

|
|
85
85
|

|
|
@@ -88,6 +88,8 @@ Docs: [Synth‑AI Documentation](https://docs.usesynth.ai/welcome/introduction)
|
|
|
88
88
|
|
|
89
89
|
Fast and effective reinforcement learning for agents, via an API
|
|
90
90
|
|
|
91
|
+
> Latest: 0.2.10 published to PyPI (uv publish)
|
|
92
|
+
|
|
91
93
|
## Highlights
|
|
92
94
|
|
|
93
95
|
- Easily scale gpu topologies - train on 3 a10gs or 8 H100s (multi-node available upon request)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.python.org/)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-
[](https://pypi.org/project/synth-ai/)
|
|
6
6
|

|
|
7
7
|

|
|
8
8
|

|
|
@@ -11,6 +11,8 @@ Docs: [Synth‑AI Documentation](https://docs.usesynth.ai/welcome/introduction)
|
|
|
11
11
|
|
|
12
12
|
Fast and effective reinforcement learning for agents, via an API
|
|
13
13
|
|
|
14
|
+
> Latest: 0.2.10 published to PyPI (uv publish)
|
|
15
|
+
|
|
14
16
|
## Highlights
|
|
15
17
|
|
|
16
18
|
- Easily scale gpu topologies - train on 3 a10gs or 8 H100s (multi-node available upon request)
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
# Agora EX - Qwen3 MoE Training
|
|
2
|
+
|
|
3
|
+
## Model: Qwen3-30B-A3B (Small MoE)
|
|
4
|
+
|
|
5
|
+
**Architecture:**
|
|
6
|
+
- Total Parameters: 30B
|
|
7
|
+
- Activated per Token: 3B (~10% activation)
|
|
8
|
+
- Type: Mixture of Experts (MoE)
|
|
9
|
+
- Context: 4K tokens
|
|
10
|
+
|
|
11
|
+
**Why MoE for Agora EX?**
|
|
12
|
+
- ✅ Efficient: Only 3B params active → faster inference
|
|
13
|
+
- ✅ Powerful: 30B total capacity → better code generation
|
|
14
|
+
- ✅ Cost-effective: Lower memory footprint than dense 30B
|
|
15
|
+
- ✅ H200 friendly: Fits comfortably on 2x80GB setup
|
|
16
|
+
|
|
17
|
+
## Hardware: 2xH200
|
|
18
|
+
|
|
19
|
+
**Configuration:**
|
|
20
|
+
- GPU 0 (H200): vLLM inference server
|
|
21
|
+
- GPU 1 (H200): LoRA training
|
|
22
|
+
- Memory: 80GB per GPU (160GB total)
|
|
23
|
+
- Topology: Single-node split
|
|
24
|
+
|
|
25
|
+
**Resource Usage:**
|
|
26
|
+
- vLLM (MoE): ~40GB VRAM (3B active + routing)
|
|
27
|
+
- Training: ~50GB VRAM (gradients + optimizer states)
|
|
28
|
+
- Headroom: ~70GB available
|
|
29
|
+
|
|
30
|
+
## Training Configuration
|
|
31
|
+
|
|
32
|
+
### File: `configs/rl_lora_qwen3_moe_2xh200.toml`
|
|
33
|
+
|
|
34
|
+
**Key Parameters:**
|
|
35
|
+
```toml
|
|
36
|
+
[model]
|
|
37
|
+
base = "Qwen/Qwen3-30B-A3B" # MoE with 3B activation
|
|
38
|
+
trainer_mode = "lora"
|
|
39
|
+
|
|
40
|
+
[lora]
|
|
41
|
+
r = 16 # LoRA rank
|
|
42
|
+
target_modules = ["all-linear"] # Wide coverage for MoE
|
|
43
|
+
|
|
44
|
+
[rollout]
|
|
45
|
+
episodes_per_batch = 16 # 16 episodes per batch
|
|
46
|
+
max_concurrent_rollouts = 4 # Limited by human judge
|
|
47
|
+
batches_per_step = 2 # 32 episodes per training step
|
|
48
|
+
|
|
49
|
+
[training]
|
|
50
|
+
num_epochs = 3
|
|
51
|
+
iterations_per_epoch = 4 # 12 total iterations
|
|
52
|
+
batch_size = 2
|
|
53
|
+
group_size = 4 # GSPO advantage estimation
|
|
54
|
+
learning_rate = 3e-5 # Conservative for MoE
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Usage
|
|
58
|
+
|
|
59
|
+
### 1. Start Task App (with Human Judge)
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
cd /Users/joshpurtell/Documents/GitHub/synth-ai
|
|
63
|
+
|
|
64
|
+
# Set environment variables
|
|
65
|
+
export GROQ_API_KEY=gsk_... # For inference
|
|
66
|
+
export ENVIRONMENT_API_KEY=sk_env_... # For auth
|
|
67
|
+
export EAMES_JUDGE_URL=https://eames-judge-api... # Human judge
|
|
68
|
+
|
|
69
|
+
# Serve task app
|
|
70
|
+
uvx synth-ai serve agora-ex --port 8101
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### 2. Run RL Training
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Train with MoE on 2xH200
|
|
77
|
+
uvx synth-ai train \
|
|
78
|
+
--type rl \
|
|
79
|
+
--config examples/agora_ex/configs/rl_lora_qwen3_moe_2xh200.toml \
|
|
80
|
+
--task-url http://localhost:8101 \
|
|
81
|
+
--env-file backend/.env.dev
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### 3. Monitor Progress
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
# Check logs
|
|
88
|
+
tail -f ~/.synth-ai/logs/train_*.log
|
|
89
|
+
|
|
90
|
+
# View checkpoints
|
|
91
|
+
ls -lh ~/.synth-ai/checkpoints/agora-ex-qwen3-moe-rl/
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Expected Training Time
|
|
95
|
+
|
|
96
|
+
**With Human Judge (5-30 min per eval):**
|
|
97
|
+
- 12 iterations × 32 episodes = 384 rollouts
|
|
98
|
+
- At 10 min average: ~64 hours (2.7 days)
|
|
99
|
+
- At 4 concurrent: ~16 hours wall time
|
|
100
|
+
|
|
101
|
+
**Speedup Options:**
|
|
102
|
+
1. **Use AI Judge:** 10 sec/eval → 2 hours total
|
|
103
|
+
2. **Increase concurrency:** More parallel rollouts
|
|
104
|
+
3. **Reduce episodes:** Fewer samples per iteration
|
|
105
|
+
|
|
106
|
+
## Training Timeline
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
Iteration 1: 32 rollouts → ~5 hours
|
|
110
|
+
Iteration 2: 32 rollouts → ~5 hours
|
|
111
|
+
...
|
|
112
|
+
Iteration 12: 32 rollouts → ~5 hours
|
|
113
|
+
────────────────────────────────────
|
|
114
|
+
Total: 384 rollouts → ~60 hours
|
|
115
|
+
|
|
116
|
+
With 4 concurrent: ~15 hours wall time
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## Memory Usage
|
|
120
|
+
|
|
121
|
+
### vLLM Server (GPU 0)
|
|
122
|
+
|
|
123
|
+
```
|
|
124
|
+
Model weights (MoE): ~25GB (BF16, 3B active + routing)
|
|
125
|
+
KV cache: ~10GB (batch_size=4, context=4K)
|
|
126
|
+
Overhead: ~5GB (vLLM runtime)
|
|
127
|
+
────────────────────────────────────
|
|
128
|
+
Total: ~40GB / 80GB
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
### Training (GPU 1)
|
|
132
|
+
|
|
133
|
+
```
|
|
134
|
+
LoRA adapters: ~2GB (r=16, all-linear)
|
|
135
|
+
Gradients: ~10GB (accumulation)
|
|
136
|
+
Optimizer states: ~20GB (AdamW)
|
|
137
|
+
Activations: ~15GB (forward pass)
|
|
138
|
+
Overhead: ~3GB (PyTorch)
|
|
139
|
+
────────────────────────────────────
|
|
140
|
+
Total: ~50GB / 80GB
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
## Hyperparameter Tuning
|
|
144
|
+
|
|
145
|
+
### If overfitting (train reward >> eval reward):
|
|
146
|
+
```toml
|
|
147
|
+
[lora]
|
|
148
|
+
dropout = 0.1 # Increase from 0.05
|
|
149
|
+
|
|
150
|
+
[training]
|
|
151
|
+
learning_rate = 1e-5 # Decrease from 3e-5
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
### If underfitting (slow improvement):
|
|
155
|
+
```toml
|
|
156
|
+
[training]
|
|
157
|
+
learning_rate = 5e-5 # Increase from 3e-5
|
|
158
|
+
gradient_accumulation_steps = 16 # More accumulation
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### If out of memory:
|
|
162
|
+
```toml
|
|
163
|
+
[training]
|
|
164
|
+
batch_size = 1 # Reduce from 2
|
|
165
|
+
gradient_accumulation_steps = 16 # Compensate with more accumulation
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
## Comparison: MoE vs Dense
|
|
169
|
+
|
|
170
|
+
| Metric | Qwen3-30B-A3B (MoE) | Qwen2.5-Coder-7B (Dense) |
|
|
171
|
+
|--------|---------------------|--------------------------|
|
|
172
|
+
| **Total Params** | 30B | 7B |
|
|
173
|
+
| **Active Params** | 3B | 7B |
|
|
174
|
+
| **Inference Speed** | ~30 tok/s | ~50 tok/s |
|
|
175
|
+
| **VRAM (vLLM)** | ~40GB | ~20GB |
|
|
176
|
+
| **Quality** | ⭐⭐⭐⭐⭐ | ⭐⭐⭐⭐ |
|
|
177
|
+
| **Training Time** | Same | Same |
|
|
178
|
+
| **Best For** | Code quality | Speed/cost |
|
|
179
|
+
|
|
180
|
+
## Next Steps
|
|
181
|
+
|
|
182
|
+
1. **Baseline:** Train MoE with human judge
|
|
183
|
+
2. **Fast iteration:** Switch to AI judge (10s/eval)
|
|
184
|
+
3. **Scale up:** Move to larger MoE (235B-A22B)
|
|
185
|
+
4. **Deploy:** Export trained adapter for production
|
|
186
|
+
|
|
187
|
+
## Troubleshooting
|
|
188
|
+
|
|
189
|
+
### Out of Memory (OOM)
|
|
190
|
+
```bash
|
|
191
|
+
# Reduce batch size
|
|
192
|
+
[training]
|
|
193
|
+
batch_size = 1
|
|
194
|
+
|
|
195
|
+
# Or reduce context length
|
|
196
|
+
[vllm]
|
|
197
|
+
max_model_len = 3072
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
### Slow Rollouts
|
|
201
|
+
```bash
|
|
202
|
+
# Switch to AI judge for development
|
|
203
|
+
uvx synth-ai serve agora-ex-ai-judge --port 8102
|
|
204
|
+
|
|
205
|
+
# Update task_url in training command
|
|
206
|
+
--task-url http://localhost:8102
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
### Model Not Found
|
|
210
|
+
```bash
|
|
211
|
+
# Ensure model is in permitted list
|
|
212
|
+
python3 -c "
|
|
213
|
+
from backend.app.routes.clustered_training.core.algorithms.gspo.permitted_models import list_permitted_models
|
|
214
|
+
print('\n'.join(list_permitted_models()))
|
|
215
|
+
"
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
---
|
|
219
|
+
|
|
220
|
+
**Status:** ✅ Ready for training
|
|
221
|
+
**Model:** Qwen3-30B-A3B (MoE, 3B active)
|
|
222
|
+
**Hardware:** 2xH200 (160GB total)
|
|
223
|
+
**Judge:** Human (Eames) or AI (gpt-oss-120b)
|
|
224
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"""Task App configuration for Agora EX landing page generation."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
from synth_ai.task.apps import ModalDeploymentConfig, TaskAppEntry, register_task_app
|
|
9
|
+
|
|
10
|
+
# Add this directory to path to import the task app module
|
|
11
|
+
_HERE = Path(__file__).resolve().parent
|
|
12
|
+
if str(_HERE) not in sys.path:
|
|
13
|
+
sys.path.insert(0, str(_HERE))
|
|
14
|
+
|
|
15
|
+
from agora_ex_task_app import APP_DESCRIPTION, APP_ID, build_config
|
|
16
|
+
|
|
17
|
+
# Resolve repo root for Modal mounts
|
|
18
|
+
def _resolve_repo_root() -> Path:
|
|
19
|
+
"""Find repo root from this file's location."""
|
|
20
|
+
candidates = [_HERE.parent.parent.parent] # examples/agora_ex -> synth-ai
|
|
21
|
+
for candidate in candidates:
|
|
22
|
+
if (candidate / "pyproject.toml").exists():
|
|
23
|
+
return candidate
|
|
24
|
+
return _HERE.parent.parent.parent
|
|
25
|
+
|
|
26
|
+
REPO_ROOT = _resolve_repo_root()
|
|
27
|
+
|
|
28
|
+
# Register at module level
|
|
29
|
+
register_task_app(
|
|
30
|
+
entry=TaskAppEntry(
|
|
31
|
+
app_id=APP_ID,
|
|
32
|
+
description=APP_DESCRIPTION,
|
|
33
|
+
config_factory=build_config,
|
|
34
|
+
aliases=(APP_ID, "agora-ex", "agora_ex"),
|
|
35
|
+
env_files=(),
|
|
36
|
+
modal=ModalDeploymentConfig(
|
|
37
|
+
app_name="agora-ex-task-app",
|
|
38
|
+
python_version="3.11",
|
|
39
|
+
pip_packages=(
|
|
40
|
+
"fastapi>=0.100.0",
|
|
41
|
+
"uvicorn>=0.23.0",
|
|
42
|
+
"pydantic>=2.0.0",
|
|
43
|
+
"httpx>=0.24.0",
|
|
44
|
+
"python-dotenv>=1.0.1",
|
|
45
|
+
# Tracing/DB runtime deps
|
|
46
|
+
"sqlalchemy>=2.0.42",
|
|
47
|
+
"aiosqlite>=0.21.0",
|
|
48
|
+
"greenlet>=3.2.3",
|
|
49
|
+
),
|
|
50
|
+
extra_local_dirs=(
|
|
51
|
+
# Mount repo root so local modules resolve when deployed on Modal
|
|
52
|
+
(str(REPO_ROOT), "/opt/synth_ai_repo"),
|
|
53
|
+
(str(REPO_ROOT / "synth_ai"), "/opt/synth_ai_repo/synth_ai"),
|
|
54
|
+
(str(_HERE), "/opt/synth_ai_repo/examples/agora_ex"),
|
|
55
|
+
),
|
|
56
|
+
secret_names=("groq-api-key", "openai-api-key"),
|
|
57
|
+
memory=8192, # 8GB memory for inference + judge calls
|
|
58
|
+
cpu=2.0, # 2 CPUs
|
|
59
|
+
max_containers=10,
|
|
60
|
+
),
|
|
61
|
+
)
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
__all__ = ["build_config"]
|
|
65
|
+
|