synth-ai 0.2.17__tar.gz → 0.2.19__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.
- {synth_ai-0.2.17 → synth_ai-0.2.19}/PKG-INFO +102 -4
- {synth_ai-0.2.17 → synth_ai-0.2.19}/README.md +97 -0
- synth_ai-0.2.19/examples/baseline/banking77_baseline.py +204 -0
- synth_ai-0.2.19/examples/baseline/crafter_baseline.py +407 -0
- synth_ai-0.2.19/examples/baseline/pokemon_red_baseline.py +326 -0
- synth_ai-0.2.19/examples/baseline/simple_baseline.py +56 -0
- synth_ai-0.2.19/examples/baseline/warming_up_to_rl_baseline.py +239 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/README.md +355 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/banking77_gepa_local.toml +95 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/banking77_gepa_test.toml +82 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/banking77_mipro_local.toml +52 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/hotpotqa_gepa_local.toml +59 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/hotpotqa_gepa_qwen.toml +36 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/hotpotqa_mipro_local.toml +53 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/hover_gepa_local.toml +59 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/hover_gepa_qwen.toml +36 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/hover_mipro_local.toml +53 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/ifbench_gepa_local.toml +59 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/ifbench_gepa_qwen.toml +36 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/ifbench_mipro_local.toml +53 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/pupa_gepa_local.toml +60 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/configs/pupa_mipro_local.toml +54 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/deploy_banking77_task_app.sh +41 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/gepa_baseline.py +204 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/query_prompts_example.py +97 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/run_gepa_banking77.sh +87 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/task_apps.py +105 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/test_gepa_local.sh +67 -0
- synth_ai-0.2.19/examples/blog_posts/gepa/verify_banking77_setup.sh +123 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/configs/eval_gpt5nano.toml +26 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml +27 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml +1 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/extract_images.py +239 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/pokemon_vl_baseline.py +326 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/run_eval_extract_images.py +209 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/run_qwen_eval_extract_images.py +212 -0
- synth_ai-0.2.19/examples/blog_posts/pokemon_vl/text_box_analysis.md +106 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/ARCHITECTURE.md +195 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/FINAL_TEST_RESULTS.md +127 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/INFERENCE_SUCCESS.md +132 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/SMOKE_TESTING.md +164 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/SMOKE_TEST_COMPLETE.md +253 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/configs/eval_baseline_qwen32b_10x20.toml +25 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b_10x20.toml +26 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/warming_up_to_rl/configs/filter_high_reward_dataset.toml +1 -1
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/configs/smoke_test.toml +75 -0
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/configs/train_rl_from_sft.toml +91 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/warming_up_to_rl/configs/train_sft_qwen4b.toml +1 -1
- synth_ai-0.2.19/examples/blog_posts/warming_up_to_rl/warming_up_to_rl_baseline.py +187 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/VERILOG_REWARDS.md +4 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/VERILOG_RL_CHECKLIST.md +4 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_rl_outcome.toml +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/configs/rl_from_base_qwen17.toml +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/inference/openai_client.py +0 -34
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/policy_routes.py +17 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/rollout.py +4 -2
- synth_ai-0.2.19/examples/task_apps/banking77/__init__.py +6 -0
- synth_ai-0.2.19/examples/task_apps/banking77/banking77_task_app.py +841 -0
- synth_ai-0.2.19/examples/task_apps/banking77/deploy_wrapper.py +46 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/CREATE_SFT_DATASET.md +4 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/FILTER_COMMAND_STATUS.md +4 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md +4 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/grpo_crafter.py +24 -2
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py +49 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py +355 -58
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py +68 -7
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py +78 -21
- synth_ai-0.2.19/examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py +411 -0
- synth_ai-0.2.19/examples/task_apps/gepa_benchmarks/__init__.py +7 -0
- synth_ai-0.2.19/examples/task_apps/gepa_benchmarks/common.py +260 -0
- synth_ai-0.2.19/examples/task_apps/gepa_benchmarks/hotpotqa_task_app.py +507 -0
- synth_ai-0.2.19/examples/task_apps/gepa_benchmarks/hover_task_app.py +436 -0
- synth_ai-0.2.19/examples/task_apps/gepa_benchmarks/ifbench_task_app.py +563 -0
- synth_ai-0.2.19/examples/task_apps/gepa_benchmarks/pupa_task_app.py +460 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md +4 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/task_app.py +254 -36
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/grpo_crafter.py +53 -4
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py +49 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +152 -41
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +31 -1
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py +33 -3
- synth_ai-0.2.19/examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +129 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/configs/rl_from_base_qwen17.toml +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/pyproject.toml +5 -4
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/builders.py +90 -1
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/cli.py +396 -21
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/config_finder.py +13 -2
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/configs/__init__.py +15 -1
- synth_ai-0.2.19/synth_ai/api/train/configs/prompt_learning.py +442 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/configs/rl.py +29 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/task_app.py +1 -1
- synth_ai-0.2.19/synth_ai/api/train/validators.py +277 -0
- synth_ai-0.2.19/synth_ai/baseline/__init__.py +25 -0
- synth_ai-0.2.19/synth_ai/baseline/config.py +209 -0
- synth_ai-0.2.19/synth_ai/baseline/discovery.py +214 -0
- synth_ai-0.2.19/synth_ai/baseline/execution.py +146 -0
- synth_ai-0.2.19/synth_ai/cli/__init__.py +166 -0
- synth_ai-0.2.19/synth_ai/cli/claude.py +70 -0
- synth_ai-0.2.19/synth_ai/cli/codex.py +84 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/__init__.py +1 -0
- synth_ai-0.2.19/synth_ai/cli/commands/baseline/__init__.py +12 -0
- synth_ai-0.2.19/synth_ai/cli/commands/baseline/core.py +637 -0
- synth_ai-0.2.19/synth_ai/cli/commands/baseline/list.py +93 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/eval/core.py +13 -10
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/filter/core.py +53 -17
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/help/core.py +0 -1
- synth_ai-0.2.19/synth_ai/cli/commands/smoke/__init__.py +7 -0
- synth_ai-0.2.19/synth_ai/cli/commands/smoke/core.py +1436 -0
- synth_ai-0.2.19/synth_ai/cli/commands/status/subcommands/pricing.py +22 -0
- synth_ai-0.2.19/synth_ai/cli/commands/status/subcommands/usage.py +203 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/train/judge_schemas.py +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/train/judge_validation.py +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/train/validation.py +0 -57
- synth_ai-0.2.19/synth_ai/cli/demo.py +37 -0
- synth_ai-0.2.19/synth_ai/cli/deploy/__init__.py +43 -0
- synth_ai-0.2.19/synth_ai/cli/deploy.py +162 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/legacy_root_backup.py +14 -8
- synth_ai-0.2.19/synth_ai/cli/opencode.py +107 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/root.py +9 -5
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/task_app_deploy.py +1 -1
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/task_apps.py +53 -53
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +7 -4
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +9 -5
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +4 -3
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/judge_schemas.py +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/__init__.py +10 -0
- synth_ai-0.2.19/synth_ai/learning/prompt_learning_client.py +276 -0
- synth_ai-0.2.19/synth_ai/learning/prompt_learning_types.py +184 -0
- synth_ai-0.2.19/synth_ai/pricing/__init__.py +2 -0
- synth_ai-0.2.19/synth_ai/pricing/model_pricing.py +57 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/streaming/handlers.py +53 -4
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/streaming/streamer.py +19 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/apps/__init__.py +1 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/config.py +2 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/tracing_utils.py +25 -25
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/validators.py +44 -8
- synth_ai-0.2.19/synth_ai/task_app_cfgs.py +21 -0
- synth_ai-0.2.19/synth_ai/tracing_v3/config.py +229 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/constants.py +1 -1
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/db_config.py +24 -38
- synth_ai-0.2.19/synth_ai/tracing_v3/storage/config.py +109 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/storage/factory.py +3 -3
- synth_ai-0.2.19/synth_ai/tracing_v3/turso/daemon.py +252 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/turso/native_manager.py +92 -16
- synth_ai-0.2.19/synth_ai/types.py +8 -0
- synth_ai-0.2.19/synth_ai/urls.py +11 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/__init__.py +30 -1
- synth_ai-0.2.19/synth_ai/utils/agents.py +74 -0
- synth_ai-0.2.19/synth_ai/utils/bin.py +39 -0
- synth_ai-0.2.19/synth_ai/utils/cli.py +275 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/env.py +17 -17
- synth_ai-0.2.19/synth_ai/utils/json.py +72 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/modal.py +283 -1
- synth_ai-0.2.19/synth_ai/utils/paths.py +48 -0
- synth_ai-0.2.19/synth_ai/utils/uvicorn.py +113 -0
- synth_ai-0.2.19/synth_ai/v0/tracing_v1/events/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai.egg-info/PKG-INFO +102 -4
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai.egg-info/SOURCES.txt +81 -7
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai.egg-info/requires.txt +4 -3
- synth_ai-0.2.17/examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml +0 -25
- synth_ai-0.2.17/examples/blog_posts/warming_up_to_rl/configs/train_rl_from_sft.toml +0 -41
- synth_ai-0.2.17/examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py +0 -218
- synth_ai-0.2.17/examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +0 -62
- synth_ai-0.2.17/synth_ai/cli/__init__.py +0 -98
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/__init__.py +0 -23
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/core.py +0 -614
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/errors.py +0 -72
- synth_ai-0.2.17/synth_ai/cli/commands/deploy/validation.py +0 -11
- synth_ai-0.2.17/synth_ai/cli/demo.py +0 -5
- synth_ai-0.2.17/synth_ai/cli/deploy/__init__.py +0 -28
- synth_ai-0.2.17/synth_ai/cli/deploy/core.py +0 -5
- synth_ai-0.2.17/synth_ai/cli/deploy/errors.py +0 -23
- synth_ai-0.2.17/synth_ai/cli/deploy/validation.py +0 -5
- synth_ai-0.2.17/synth_ai/tracing_v3/config.py +0 -86
- synth_ai-0.2.17/synth_ai/tracing_v3/storage/config.py +0 -75
- synth_ai-0.2.17/synth_ai/tracing_v3/turso/daemon.py +0 -150
- synth_ai-0.2.17/synth_ai/utils/cli.py +0 -131
- {synth_ai-0.2.17 → synth_ai-0.2.19}/LICENSE +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/MANIFEST.in +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/analyze_semantic_words.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/pokemon_vl/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/pokemon_vl/configs/eval_rl_final.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/pokemon_vl/configs/filter_high_reward.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/pokemon_vl/configs/train_sft_qwen4b_vl.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/warming_up_to_rl/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/blog_posts/warming_up_to_rl/configs/eval_openai_gpt_oss_120b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/crafter_debug_render.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/dev/qwen3_32b_qlora_4xh100.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/SFT_README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/README_verilog_rl.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_eval_synth_qwen4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_eval_text_only_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_rl_stepwise_simple_NEW_FORMAT.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_sft_qwen30b_lora.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/crafter_synth_backend.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/verilog_eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/verilog_eval_synth_qwen8b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/configs/verilog_rl_lora.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/convert_traces_to_sft.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/crafter_rl_lora.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/judges/crafter_backend_judge.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/judges/verilog_backend_judge.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/readme.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/run_sft_qwen30b.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/sse_metrics_streaming_notes.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/task_app_config_notes.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/multi_step/verilog_rl_lora.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/_shared.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/configs/coder_lora_30b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/configs/coder_lora_4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/configs/coder_lora_small.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/generate_dataset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/infer_ft_smoke.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/infer_prod_proxy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/infer_via_synth.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/scripts/infer_coder.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/scripts/train_coder_30b.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/sft_full_17b.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/sft_lora_30b.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/subset_jsonl.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/todos.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_coder/validate_jsonl.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/BUGS_AND_FIXES.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/IMAGE_VALIDATION_COMPLETE.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/IMAGE_VALIDATION_SUMMARY.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/INFERENCE_SFT_TESTS.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/NEXT_STEPS_2B.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/QUICKSTART.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/QUICKSTART_RL_VISION.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/RL_VISION_COMPLETE.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/RL_VISION_TESTING.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/SDK_VISION_INTEGRATION.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/SETUP_COMPLETE.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/VISION_TESTS_COMPLETE.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/VLM_PIPELINE_COMPLETE.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/collect_data_via_cli.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/collect_vision_traces.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/crafter_rl_vision_qwen3vl4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/crafter_vlm_sft_example.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/eval_gpt4o_mini_vision.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/eval_gpt4o_vision_proper.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/eval_gpt5nano_vision.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/eval_qwen3vl_vision.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/filter_qwen3vl_sft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/filter_vision_sft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/filter_vision_test.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/configs/sft_qwen3_vl_2b_test.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/crafter_gpt5nano_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/crafter_qwen_vl_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/run_vision_comparison.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/run_vision_sft_pipeline.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/test_image_validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/qwen_vl/test_sft_vision_data.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/download_dataset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/run_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/task_app/math_single_step.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/rl/task_app/math_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/run_crafter_demo.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/sft/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/sft/evaluate.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/sft/export_dataset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/sft/generate_traces.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/grpo_swe_mini.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/grpo_swe_mini_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/branching.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/environment_routes.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/hosted_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/main.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/storage/volume.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/test_agents.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/test_service.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/hosted/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/swe/task_app/morph_backend.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/IMAGE_ONLY_EVAL_QUICKSTART.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/TESTING.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/EVAL_IMAGE_ONLY_RESULTS.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/QUERY_EXAMPLES.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/README_IMAGE_ONLY_EVAL.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/eval_image_only_gpt4o.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/eval_text_only_groq_llama.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/filter_sft_dataset.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/crafter/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/modal_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/task_app/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/eval_groq_qwen32.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/filter_sft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/task_app/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/task_app/grpo_enron.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/task_app/grpo_enron_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/conftest.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/integration/test_enron_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/integration/test_enron_rollout.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/enron/tests/unit/test_enron_environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/math/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/math/math_single_step.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/math/math_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_battle/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_battle/modal_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_battle/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_battle/task_app/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_COMPLETE.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_STATUS.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/eval_image_only_gpt4o.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/pallet_town_rl_config.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/pokemon_red/test_pallet_town_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/eval_groq_qwen32.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/eval_openai_gpt5.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/filter_sft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/conftest.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/filter_sft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/task_app/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/task_app/grpo_verilog.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/conftest.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/integration/test_verilog_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/integration/test_verilog_rollout.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/task_apps/verilog/tests/unit/test_verilog_scoring.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/PROPOSAL.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/crafter_image_only_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/crafter_openai_vlm_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/filter_image_rows.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/vlm/run_crafter_vlm_benchmark.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/analyze_trace_db.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/crafter_fft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/export_trace_sft.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/groq_test.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/manage_secrets.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/old/event_rewards.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/old/notes.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/readme.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_fft_and_save.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_local_rollout.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_local_rollout_modal.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_local_rollout_traced.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/run_rollout_remote.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/download_dataset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/run_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/examples/workflows/math_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/setup.cfg +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/__main__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/_utils/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/_utils/base_url.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/_utils/http.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/_utils/prompts.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/_utils/task_app_state.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/_utils/user_config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/models/supported.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/configs/sft.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/configs/shared.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/env_resolver.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/pollers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/supported_algos.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/api/train/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/auth/credentials.py +0 -0
- /synth_ai-0.2.17/synth_ai/environments/examples/crafter_classic/debug_translation.py → /synth_ai-0.2.19/synth_ai/cli/__main__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/_modal_wrapper.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/_storage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/_typer_patch.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/_validate_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/balance.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/calc.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/demo/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/demo/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/eval/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/eval/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/eval/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/filter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/filter/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/filter/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/help/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/formatters.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/subcommands/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/subcommands/files.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/subcommands/jobs.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/subcommands/models.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/subcommands/runs.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/subcommands/summary.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/status/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/train/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/train/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/commands/train/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/eval/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/eval/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/eval/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/eval/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/filter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/filter/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/filter/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/filter/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/lib/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/lib/task_app_discovery.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/lib/task_app_env.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/modal_serve/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/modal_serve/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/modal_serve/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/modal_serve/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/recent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/rl_demo.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/serve/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/serve/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/serve/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/serve/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/setup.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/status.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/task_app_list.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/task_app_modal_serve.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/task_app_serve.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/traces.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/train/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/train/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/train/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/train/validation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/train.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/turso.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/cli/watch.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/config/base_url.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/core/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/core/cli.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/crafter/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/crafter/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/crafter/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/_common.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/config.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/deploy_modal.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/_common.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/config.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/deploy_modal.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/modal_task_app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/demos/math/task_app_entry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/artifacts/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/artifacts/base.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/db/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/db/sqlite.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/resources/sqlite.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/results.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/rewards/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/rewards/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/shared_engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/environment/tools/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/bandit/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/bandit/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/bandit/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/bandit/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/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.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/config_logging.py +0 -0
- /synth_ai-0.2.17/synth_ai/environments/reproducibility/helpers.py → /synth_ai-0.2.19/synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/enron/units/keyword_stats.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/environment_mapping.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/minigrid/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/achievements.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/nethack/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/config_logging.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/memory_map.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/engine_helpers/state_extraction.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/red/units/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/sokoban/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/tictactoe/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/tictactoe/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/tictactoe/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/tictactoe/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/verilog/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/verilog/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/verilog/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/verilog/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/wordle/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/wordle/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/wordle/environment.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/examples/wordle/taskset.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/reproducibility/core.py +0 -0
- /synth_ai-0.2.17/synth_ai/py.typed → /synth_ai-0.2.19/synth_ai/environments/reproducibility/helpers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/reproducibility/tree.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/service/app.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/service/core_routes.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/service/external_registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/service/registry.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/stateful/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/stateful/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/stateful/engine.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/stateful/state.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/tasks/api.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/tasks/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/tasks/filters.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/tasks/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/v0_observability/history.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/environments/v0_observability/log.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/evals/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/evals/base.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/evals/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/evals/types.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/http.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/http_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/inference/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/inference/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/jobs/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/algorithms.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/constants.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/core.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/ft_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/gateway.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/health.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/jobs.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl/contracts.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl/env_keys.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl/secrets.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/rl_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/sft/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/sft/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/sft/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/sft/data.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/sse.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/learning/validators.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/lm/__init__.py +0 -0
- /synth_ai-0.2.17/synth_ai/v0/lm/caching/__init__.py → /synth_ai-0.2.19/synth_ai/py.typed +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/streaming/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/streaming/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/streaming/types.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/auth.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/contracts.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/datasets.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/errors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/health.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/json.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/proxy.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/rubrics/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/rubrics/loaders.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/rubrics/models.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/rubrics/scoring.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/rubrics/strict.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/rubrics.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/server.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/trace_correlation_helpers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/task/vendors.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/examples/basic_usage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/hooks.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/lm_call_record_abstractions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/migration_helper.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/replica_sync.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/serialization.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/storage/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/storage/base.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/storage/exceptions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/storage/types.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/storage/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/trace_utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/turso/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/turso/models.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/tracing_v3/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/base_url.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/http.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/process.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/prompts.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/sqld.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/task_app_discovery.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/task_app_env.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/task_app_state.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/utils/user_config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/api/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/api/models/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/api/models/supported.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/config/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/config/base_url.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/__init__.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/lm/cost → synth_ai-0.2.19/synth_ai/v0/lm/caching}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/caching/constants.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/caching/dbs.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/caching/ephemeral.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/caching/handler.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/caching/initialize.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/caching/persistent.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/constants.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/all.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/exceptions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/main.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/main_v3.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/synth_models.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/core/vendor_clients.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/lm/structured_outputs → synth_ai-0.2.19/synth_ai/v0/lm/cost}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/cost/monitor.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/cost/statefulness.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/injection.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/overrides.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/provider_support/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/provider_support/anthropic.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/provider_support/openai.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/provider_support/suppress_logging.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/lm/vendors → synth_ai-0.2.19/synth_ai/v0/lm/structured_outputs}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/structured_outputs/handler.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/structured_outputs/inject.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/tools/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/tools/base.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/unified_interface.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/lm/vendors/core → synth_ai-0.2.19/synth_ai/v0/lm/vendors}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/base.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/lm/vendors/local → synth_ai-0.2.19/synth_ai/v0/lm/vendors/core}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/core/gemini_api.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/core/mistral_api.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/core/openai_api.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/lm/vendors/supported → synth_ai-0.2.19/synth_ai/v0/lm/vendors/local}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/local/ollama.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/openai_standard.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/retries.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/tracing → synth_ai-0.2.19/synth_ai/v0/lm/vendors/supported}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/deepseek.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/grok.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/groq.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/ollama.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/openrouter.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/supported/together.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/vendors/synth_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/lm/warmup.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/tracing/events → synth_ai-0.2.19/synth_ai/v0/tracing}/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/abstractions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/base_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/client_manager.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/context.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/decorators.py +0 -0
- {synth_ai-0.2.17/synth_ai/v0/tracing_v1 → synth_ai-0.2.19/synth_ai/v0/tracing}/events/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/events/manage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/events/scope.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/events/store.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/immediate_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/local.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/log_client_base.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/retry_queue.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/trackers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/upload.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/abstractions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/base_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/client_manager.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/config.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/context.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/decorators.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/events/manage.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/events/scope.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/events/store.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/immediate_client.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/local.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/log_client_base.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/retry_queue.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/trackers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/upload.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v1/utils.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v3/__init__.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai/v0/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai.egg-info/dependency_links.txt +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/synth_ai.egg-info/entry_points.txt +0 -0
- {synth_ai-0.2.17 → synth_ai-0.2.19}/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.19
|
|
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
|
|
@@ -23,8 +23,8 @@ Requires-Dist: rich>=13.9.0
|
|
|
23
23
|
Requires-Dist: openai>=1.99.0
|
|
24
24
|
Requires-Dist: anthropic>=0.42.0
|
|
25
25
|
Requires-Dist: langfuse<3.0.0,>=2.53.9
|
|
26
|
-
Requires-Dist: opentelemetry-api
|
|
27
|
-
Requires-Dist: opentelemetry-sdk
|
|
26
|
+
Requires-Dist: opentelemetry-api>=1.26.0
|
|
27
|
+
Requires-Dist: opentelemetry-sdk>=1.26.0
|
|
28
28
|
Requires-Dist: diskcache>=5.6.3
|
|
29
29
|
Requires-Dist: groq>=0.30.0
|
|
30
30
|
Requires-Dist: google-genai>=1.26.0
|
|
@@ -53,9 +53,10 @@ Requires-Dist: aiohttp>=3.8.0
|
|
|
53
53
|
Requires-Dist: httpx>=0.28.1
|
|
54
54
|
Requires-Dist: datasets>=4.0.0
|
|
55
55
|
Requires-Dist: transformers>=4.56.1
|
|
56
|
-
Requires-Dist: modal
|
|
56
|
+
Requires-Dist: modal<2.0.0,>=1.1.4
|
|
57
57
|
Requires-Dist: pyboy>=2.6.0
|
|
58
58
|
Requires-Dist: setuptools>=80.9.0
|
|
59
|
+
Requires-Dist: libsql-experimental>=0.0.55
|
|
59
60
|
Provides-Extra: dev
|
|
60
61
|
Requires-Dist: build>=1.2.2.post1; extra == "dev"
|
|
61
62
|
Requires-Dist: twine>=4.0.0; extra == "dev"
|
|
@@ -118,6 +119,7 @@ uvx synth-ai setup
|
|
|
118
119
|
uvx synth-ai demo
|
|
119
120
|
uvx synth-ai deploy
|
|
120
121
|
uvx synth-ai run
|
|
122
|
+
uvx synth-ai baseline # For coding agents: get baseline scores
|
|
121
123
|
```
|
|
122
124
|
|
|
123
125
|
> Full quickstart: [https://docs.usesynth.ai/sdk/get-started](https://docs.usesynth.ai/sdk/get-started)
|
|
@@ -158,6 +160,102 @@ Synth-AI ships with a built-in RL example: training **Qwen3-0.6B** on math reaso
|
|
|
158
160
|
|
|
159
161
|
---
|
|
160
162
|
|
|
163
|
+
## 🤖 For Coding Agents: Get Started with Baselines
|
|
164
|
+
|
|
165
|
+
**Baselines** are the fastest way for coding agents to evaluate changes and measure improvement on Synth tasks.
|
|
166
|
+
|
|
167
|
+
### Why Use Baselines?
|
|
168
|
+
|
|
169
|
+
Baselines provide a **self-contained evaluation system** that:
|
|
170
|
+
- ✅ **No infrastructure required** — runs locally, no deployed task app needed
|
|
171
|
+
- ✅ **Quick feedback loop** — get task-by-task results in seconds
|
|
172
|
+
- ✅ **Compare changes** — establish a baseline score before making modifications
|
|
173
|
+
- ✅ **Auto-discoverable** — finds baseline files automatically in your codebase
|
|
174
|
+
|
|
175
|
+
### Quick Start for Coding Agents
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
# 1. List available baselines
|
|
179
|
+
uvx synth-ai baseline list
|
|
180
|
+
|
|
181
|
+
# 2. Run a quick 3-task baseline to get started
|
|
182
|
+
uvx synth-ai baseline banking77 --split train --seeds 0,1,2
|
|
183
|
+
|
|
184
|
+
# 3. Get your baseline score (full train split)
|
|
185
|
+
uvx synth-ai baseline banking77 --split train
|
|
186
|
+
|
|
187
|
+
# 4. Make your changes to the code...
|
|
188
|
+
|
|
189
|
+
# 5. Re-run to compare performance
|
|
190
|
+
uvx synth-ai baseline banking77 --split train --output results_after.json
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
### Available Baselines
|
|
194
|
+
|
|
195
|
+
```bash
|
|
196
|
+
# Filter by task type
|
|
197
|
+
uvx synth-ai baseline list --tag rl # RL tasks
|
|
198
|
+
uvx synth-ai baseline list --tag nlp # NLP tasks
|
|
199
|
+
uvx synth-ai baseline list --tag vision # Vision tasks
|
|
200
|
+
|
|
201
|
+
# Run specific baselines
|
|
202
|
+
uvx synth-ai baseline warming_up_to_rl # Crafter survival game
|
|
203
|
+
uvx synth-ai baseline pokemon_vl # Pokemon Red (vision)
|
|
204
|
+
uvx synth-ai baseline gepa # Banking77 classification
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
### Baseline Results
|
|
208
|
+
|
|
209
|
+
Each baseline run provides:
|
|
210
|
+
- **Task-by-task results** — see exactly which seeds succeed/fail
|
|
211
|
+
- **Aggregate metrics** — success rate, mean/std rewards, total tasks
|
|
212
|
+
- **Serializable output** — save to JSON with `--output results.json`
|
|
213
|
+
- **Model comparison** — test different models with `--model`
|
|
214
|
+
|
|
215
|
+
Example output:
|
|
216
|
+
```
|
|
217
|
+
============================================================
|
|
218
|
+
Baseline Evaluation: Banking77 Intent Classification
|
|
219
|
+
============================================================
|
|
220
|
+
Split(s): train
|
|
221
|
+
Tasks: 10
|
|
222
|
+
Success: 8/10
|
|
223
|
+
Execution time: 12.34s
|
|
224
|
+
|
|
225
|
+
Aggregate Metrics:
|
|
226
|
+
mean_outcome_reward: 0.8000
|
|
227
|
+
success_rate: 0.8000
|
|
228
|
+
total_tasks: 10
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
### Creating Custom Baselines
|
|
232
|
+
|
|
233
|
+
Coding agents can create new baseline files to test custom tasks:
|
|
234
|
+
|
|
235
|
+
```python
|
|
236
|
+
# my_task_baseline.py
|
|
237
|
+
from synth_ai.baseline import BaselineConfig, BaselineTaskRunner, DataSplit, TaskResult
|
|
238
|
+
|
|
239
|
+
class MyTaskRunner(BaselineTaskRunner):
|
|
240
|
+
async def run_task(self, seed: int) -> TaskResult:
|
|
241
|
+
# Your task logic here
|
|
242
|
+
return TaskResult(...)
|
|
243
|
+
|
|
244
|
+
my_baseline = BaselineConfig(
|
|
245
|
+
baseline_id="my_task",
|
|
246
|
+
name="My Custom Task",
|
|
247
|
+
description="Evaluate my custom task",
|
|
248
|
+
task_runner=MyTaskRunner,
|
|
249
|
+
splits={
|
|
250
|
+
"train": DataSplit(name="train", seeds=list(range(10))),
|
|
251
|
+
},
|
|
252
|
+
)
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
Place this file in `examples/baseline/` or name it `*_baseline.py` for auto-discovery.
|
|
256
|
+
|
|
257
|
+
---
|
|
258
|
+
|
|
161
259
|
## 🔐 SDK → Dashboard Pairing
|
|
162
260
|
|
|
163
261
|
When you run `uvx synth-ai setup` (or legacy `uvx synth-ai rl_demo setup`):
|
|
@@ -33,6 +33,7 @@ uvx synth-ai setup
|
|
|
33
33
|
uvx synth-ai demo
|
|
34
34
|
uvx synth-ai deploy
|
|
35
35
|
uvx synth-ai run
|
|
36
|
+
uvx synth-ai baseline # For coding agents: get baseline scores
|
|
36
37
|
```
|
|
37
38
|
|
|
38
39
|
> Full quickstart: [https://docs.usesynth.ai/sdk/get-started](https://docs.usesynth.ai/sdk/get-started)
|
|
@@ -73,6 +74,102 @@ Synth-AI ships with a built-in RL example: training **Qwen3-0.6B** on math reaso
|
|
|
73
74
|
|
|
74
75
|
---
|
|
75
76
|
|
|
77
|
+
## 🤖 For Coding Agents: Get Started with Baselines
|
|
78
|
+
|
|
79
|
+
**Baselines** are the fastest way for coding agents to evaluate changes and measure improvement on Synth tasks.
|
|
80
|
+
|
|
81
|
+
### Why Use Baselines?
|
|
82
|
+
|
|
83
|
+
Baselines provide a **self-contained evaluation system** that:
|
|
84
|
+
- ✅ **No infrastructure required** — runs locally, no deployed task app needed
|
|
85
|
+
- ✅ **Quick feedback loop** — get task-by-task results in seconds
|
|
86
|
+
- ✅ **Compare changes** — establish a baseline score before making modifications
|
|
87
|
+
- ✅ **Auto-discoverable** — finds baseline files automatically in your codebase
|
|
88
|
+
|
|
89
|
+
### Quick Start for Coding Agents
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
# 1. List available baselines
|
|
93
|
+
uvx synth-ai baseline list
|
|
94
|
+
|
|
95
|
+
# 2. Run a quick 3-task baseline to get started
|
|
96
|
+
uvx synth-ai baseline banking77 --split train --seeds 0,1,2
|
|
97
|
+
|
|
98
|
+
# 3. Get your baseline score (full train split)
|
|
99
|
+
uvx synth-ai baseline banking77 --split train
|
|
100
|
+
|
|
101
|
+
# 4. Make your changes to the code...
|
|
102
|
+
|
|
103
|
+
# 5. Re-run to compare performance
|
|
104
|
+
uvx synth-ai baseline banking77 --split train --output results_after.json
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Available Baselines
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
# Filter by task type
|
|
111
|
+
uvx synth-ai baseline list --tag rl # RL tasks
|
|
112
|
+
uvx synth-ai baseline list --tag nlp # NLP tasks
|
|
113
|
+
uvx synth-ai baseline list --tag vision # Vision tasks
|
|
114
|
+
|
|
115
|
+
# Run specific baselines
|
|
116
|
+
uvx synth-ai baseline warming_up_to_rl # Crafter survival game
|
|
117
|
+
uvx synth-ai baseline pokemon_vl # Pokemon Red (vision)
|
|
118
|
+
uvx synth-ai baseline gepa # Banking77 classification
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
### Baseline Results
|
|
122
|
+
|
|
123
|
+
Each baseline run provides:
|
|
124
|
+
- **Task-by-task results** — see exactly which seeds succeed/fail
|
|
125
|
+
- **Aggregate metrics** — success rate, mean/std rewards, total tasks
|
|
126
|
+
- **Serializable output** — save to JSON with `--output results.json`
|
|
127
|
+
- **Model comparison** — test different models with `--model`
|
|
128
|
+
|
|
129
|
+
Example output:
|
|
130
|
+
```
|
|
131
|
+
============================================================
|
|
132
|
+
Baseline Evaluation: Banking77 Intent Classification
|
|
133
|
+
============================================================
|
|
134
|
+
Split(s): train
|
|
135
|
+
Tasks: 10
|
|
136
|
+
Success: 8/10
|
|
137
|
+
Execution time: 12.34s
|
|
138
|
+
|
|
139
|
+
Aggregate Metrics:
|
|
140
|
+
mean_outcome_reward: 0.8000
|
|
141
|
+
success_rate: 0.8000
|
|
142
|
+
total_tasks: 10
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Creating Custom Baselines
|
|
146
|
+
|
|
147
|
+
Coding agents can create new baseline files to test custom tasks:
|
|
148
|
+
|
|
149
|
+
```python
|
|
150
|
+
# my_task_baseline.py
|
|
151
|
+
from synth_ai.baseline import BaselineConfig, BaselineTaskRunner, DataSplit, TaskResult
|
|
152
|
+
|
|
153
|
+
class MyTaskRunner(BaselineTaskRunner):
|
|
154
|
+
async def run_task(self, seed: int) -> TaskResult:
|
|
155
|
+
# Your task logic here
|
|
156
|
+
return TaskResult(...)
|
|
157
|
+
|
|
158
|
+
my_baseline = BaselineConfig(
|
|
159
|
+
baseline_id="my_task",
|
|
160
|
+
name="My Custom Task",
|
|
161
|
+
description="Evaluate my custom task",
|
|
162
|
+
task_runner=MyTaskRunner,
|
|
163
|
+
splits={
|
|
164
|
+
"train": DataSplit(name="train", seeds=list(range(10))),
|
|
165
|
+
},
|
|
166
|
+
)
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
Place this file in `examples/baseline/` or name it `*_baseline.py` for auto-discovery.
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
76
173
|
## 🔐 SDK → Dashboard Pairing
|
|
77
174
|
|
|
78
175
|
When you run `uvx synth-ai setup` (or legacy `uvx synth-ai rl_demo setup`):
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
"""Banking77 baseline file for intent classification evaluation."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Any, Dict
|
|
6
|
+
|
|
7
|
+
from datasets import load_dataset
|
|
8
|
+
|
|
9
|
+
from synth_ai.baseline import BaselineConfig, BaselineTaskRunner, DataSplit, TaskResult
|
|
10
|
+
from synth_ai.inference import InferenceClient
|
|
11
|
+
import os
|
|
12
|
+
import httpx
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# Load dataset once at module level
|
|
16
|
+
_dataset = None
|
|
17
|
+
_label_names = None
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def _load_dataset():
|
|
21
|
+
"""Load Banking77 dataset."""
|
|
22
|
+
global _dataset, _label_names
|
|
23
|
+
if _dataset is None:
|
|
24
|
+
try:
|
|
25
|
+
_dataset = load_dataset("PolyAI/banking77")
|
|
26
|
+
except Exception:
|
|
27
|
+
# Fallback: try without org prefix
|
|
28
|
+
_dataset = load_dataset("banking77")
|
|
29
|
+
_label_names = _dataset["train"].features["label"].names
|
|
30
|
+
return _dataset, _label_names
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class Banking77TaskRunner(BaselineTaskRunner):
|
|
34
|
+
"""Task runner for Banking77 intent classification."""
|
|
35
|
+
|
|
36
|
+
def __init__(self, policy_config: Dict[str, Any], env_config: Dict[str, Any]):
|
|
37
|
+
super().__init__(policy_config, env_config)
|
|
38
|
+
|
|
39
|
+
# Load dataset
|
|
40
|
+
self.dataset, self.label_names = _load_dataset()
|
|
41
|
+
|
|
42
|
+
# Store config for inference
|
|
43
|
+
self.model = policy_config["model"]
|
|
44
|
+
self.temperature = policy_config.get("temperature", 0.0)
|
|
45
|
+
self.max_tokens = policy_config.get("max_tokens", 128)
|
|
46
|
+
self.inference_url = policy_config.get("inference_url")
|
|
47
|
+
|
|
48
|
+
# Tool definition
|
|
49
|
+
self.tool = {
|
|
50
|
+
"type": "function",
|
|
51
|
+
"function": {
|
|
52
|
+
"name": "banking77_classify",
|
|
53
|
+
"description": "Classify a banking query into an intent",
|
|
54
|
+
"parameters": {
|
|
55
|
+
"type": "object",
|
|
56
|
+
"properties": {
|
|
57
|
+
"label": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"enum": self.label_names,
|
|
60
|
+
"description": "The intent label",
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"required": ["label"],
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
async def run_task(self, seed: int) -> TaskResult:
|
|
69
|
+
"""Run a single Banking77 classification task."""
|
|
70
|
+
|
|
71
|
+
# Get split
|
|
72
|
+
split = self.env_config.get("split", "train")
|
|
73
|
+
|
|
74
|
+
# Get example from dataset
|
|
75
|
+
example = self.dataset[split][seed]
|
|
76
|
+
|
|
77
|
+
# Build prompt
|
|
78
|
+
system_prompt = f"""You are an expert banking assistant that classifies customer queries.
|
|
79
|
+
Given a customer message, respond with exactly one intent label using the tool call.
|
|
80
|
+
|
|
81
|
+
Valid intents: {', '.join(self.label_names)}"""
|
|
82
|
+
|
|
83
|
+
user_prompt = f"Customer Query: {example['text']}\n\nClassify this query."
|
|
84
|
+
|
|
85
|
+
# Run inference
|
|
86
|
+
messages = [
|
|
87
|
+
{"role": "system", "content": system_prompt},
|
|
88
|
+
{"role": "user", "content": user_prompt},
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
# Use InferenceClient if URL provided, otherwise use OpenAI-compatible API
|
|
92
|
+
if self.inference_url and self.inference_url.startswith("http"):
|
|
93
|
+
api_key = os.getenv("SYNTH_API_KEY") or os.getenv("OPENAI_API_KEY") or ""
|
|
94
|
+
base_url = self.inference_url.rstrip("/")
|
|
95
|
+
if not base_url.endswith("/api"):
|
|
96
|
+
base_url = f"{base_url}/api" if "/api" not in base_url else base_url
|
|
97
|
+
client = InferenceClient(base_url=base_url, api_key=api_key)
|
|
98
|
+
response = await client.create_chat_completion(
|
|
99
|
+
model=self.model,
|
|
100
|
+
messages=messages,
|
|
101
|
+
tools=[self.tool],
|
|
102
|
+
tool_choice={"type": "function", "function": {"name": "banking77_classify"}},
|
|
103
|
+
temperature=self.temperature,
|
|
104
|
+
max_tokens=self.max_tokens,
|
|
105
|
+
)
|
|
106
|
+
else:
|
|
107
|
+
# Use OpenAI/Groq directly
|
|
108
|
+
# Check if model starts with groq: prefix
|
|
109
|
+
model_name = self.model
|
|
110
|
+
use_groq = model_name.startswith("groq:")
|
|
111
|
+
if use_groq:
|
|
112
|
+
model_name = model_name[5:] # Remove "groq:" prefix
|
|
113
|
+
|
|
114
|
+
api_key = os.getenv("GROQ_API_KEY") if use_groq else os.getenv("OPENAI_API_KEY") or ""
|
|
115
|
+
base_url = "https://api.groq.com/openai/v1" if use_groq else "https://api.openai.com/v1"
|
|
116
|
+
async with httpx.AsyncClient() as http_client:
|
|
117
|
+
resp = await http_client.post(
|
|
118
|
+
f"{base_url}/chat/completions",
|
|
119
|
+
json={
|
|
120
|
+
"model": model_name,
|
|
121
|
+
"messages": messages,
|
|
122
|
+
"tools": [self.tool],
|
|
123
|
+
"tool_choice": {"type": "function", "function": {"name": "banking77_classify"}},
|
|
124
|
+
"temperature": self.temperature,
|
|
125
|
+
"max_tokens": self.max_tokens,
|
|
126
|
+
},
|
|
127
|
+
headers={"Authorization": f"Bearer {api_key}"} if api_key else {},
|
|
128
|
+
)
|
|
129
|
+
response = resp.json()
|
|
130
|
+
|
|
131
|
+
# Extract prediction
|
|
132
|
+
predicted_label = ""
|
|
133
|
+
tool_calls = []
|
|
134
|
+
if "choices" in response and len(response["choices"]) > 0:
|
|
135
|
+
message = response["choices"][0].get("message", {})
|
|
136
|
+
tool_calls = message.get("tool_calls", [])
|
|
137
|
+
elif "tool_calls" in response:
|
|
138
|
+
tool_calls = response["tool_calls"]
|
|
139
|
+
|
|
140
|
+
if tool_calls:
|
|
141
|
+
# Handle both string and dict arguments
|
|
142
|
+
args = tool_calls[0]["function"].get("arguments", "")
|
|
143
|
+
if isinstance(args, str):
|
|
144
|
+
import json
|
|
145
|
+
args = json.loads(args)
|
|
146
|
+
predicted_label = args.get("label", "") if isinstance(args, dict) else ""
|
|
147
|
+
|
|
148
|
+
# Evaluate
|
|
149
|
+
expected_label = self.label_names[example["label"]]
|
|
150
|
+
correct = predicted_label == expected_label
|
|
151
|
+
|
|
152
|
+
return TaskResult(
|
|
153
|
+
seed=seed,
|
|
154
|
+
success=True,
|
|
155
|
+
outcome_reward=1.0 if correct else 0.0,
|
|
156
|
+
total_steps=1,
|
|
157
|
+
metadata={
|
|
158
|
+
"query": example["text"],
|
|
159
|
+
"expected": expected_label,
|
|
160
|
+
"predicted": predicted_label,
|
|
161
|
+
"correct": correct,
|
|
162
|
+
"split": split,
|
|
163
|
+
},
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
# Define baseline config
|
|
168
|
+
# Note: We need to load the dataset first to get the label names
|
|
169
|
+
_load_dataset()
|
|
170
|
+
banking77_baseline = BaselineConfig(
|
|
171
|
+
baseline_id="banking77",
|
|
172
|
+
name="Banking77 Intent Classification",
|
|
173
|
+
description="Banking intent classification from customer queries",
|
|
174
|
+
task_runner=Banking77TaskRunner,
|
|
175
|
+
splits={
|
|
176
|
+
"train": DataSplit(
|
|
177
|
+
name="train",
|
|
178
|
+
seeds=list(range(min(10000, len(_dataset["train"]))) if _dataset else range(10000)),
|
|
179
|
+
),
|
|
180
|
+
"val": DataSplit(
|
|
181
|
+
name="val",
|
|
182
|
+
seeds=list(range(min(1000, len(_dataset["test"]))) if _dataset else range(1000)),
|
|
183
|
+
),
|
|
184
|
+
"test": DataSplit(
|
|
185
|
+
name="test",
|
|
186
|
+
seeds=list(range(min(3000, len(_dataset["test"]))) if _dataset else range(3000)),
|
|
187
|
+
),
|
|
188
|
+
},
|
|
189
|
+
default_policy_config={
|
|
190
|
+
"model": "groq:llama-3.1-70b-versatile",
|
|
191
|
+
"temperature": 0.0,
|
|
192
|
+
"max_tokens": 128,
|
|
193
|
+
},
|
|
194
|
+
default_env_config={
|
|
195
|
+
"split": "train",
|
|
196
|
+
},
|
|
197
|
+
metadata={
|
|
198
|
+
"dataset": "PolyAI/banking77",
|
|
199
|
+
"num_classes": 77,
|
|
200
|
+
"task_type": "classification",
|
|
201
|
+
},
|
|
202
|
+
tags=["classification", "nlp", "intent"],
|
|
203
|
+
)
|
|
204
|
+
|