synth-ai 0.2.23.dev2__tar.gz → 0.2.23.dev3__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.23.dev2/synth_ai.egg-info → synth_ai-0.2.23.dev3}/PKG-INFO +7 -23
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/README.md +2 -2
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/rollout.py +1 -1
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py +1 -1
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py +1 -1
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/pyproject.toml +8 -25
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/__init__.py +0 -39
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/builders.py +35 -28
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/cli.py +80 -117
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/utils.py +23 -4
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cfgs.py +92 -31
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/__init__.py +0 -2
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/smoke/core.py +3 -3
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/deploy.py +16 -2
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/root.py +1 -1
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/mcp/main.py +20 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/modal.py +41 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/__init__.py +2 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/llm_call_record_helpers.py +50 -4
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/__init__.py +7 -0
- synth_ai-0.2.23.dev3/synth_ai/utils/config.py +81 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/env.py +37 -0
- synth_ai-0.2.23.dev3/synth_ai/utils/errors.py +85 -0
- synth_ai-0.2.23.dev3/synth_ai/utils/logging.py +198 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/paths.py +5 -5
- synth_ai-0.2.23.dev3/synth_ai/utils/ssl.py +25 -0
- synth_ai-0.2.23.dev3/synth_ai/uvicorn.py +77 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3/synth_ai.egg-info}/PKG-INFO +7 -23
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai.egg-info/SOURCES.txt +5 -103
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai.egg-info/requires.txt +4 -20
- synth_ai-0.2.23.dev2/synth_ai/lm/__init__.py +0 -25
- synth_ai-0.2.23.dev2/synth_ai/uvicorn.py +0 -58
- synth_ai-0.2.23.dev2/synth_ai/v0/api/__init__.py +0 -8
- synth_ai-0.2.23.dev2/synth_ai/v0/api/models/__init__.py +0 -8
- synth_ai-0.2.23.dev2/synth_ai/v0/api/models/supported.py +0 -8
- synth_ai-0.2.23.dev2/synth_ai/v0/config/__init__.py +0 -11
- synth_ai-0.2.23.dev2/synth_ai/v0/config/base_url.py +0 -6
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/__init__.py +0 -51
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/constants.py +0 -6
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/dbs.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/ephemeral.py +0 -100
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/handler.py +0 -137
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/initialize.py +0 -11
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/caching/persistent.py +0 -114
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/config.py +0 -115
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/constants.py +0 -32
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/__init__.py +0 -8
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/all.py +0 -66
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/exceptions.py +0 -5
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/main.py +0 -330
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/main_v3.py +0 -591
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/synth_models.py +0 -35
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/core/vendor_clients.py +0 -183
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/cost/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/cost/monitor.py +0 -1
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/cost/statefulness.py +0 -1
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/injection.py +0 -80
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/overrides.py +0 -206
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/provider_support/__init__.py +0 -8
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/provider_support/anthropic.py +0 -972
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/provider_support/openai.py +0 -1139
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/provider_support/suppress_logging.py +0 -31
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/structured_outputs/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/structured_outputs/handler.py +0 -440
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/structured_outputs/inject.py +0 -297
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/structured_outputs/rehabilitate.py +0 -185
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/tools/__init__.py +0 -3
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/tools/base.py +0 -172
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/unified_interface.py +0 -202
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/base.py +0 -81
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/core/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/core/anthropic_api.py +0 -387
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/core/gemini_api.py +0 -292
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/core/mistral_api.py +0 -322
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/core/openai_api.py +0 -227
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/core/synth_dev_api.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/local/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/local/ollama.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/openai_standard.py +0 -782
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/openai_standard_responses.py +0 -259
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/retries.py +0 -22
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/custom_endpoint.py +0 -415
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/deepseek.py +0 -69
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/grok.py +0 -75
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/groq.py +0 -16
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/ollama.py +0 -15
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/supported/together.py +0 -11
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/vendors/synth_client.py +0 -835
- synth_ai-0.2.23.dev2/synth_ai/v0/lm/warmup.py +0 -186
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/abstractions.py +0 -224
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/base_client.py +0 -91
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/client_manager.py +0 -131
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/config.py +0 -142
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/context.py +0 -146
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/decorators.py +0 -682
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/events/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/events/manage.py +0 -147
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/events/scope.py +0 -86
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/events/store.py +0 -228
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/immediate_client.py +0 -151
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/local.py +0 -18
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/log_client_base.py +0 -73
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/retry_queue.py +0 -186
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/trackers.py +0 -515
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/upload.py +0 -409
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing/utils.py +0 -9
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/__init__.py +0 -16
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/abstractions.py +0 -224
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/base_client.py +0 -91
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/client_manager.py +0 -131
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/config.py +0 -142
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/context.py +0 -146
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/decorators.py +0 -703
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/events/__init__.py +0 -0
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/events/manage.py +0 -147
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/events/scope.py +0 -86
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/events/store.py +0 -228
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/immediate_client.py +0 -151
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/local.py +0 -18
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/log_client_base.py +0 -73
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/retry_queue.py +0 -186
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/trackers.py +0 -515
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/upload.py +0 -527
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v1/utils.py +0 -9
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v3/__init__.py +0 -10
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v3/abstractions.py +0 -3
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v3/decorators.py +0 -3
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v3/llm_call_record_helpers.py +0 -3
- synth_ai-0.2.23.dev2/synth_ai/v0/tracing_v3/session_tracer.py +0 -3
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/LICENSE +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/MANIFEST.in +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/analyze_semantic_words.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/baseline/banking77_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/baseline/banking77_pipeline_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/baseline/crafter_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/baseline/pokemon_red_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/baseline/simple_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/baseline/warming_up_to_rl_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/banking77_gepa_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/banking77_gepa_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/banking77_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/banking77_pipeline_gepa_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/banking77_pipeline_gepa_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/hotpotqa_gepa_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/hotpotqa_gepa_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/hotpotqa_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/hover_gepa_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/hover_gepa_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/hover_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/ifbench_gepa_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/ifbench_gepa_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/ifbench_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/pupa_gepa_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/configs/pupa_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/deploy_banking77_task_app.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/gepa_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/query_prompts_example.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/run_gepa_banking77.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/run_gepa_banking77_pipeline.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/task_apps.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/test_gepa_local.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/gepa/verify_banking77_setup.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/configs/banking77_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/configs/banking77_mipro_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/configs/banking77_pipeline_mipro_gemini_flash_lite_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/configs/banking77_pipeline_mipro_gpt41mini_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/configs/banking77_pipeline_mipro_local.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/configs/banking77_pipeline_mipro_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/deploy_banking77_pipeline_task_app.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/deploy_banking77_task_app.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/multi_step.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/run_mipro_banking77.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/run_mipro_banking77_pipeline.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/run_mipro_banking77_pipeline_gemini_flash_lite.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/run_mipro_banking77_pipeline_gpt41mini.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/mipro/verify_banking77_setup.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/configs/eval_gpt5nano.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/configs/eval_rl_final.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/configs/filter_high_reward.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/configs/train_sft_qwen4b_vl.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/extract_images.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/pokemon_vl_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/run_eval_extract_images.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/run_qwen_eval_extract_images.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/pokemon_vl/text_box_analysis.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/ARCHITECTURE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/FINAL_TEST_RESULTS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/INFERENCE_SUCCESS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/SMOKE_TESTING.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/SMOKE_TEST_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/eval_baseline_qwen32b_10x20.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b_10x20.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/eval_openai_gpt_oss_120b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/filter_high_reward_dataset.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/smoke_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/train_rl_from_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/configs/train_sft_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/blog_posts/warming_up_to_rl/warming_up_to_rl_baseline.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/crafter_debug_render.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/dev/qwen3_32b_qlora_4xh100.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/gepa/banking77_pipeline_gepa.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/gepa/multi_stage_gepa_example.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/gepa/run_gepa_banking77_pipeline.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/SFT_README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/README_verilog_rl.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/VERILOG_REWARDS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/VERILOG_RL_CHECKLIST.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_eval_synth_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_eval_text_only_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_rl_outcome.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_rl_stepwise_simple.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_rl_stepwise_simple_NEW_FORMAT.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_sft_qwen30b_lora.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/crafter_synth_backend.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/verilog_eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/verilog_eval_synth_qwen8b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/configs/verilog_rl_lora.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/convert_traces_to_sft.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/crafter_rl_lora.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/judges/crafter_backend_judge.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/judges/verilog_backend_judge.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/readme.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/run_sft_qwen30b.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/sse_metrics_streaming_notes.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/task_app_config_notes.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/multi_step/verilog_rl_lora.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/_shared.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/configs/coder_lora_30b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/configs/coder_lora_4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/configs/coder_lora_small.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/generate_dataset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/infer_ft_smoke.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/infer_prod_proxy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/infer_via_synth.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/scripts/infer_coder.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/scripts/train_coder_30b.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/sft_full_17b.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/sft_lora_30b.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/subset_jsonl.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/todos.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_coder/validate_jsonl.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/BUGS_AND_FIXES.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/IMAGE_VALIDATION_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/IMAGE_VALIDATION_SUMMARY.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/INFERENCE_SFT_TESTS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/NEXT_STEPS_2B.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/QUICKSTART.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/QUICKSTART_RL_VISION.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/RL_VISION_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/RL_VISION_TESTING.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/SDK_VISION_INTEGRATION.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/SETUP_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/VISION_TESTS_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/VLM_PIPELINE_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/collect_data_via_cli.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/collect_vision_traces.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/crafter_rl_vision_qwen3vl4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/crafter_vlm_sft_example.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/eval_gpt4o_mini_vision.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/eval_gpt4o_vision_proper.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/eval_gpt5nano_vision.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/eval_qwen3vl_vision.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/filter_qwen3vl_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/filter_vision_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/filter_vision_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/configs/sft_qwen3_vl_2b_test.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/crafter_gpt5nano_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/crafter_qwen_vl_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/run_vision_comparison.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/run_vision_sft_pipeline.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/test_image_validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/qwen_vl/test_sft_vision_data.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/configs/rl_from_base_qwen17.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/download_dataset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/run_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/task_app/math_single_step.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/rl/task_app/math_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/run_crafter_demo.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sdk_prompt_learning_example.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sft/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sft/configs/crafter_fft_qwen0p6b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sft/configs/crafter_lora_qwen0p6b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sft/evaluate.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sft/export_dataset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/sft/generate_traces.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/grpo_swe_mini.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/grpo_swe_mini_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/branching.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/environment_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/mini_swe/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/mini_swe/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/mini_swe/policy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/mini_swe/shared.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/envs/mini_swe/tools.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/hosted_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/main.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/policy_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/storage/volume.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/test_agents.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/test_service.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/hosted/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/swe/task_app/morph_backend.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/IMAGE_ONLY_EVAL_QUICKSTART.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/TESTING.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/banking77/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/banking77/banking77_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/banking77/deploy_wrapper.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/banking77_pipeline/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/banking77_pipeline/banking77_pipeline_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/banking77_pipeline/deploy_wrapper.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/CREATE_SFT_DATASET.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/EVAL_IMAGE_ONLY_RESULTS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/FILTER_COMMAND_STATUS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/QUERY_EXAMPLES.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/README_IMAGE_ONLY_EVAL.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/eval_image_only_gpt4o.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/eval_text_only_groq_llama.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/filter_sft_dataset.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/grpo_crafter.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/action.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/memory.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/perception.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/planning.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/simple.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/agent/system_prompt.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/grab_map.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/manual.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emerald_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/emulator.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/enums.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/memory_reader.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/types.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pokemon_env/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/pyproject.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/run.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/server/frame_server.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/run_tests.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_direct.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_agent_prompts.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_battle_state_formatting.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_dialogue_detection_comprehensive.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_direct_agent_emulator.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_fps_adjustment_pytest.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_direct.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_house_to_outside_transition.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_map_ground_truth_comparison.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_memory_map.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_server_map_validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/tests/test_torchic_state.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/anticheat.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/checkpoint.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/error_handler.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/get_local_ip.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/helpers.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/llm_logger.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_formatter.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_stitcher_singleton.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_trimmer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/map_visualizer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/ocr_dialogue.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/recording.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/state_formatter.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/external/pokeagent-speedrun/utils/vlm.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/modal_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/task_app/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/dev/pokemon_emerald/task_app/pokemon_emerald.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/eval_groq_qwen32.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/filter_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/task_app/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/task_app/grpo_enron.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/task_app/grpo_enron_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/conftest.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/integration/test_enron_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/integration/test_enron_rollout.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/enron/tests/unit/test_enron_environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/gepa_benchmarks/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/gepa_benchmarks/common.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/gepa_benchmarks/hotpotqa_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/gepa_benchmarks/hover_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/gepa_benchmarks/ifbench_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/gepa_benchmarks/pupa_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/math/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/math/math_single_step.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/math/math_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_battle/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_battle/modal_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_battle/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_battle/task_app/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_COMPLETE.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_STATUS.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/eval_image_only_gpt4o.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/eval_pokemon_red_policy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/pallet_town_rl_config.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/pokemon_red/test_pallet_town_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/eval_groq_qwen32.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/eval_openai_gpt5.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/filter_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/conftest.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/integration/test_sokoban_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/integration/test_sokoban_rollout.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/sokoban/tests/unit/test_sokoban_environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/filter_sft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/task_app/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/task_app/grpo_verilog.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/task_app/grpo_verilog_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/conftest.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/integration/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/integration/test_verilog_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/integration/test_verilog_rollout.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/unit/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/task_apps/verilog/tests/unit/test_verilog_scoring.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/tunnel_gepa_banking77/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/tunnel_gepa_banking77/banking77_gepa_tunnel.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/tunnel_gepa_banking77/keep_tunnel_running.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/tunnel_gepa_banking77/run_gepa_with_tunnel.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/PROPOSAL.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/configs/crafter_vlm_gpt4o.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/crafter_image_only_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/crafter_openai_vlm_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/filter_image_rows.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/vlm/run_crafter_vlm_benchmark.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/analyze_trace_db.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/crafter_fft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_fft_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_groq_qwen32b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_modal_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_stepwise_complex.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/eval_stepwise_simple.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/configs/rl_from_ft.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/export_trace_sft.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/groq_test.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/manage_secrets.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/old/event_rewards.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/old/notes.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/readme.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_fft_and_save.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_local_rollout.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_local_rollout_modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_local_rollout_parallel.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_local_rollout_traced.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/run_rollout_remote.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/grpo_crafter.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/policy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/configs/eval_base_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/configs/eval_rl_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/configs/rl_from_base_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/configs/rl_from_base_qwen17.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/configs/rl_from_ft_qwen.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/download_dataset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/run_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/examples/workflows/math_rl/run_rl_and_save.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/setup.cfg +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/__main__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/_utils/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/_utils/base_url.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/_utils/http.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/_utils/prompts.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/_utils/task_app_state.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/_utils/user_config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/models/supported.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/config_finder.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/configs/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/configs/prompt_learning.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/configs/rl.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/configs/sft.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/configs/shared.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/env_resolver.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/pollers.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/prompt_learning.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/sft.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/supported_algos.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/train/validators.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/api/tunnel.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/auth/credentials.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/baseline/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/baseline/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/baseline/discovery.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/baseline/execution.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/__main__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/_modal_wrapper.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/_storage.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/_typer_patch.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/_validate_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/balance.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/calc.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/claude.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/codex.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/baseline/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/baseline/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/baseline/list.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/demo/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/demo/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/eval/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/eval/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/eval/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/eval/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/filter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/filter/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/filter/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/filter/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/help/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/help/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/smoke/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/formatters.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/files.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/jobs.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/models.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/pricing.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/runs.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/session.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/summary.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/subcommands/usage.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/status/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/train/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/train/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/train/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/train/judge_schemas.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/train/judge_validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/commands/train/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/demo.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/eval/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/eval/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/eval/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/eval/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/filter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/filter/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/filter/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/filter/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/legacy_root_backup.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/lib/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/lib/task_app_discovery.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/lib/task_app_env.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/mcp.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/modal_serve/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/modal_serve/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/modal_serve/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/modal_serve/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/opencode.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/recent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/rl_demo.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/serve/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/serve/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/serve/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/serve/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/setup.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/status.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/task_app_deploy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/task_app_list.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/task_app_modal_serve.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/task_app_serve.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/task_apps.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/traces.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/train/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/train/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/train/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/train/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/train.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/turso.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/cli/watch.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/config/base_url.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/core/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/core/cli.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/crafter/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/crafter/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/crafter/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/crafter/configs/crafter_fft_4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/crafter/grpo_crafter_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/_common.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/config.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/deploy_modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/deploy_task_app.sh +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/modal_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/demo_task_apps/math/task_app_entry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/_common.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/config.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/deploy_modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/modal_task_app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/demos/math/task_app_entry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/artifacts/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/artifacts/base.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/db/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/db/sqlite.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/resources/sqlite.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/results.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/rewards/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/rewards/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/shared_engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/environment/tools/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/bandit/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/bandit/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/bandit/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/bandit/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_config.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_framework.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/crafter_synth_config.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_config_modal.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_action_results.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_agent_actions.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_latest_run.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_lm_traces.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_no_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/analyze_trace_issue.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_db_schema.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/check_latest_results.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/debug_agent_responses.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_modal_ft/old/quick_trace_check.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/compare_experiments.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/filter_traces_sft_turso.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/kick_off_ft_oai.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/multi_model_config.toml +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_enhanced_hooks.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_events.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/analyze_hook_results.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_hook_storage.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/check_seeds.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/compare_seed_performance.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/custom_eval_pipelines.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/plot_hook_frequency.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_openai_ft/old/seed_analysis_summary.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/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.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_react_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/example_v3_usage.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/compare_traces.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_comprehensive_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_env_serialization.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_evaluation_browser.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_quick_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/crafter_trace_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/debug_player_loss.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_service.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/diagnose_slowness.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_by_difficulty.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/eval_example.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/explore_saved_states.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/filter_traces_sft_OLD.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_gemini.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_data_modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/generate_ft_metadata.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_gemini.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/kick_off_ft_modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/prepare_vertex_ft.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/profile_env_slowness.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/replicate_issue.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_and_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_comparison.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/run_qwen_rollouts.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/trace_eval_OLD.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/agent_demos/old/validate_openai_format.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/config_logging.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/debug_translation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/engine_helpers/action_map.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/engine_helpers/serialization.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/agent_demos/trace_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/constants.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/env.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/objects.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/recorder.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/crafter/worldgen.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/dataset_builder.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_issue.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/old/analyze_diamond_spawning.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/old/compare_worlds.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/old/dataset_stats.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/old/diamond_spawning_summary.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/old/example_dataset_usage.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/crafter_custom/run_dataset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/art_helpers/email_search_tools.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/art_helpers/local_email_db.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/art_helpers/types_enron.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/enron/units/keyword_stats.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_evaluation_framework.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_quick_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_react_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/agent_demos/minigrid_trace_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/environment_mapping.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/puzzle_loader.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/minigrid/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/achievements.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/agent_demos/nethack_evaluation_framework.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/agent_demos/nethack_quick_evaluation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/agent_demos/nethack_react_agent.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/action_mapping.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/nle_wrapper.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/observation_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/recording_wrapper.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/trajectory_recorder.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/visualization/replay_viewer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/helpers/visualization/visualizer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/nethack/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/agent_demos/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/config_logging.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/memory_map.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_components.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/adaptive_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/battle_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/composite_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/economy_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/efficiency_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/exploration_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/novelty_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_progression.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/pallet_town_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/pokemon_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/social_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/reward_library/story_rewards.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/screen_analysis.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/engine_helpers/state_extraction.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/trace_hooks_v3.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/red/units/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/agent_demos/sokoban_full_eval.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/room_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/boxoban_env.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/render_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/room_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_fixed_targets.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_pull.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_two_player.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/engine_helpers/vendored/envs/sokoban_env_variations.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/generate_verified_puzzles.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/puzzle_loader.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/sokoban/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/tictactoe/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/tictactoe/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/tictactoe/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/tictactoe/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/verilog/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/verilog/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/verilog/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/verilog/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/wordle/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/wordle/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/wordle/environment.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/wordle/helpers/generate_instances_wordfreq.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/examples/wordle/taskset.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/reproducibility/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/reproducibility/helpers.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/reproducibility/tree.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/service/app.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/service/core_routes.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/service/external_registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/service/registry.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/stateful/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/stateful/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/stateful/engine.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/stateful/state.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/tasks/api.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/tasks/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/tasks/filters.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/tasks/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/v0_observability/history.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/environments/v0_observability/log.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/evals/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/evals/base.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/evals/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/evals/types.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/http.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/http_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/inference/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/inference/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/jobs/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/judge_schemas.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/algorithms.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/constants.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/core.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/ft_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/gateway.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/health.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/jobs.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/prompt_learning_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/prompt_learning_types.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl/contracts.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl/env_keys.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl/secrets.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/rl_client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/sft/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/sft/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/sft/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/sft/data.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/sse.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/learning/validators.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/mcp/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/mcp/__main__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/mcp/setup.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/pricing/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/pricing/model_pricing.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/py.typed +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/constants.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/exceptions.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/manager.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/models.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/session/query.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/spec/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/spec/dataclasses.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/spec/loader.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/spec/serializer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/spec/validation.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/streaming/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/streaming/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/streaming/handlers.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/streaming/streamer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/streaming/types.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/apps/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/auth.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/client.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/contracts.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/datasets.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/errors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/health.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/inference_api.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/json.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/proxy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/rubrics/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/rubrics/loaders.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/rubrics/models.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/rubrics/scoring.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/rubrics/strict.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/rubrics.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/server.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/trace_correlation_helpers.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/tracing_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/validators.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/task/vendors.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/abstractions.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/constants.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/db_config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/decorators.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/examples/basic_usage.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/hooks.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/lm_call_record_abstractions.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/migration_helper.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/replica_sync.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/serialization.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/session_tracer.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/base.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/exceptions.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/factory.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/types.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/storage/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/trace_utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/turso/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/turso/daemon.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/turso/models.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/turso/native_manager.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tracing_v3/utils.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tunnel.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/tunnel_deploy.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/types.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/urls.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/agents.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/apps.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/base_url.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/bin.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/claude.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/cli.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/http.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/json.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/log_filter.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/modal.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/process.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/prompts.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/sqld.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/task_app_discovery.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/task_app_env.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/task_app_state.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/tunnel/__init__.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/tunnel/config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai/utils/user_config.py +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai.egg-info/dependency_links.txt +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/synth_ai.egg-info/entry_points.txt +0 -0
- {synth_ai-0.2.23.dev2 → synth_ai-0.2.23.dev3}/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.23.
|
|
3
|
+
Version: 0.2.23.dev3
|
|
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
|
|
@@ -13,11 +13,7 @@ License-File: LICENSE
|
|
|
13
13
|
Requires-Dist: pydantic>=2.0.0
|
|
14
14
|
Requires-Dist: python-dotenv>=1.0.1
|
|
15
15
|
Requires-Dist: requests>=2.32.3
|
|
16
|
-
Requires-Dist: urllib3>=2.3.0
|
|
17
|
-
Requires-Dist: certifi>=2024.8.30
|
|
18
16
|
Requires-Dist: tqdm>=4.66.4
|
|
19
|
-
Requires-Dist: jsonschema>=4.23.0
|
|
20
|
-
Requires-Dist: backoff>=2.0.0
|
|
21
17
|
Requires-Dist: typing_extensions>=4.0.0
|
|
22
18
|
Requires-Dist: rich>=13.9.0
|
|
23
19
|
Requires-Dist: openai>=1.99.0
|
|
@@ -25,7 +21,6 @@ Requires-Dist: anthropic>=0.42.0
|
|
|
25
21
|
Requires-Dist: langfuse<3.0.0,>=2.53.9
|
|
26
22
|
Requires-Dist: opentelemetry-api>=1.26.0
|
|
27
23
|
Requires-Dist: opentelemetry-sdk>=1.26.0
|
|
28
|
-
Requires-Dist: diskcache>=5.6.3
|
|
29
24
|
Requires-Dist: groq>=0.30.0
|
|
30
25
|
Requires-Dist: google-genai>=1.26.0
|
|
31
26
|
Requires-Dist: together>=1.5.21
|
|
@@ -34,30 +29,16 @@ Requires-Dist: fastapi>=0.115.12
|
|
|
34
29
|
Requires-Dist: uvicorn>=0.34.2
|
|
35
30
|
Requires-Dist: numpy>=2.2.3
|
|
36
31
|
Requires-Dist: networkx>=3.4.2
|
|
37
|
-
Requires-Dist: redis>=6.2.0
|
|
38
|
-
Requires-Dist: duckdb>=1.0.0
|
|
39
|
-
Requires-Dist: ty>=0.0.1a5
|
|
40
|
-
Requires-Dist: toml>=0.10.2
|
|
41
32
|
Requires-Dist: sqlalchemy>=2.0.42
|
|
42
33
|
Requires-Dist: aiosqlite>=0.21.0
|
|
43
|
-
Requires-Dist: greenlet>=3.2.3
|
|
44
34
|
Requires-Dist: libsql>=0.1.8
|
|
45
35
|
Requires-Dist: pynacl>=1.5.0
|
|
46
|
-
Requires-Dist: google-api-core>=2.25.1
|
|
47
|
-
Requires-Dist: google-generativeai>=0.8.5
|
|
48
|
-
Requires-Dist: crafter>=1.8.3
|
|
49
36
|
Requires-Dist: click<8.2,>=8.1.7
|
|
50
|
-
Requires-Dist: openai-harmony>=0.0.1
|
|
51
|
-
Requires-Dist: asyncpg>=0.30.0
|
|
52
37
|
Requires-Dist: aiohttp>=3.8.0
|
|
53
38
|
Requires-Dist: httpx>=0.28.1
|
|
54
|
-
Requires-Dist: datasets>=4.0.0
|
|
55
|
-
Requires-Dist: transformers>=4.56.1
|
|
56
39
|
Requires-Dist: modal<2.0.0,>=1.1.4
|
|
57
|
-
Requires-Dist: pyboy>=2.6.0
|
|
58
|
-
Requires-Dist: setuptools>=80.9.0
|
|
59
|
-
Requires-Dist: libsql-experimental>=0.0.55
|
|
60
40
|
Requires-Dist: mcp>=1.21.0
|
|
41
|
+
Requires-Dist: ruff>=0.12.9
|
|
61
42
|
Provides-Extra: dev
|
|
62
43
|
Requires-Dist: build>=1.2.2.post1; extra == "dev"
|
|
63
44
|
Requires-Dist: twine>=4.0.0; extra == "dev"
|
|
@@ -81,6 +62,9 @@ Requires-Dist: crafter>=1.8.3; extra == "all"
|
|
|
81
62
|
Requires-Dist: datasets>=4.0.0; extra == "all"
|
|
82
63
|
Requires-Dist: morphcloud>=0.1.3; extra == "all"
|
|
83
64
|
Requires-Dist: swebench>=2.3.0; extra == "all"
|
|
65
|
+
Requires-Dist: pyboy>=2.6.0; extra == "all"
|
|
66
|
+
Requires-Dist: transformers>=4.56.1; extra == "all"
|
|
67
|
+
Requires-Dist: redis>=6.2.0; extra == "all"
|
|
84
68
|
Provides-Extra: analytics
|
|
85
69
|
Requires-Dist: pandas>=2.2.3; extra == "analytics"
|
|
86
70
|
Dynamic: license-file
|
|
@@ -89,7 +73,7 @@ Dynamic: license-file
|
|
|
89
73
|
|
|
90
74
|
[](https://www.python.org/)
|
|
91
75
|
[](LICENSE)
|
|
92
|
-
[](https://pypi.org/project/synth-ai/)
|
|
93
77
|

|
|
94
78
|

|
|
95
79
|

|
|
@@ -99,7 +83,7 @@ Dynamic: license-file
|
|
|
99
83
|
|
|
100
84
|
---
|
|
101
85
|
|
|
102
|
-
## 🚀 Install version 0.2.
|
|
86
|
+
## 🚀 Install latest version (0.2.23.dev2)
|
|
103
87
|
|
|
104
88
|
```bash
|
|
105
89
|
pip install synth-ai
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.python.org/)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-
[](https://pypi.org/project/synth-ai/)
|
|
6
6
|

|
|
7
7
|

|
|
8
8
|

|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
-
## 🚀 Install version 0.2.
|
|
15
|
+
## 🚀 Install latest version (0.2.23.dev2)
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
18
|
pip install synth-ai
|
|
@@ -10,7 +10,7 @@ from typing import Any
|
|
|
10
10
|
|
|
11
11
|
from fastapi import APIRouter, HTTPException, Request, status
|
|
12
12
|
from pydantic import BaseModel
|
|
13
|
-
from synth_ai.
|
|
13
|
+
from synth_ai.tracing_v3 import BaseLMResponse
|
|
14
14
|
from synth_ai.task.tracing_utils import unique_sft_path
|
|
15
15
|
from synth_ai.task.contracts import RolloutMode
|
|
16
16
|
from synth_ai.tracing_v3.abstractions import EnvironmentEvent, LMCAISEvent, TimeRecord
|
|
@@ -10,7 +10,7 @@ from typing import Any, Mapping
|
|
|
10
10
|
|
|
11
11
|
from fastapi import APIRouter, HTTPException, Request, status
|
|
12
12
|
from pydantic import BaseModel, Field
|
|
13
|
-
from synth_ai.
|
|
13
|
+
from synth_ai.tracing_v3 import BaseLMResponse
|
|
14
14
|
from synth_ai.task.tracing_utils import unique_sft_path
|
|
15
15
|
from synth_ai.tracing_v3.abstractions import EnvironmentEvent, LMCAISEvent, TimeRecord
|
|
16
16
|
from synth_ai.task.contracts import RolloutMode
|
|
@@ -10,7 +10,7 @@ from typing import Any
|
|
|
10
10
|
|
|
11
11
|
from fastapi import APIRouter, HTTPException, Request, status
|
|
12
12
|
from pydantic import BaseModel
|
|
13
|
-
from synth_ai.
|
|
13
|
+
from synth_ai.tracing_v3 import BaseLMResponse
|
|
14
14
|
from synth_ai.task.tracing_utils import unique_sft_path
|
|
15
15
|
from synth_ai.tracing_v3.abstractions import EnvironmentEvent, LMCAISEvent, TimeRecord
|
|
16
16
|
from synth_ai.tracing_v3.llm_call_record_helpers import create_llm_call_record_from_response
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "synth-ai"
|
|
3
|
-
version = "0.2.23.
|
|
3
|
+
version = "0.2.23.dev3"
|
|
4
4
|
description = "RL as a service SDK - Core AI functionality and tracing"
|
|
5
5
|
authors = [{name = "Synth AI", email = "josh@usesynth.ai"}]
|
|
6
6
|
license = "MIT"
|
|
@@ -11,11 +11,7 @@ dependencies = [
|
|
|
11
11
|
"pydantic>=2.0.0",
|
|
12
12
|
"python-dotenv>=1.0.1",
|
|
13
13
|
"requests>=2.32.3",
|
|
14
|
-
"urllib3>=2.3.0",
|
|
15
|
-
"certifi>=2024.8.30",
|
|
16
14
|
"tqdm>=4.66.4",
|
|
17
|
-
"jsonschema>=4.23.0",
|
|
18
|
-
"backoff>=2.0.0",
|
|
19
15
|
"typing_extensions>=4.0.0",
|
|
20
16
|
# AI/LLM providers
|
|
21
17
|
"rich>=13.9.0",
|
|
@@ -26,7 +22,6 @@ dependencies = [
|
|
|
26
22
|
"opentelemetry-api>=1.26.0",
|
|
27
23
|
"opentelemetry-sdk>=1.26.0",
|
|
28
24
|
# Storage and caching
|
|
29
|
-
"diskcache>=5.6.3",
|
|
30
25
|
"groq>=0.30.0",
|
|
31
26
|
"google-genai>=1.26.0",
|
|
32
27
|
"together>=1.5.21",
|
|
@@ -36,30 +31,16 @@ dependencies = [
|
|
|
36
31
|
"uvicorn>=0.34.2",
|
|
37
32
|
"numpy>=2.2.3",
|
|
38
33
|
"networkx>=3.4.2",
|
|
39
|
-
"redis>=6.2.0",
|
|
40
|
-
"duckdb>=1.0.0",
|
|
41
|
-
"ty>=0.0.1a5", # Type annotations helper
|
|
42
|
-
"toml>=0.10.2",
|
|
43
34
|
"sqlalchemy>=2.0.42",
|
|
44
35
|
"aiosqlite>=0.21.0",
|
|
45
|
-
"greenlet>=3.2.3",
|
|
46
36
|
"libsql>=0.1.8",
|
|
47
37
|
"pynacl>=1.5.0",
|
|
48
|
-
"google-api-core>=2.25.1",
|
|
49
|
-
"google-generativeai>=0.8.5",
|
|
50
|
-
"crafter>=1.8.3",
|
|
51
38
|
"click>=8.1.7,<8.2", # For CLI (pin to signature compatible with Typer)
|
|
52
|
-
"
|
|
53
|
-
"asyncpg>=0.30.0",
|
|
54
|
-
"aiohttp>=3.8.0", # For async HTTP requests in Harmony integration
|
|
39
|
+
"aiohttp>=3.8.0", # For async HTTP requests
|
|
55
40
|
"httpx>=0.28.1", # CLI preflights and HTTP clients (pulls httpcore)
|
|
56
|
-
"datasets>=4.0.0",
|
|
57
|
-
"transformers>=4.56.1",
|
|
58
41
|
"modal>=1.1.4,<2.0.0",
|
|
59
|
-
"pyboy>=2.6.0",
|
|
60
|
-
"setuptools>=80.9.0",
|
|
61
|
-
"libsql-experimental>=0.0.55",
|
|
62
42
|
"mcp>=1.21.0",
|
|
43
|
+
"ruff>=0.12.9",
|
|
63
44
|
]
|
|
64
45
|
|
|
65
46
|
[project.scripts]
|
|
@@ -94,6 +75,9 @@ all = [
|
|
|
94
75
|
"datasets>=4.0.0",
|
|
95
76
|
"morphcloud>=0.1.3",
|
|
96
77
|
"swebench>=2.3.0",
|
|
78
|
+
"pyboy>=2.6.0",
|
|
79
|
+
"transformers>=4.56.1",
|
|
80
|
+
"redis>=6.2.0",
|
|
97
81
|
]
|
|
98
82
|
analytics = [
|
|
99
83
|
"pandas>=2.2.3",
|
|
@@ -162,7 +146,7 @@ addopts = "--durations=10"
|
|
|
162
146
|
|
|
163
147
|
[tool.coverage.run]
|
|
164
148
|
source = ["synth_ai"]
|
|
165
|
-
omit = ["*/tests/*", "*/test_*"
|
|
149
|
+
omit = ["*/tests/*", "*/test_*"]
|
|
166
150
|
data_file = "coverage/.coverage"
|
|
167
151
|
|
|
168
152
|
[tool.coverage.report]
|
|
@@ -172,7 +156,7 @@ skip_covered = false
|
|
|
172
156
|
|
|
173
157
|
[tool.pyright]
|
|
174
158
|
include = ["synth_ai", "tests"]
|
|
175
|
-
exclude = ["**/__pycache__"
|
|
159
|
+
exclude = ["**/__pycache__"]
|
|
176
160
|
pythonVersion = "3.11"
|
|
177
161
|
typeCheckingMode = "standard"
|
|
178
162
|
reportMissingImports = true
|
|
@@ -197,7 +181,6 @@ extend-exclude = [
|
|
|
197
181
|
"traces",
|
|
198
182
|
"traces_*",
|
|
199
183
|
"synth_ai.db",
|
|
200
|
-
"synth_ai/v0",
|
|
201
184
|
"synth_ai/tracing_v3/tests",
|
|
202
185
|
]
|
|
203
186
|
|
|
@@ -42,51 +42,12 @@ except PackageNotFoundError: # Fallback to pyproject version for editable insta
|
|
|
42
42
|
except Exception:
|
|
43
43
|
__version__ = "0.0.0.dev0"
|
|
44
44
|
|
|
45
|
-
def _optional_import(module_path: str) -> Any | None:
|
|
46
|
-
try:
|
|
47
|
-
return importlib.import_module(module_path)
|
|
48
|
-
except Exception:
|
|
49
|
-
return None
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
_lm_module = _optional_import("synth_ai.lm.core.main")
|
|
53
|
-
LM = cast(Any, _lm_module).LM if _lm_module and hasattr(_lm_module, "LM") else None # type: ignore[attr-defined]
|
|
54
|
-
|
|
55
|
-
_anthropic_module = _optional_import("synth_ai.lm.provider_support.anthropic")
|
|
56
|
-
Anthropic = (
|
|
57
|
-
cast(Any, _anthropic_module).Anthropic
|
|
58
|
-
if _anthropic_module and hasattr(_anthropic_module, "Anthropic")
|
|
59
|
-
else None
|
|
60
|
-
) # type: ignore[attr-defined]
|
|
61
|
-
AsyncAnthropic = (
|
|
62
|
-
cast(Any, _anthropic_module).AsyncAnthropic
|
|
63
|
-
if _anthropic_module and hasattr(_anthropic_module, "AsyncAnthropic")
|
|
64
|
-
else None
|
|
65
|
-
) # type: ignore[attr-defined]
|
|
66
|
-
|
|
67
|
-
_openai_module = _optional_import("synth_ai.lm.provider_support.openai")
|
|
68
|
-
AsyncOpenAI = (
|
|
69
|
-
cast(Any, _openai_module).AsyncOpenAI
|
|
70
|
-
if _openai_module and hasattr(_openai_module, "AsyncOpenAI")
|
|
71
|
-
else None
|
|
72
|
-
) # type: ignore[attr-defined]
|
|
73
|
-
OpenAI = (
|
|
74
|
-
cast(Any, _openai_module).OpenAI
|
|
75
|
-
if _openai_module and hasattr(_openai_module, "OpenAI")
|
|
76
|
-
else None
|
|
77
|
-
) # type: ignore[attr-defined]
|
|
78
|
-
|
|
79
45
|
# Legacy tracing v1 is not required for v3 usage and can be unavailable in minimal envs.
|
|
80
46
|
tracing = None # type: ignore
|
|
81
47
|
EventPartitionElement = RewardSignal = SystemTrace = TrainingQuestion = None # type: ignore
|
|
82
48
|
trace_event_async = trace_event_sync = upload = None # type: ignore
|
|
83
49
|
|
|
84
50
|
__all__ = [
|
|
85
|
-
"LM",
|
|
86
|
-
"OpenAI",
|
|
87
|
-
"AsyncOpenAI",
|
|
88
|
-
"Anthropic",
|
|
89
|
-
"AsyncAnthropic",
|
|
90
51
|
"environments",
|
|
91
52
|
# Judge API contracts
|
|
92
53
|
"JudgeScoreRequest",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
3
|
import importlib
|
|
4
|
+
import os
|
|
4
5
|
from collections.abc import Callable
|
|
5
6
|
from dataclasses import dataclass
|
|
6
7
|
from pathlib import Path
|
|
@@ -33,6 +34,8 @@ try:
|
|
|
33
34
|
except Exception as exc: # pragma: no cover - critical dependency
|
|
34
35
|
raise RuntimeError("Unable to load SFT payload helpers") from exc
|
|
35
36
|
|
|
37
|
+
from synth_ai.utils.config import ConfigResolver
|
|
38
|
+
|
|
36
39
|
from .configs import PromptLearningConfig, RLConfig, SFTConfig
|
|
37
40
|
from .supported_algos import (
|
|
38
41
|
AlgorithmValidationError,
|
|
@@ -116,16 +119,17 @@ def build_rl_payload(
|
|
|
116
119
|
services = data.get("services") if isinstance(data.get("services"), dict) else {}
|
|
117
120
|
model_cfg = rl_cfg.model
|
|
118
121
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
122
|
+
cli_task_url = overrides.get("task_url")
|
|
123
|
+
env_task_url = task_url or os.environ.get("TASK_APP_URL")
|
|
124
|
+
config_task_url = services.get("task_url") if isinstance(services, dict) else None
|
|
125
|
+
final_task_url = ConfigResolver.resolve(
|
|
126
|
+
"task_app_url",
|
|
127
|
+
cli_value=cli_task_url,
|
|
128
|
+
env_value=env_task_url,
|
|
129
|
+
config_value=config_task_url,
|
|
130
|
+
required=True,
|
|
131
|
+
)
|
|
132
|
+
assert final_task_url is not None # required=True guarantees non-None
|
|
129
133
|
|
|
130
134
|
model_source = (model_cfg.source or "").strip() if model_cfg else ""
|
|
131
135
|
model_base = (model_cfg.base or "").strip() if model_cfg else ""
|
|
@@ -368,8 +372,6 @@ def build_prompt_learning_payload(
|
|
|
368
372
|
allow_experimental: bool | None = None,
|
|
369
373
|
) -> PromptLearningBuildResult:
|
|
370
374
|
"""Build payload for prompt learning job (MIPRO or GEPA)."""
|
|
371
|
-
import os
|
|
372
|
-
|
|
373
375
|
from pydantic import ValidationError
|
|
374
376
|
|
|
375
377
|
from .configs.prompt_learning import load_toml
|
|
@@ -385,24 +387,29 @@ def build_prompt_learning_payload(
|
|
|
385
387
|
except ValidationError as exc:
|
|
386
388
|
raise click.ClickException(_format_validation_error(config_path, exc)) from exc
|
|
387
389
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
390
|
+
cli_task_url = overrides.get("task_url") or task_url
|
|
391
|
+
env_task_url = os.environ.get("TASK_APP_URL")
|
|
392
|
+
config_task_url = (pl_cfg.task_app_url or "").strip() or None
|
|
393
|
+
final_task_url = ConfigResolver.resolve(
|
|
394
|
+
"task_app_url",
|
|
395
|
+
cli_value=cli_task_url,
|
|
396
|
+
env_value=env_task_url,
|
|
397
|
+
config_value=config_task_url,
|
|
398
|
+
required=True,
|
|
399
|
+
)
|
|
400
|
+
assert final_task_url is not None # required=True guarantees non-None
|
|
395
401
|
|
|
396
402
|
# Get task_app_api_key from config or environment
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
403
|
+
config_api_key = (pl_cfg.task_app_api_key or "").strip() or None
|
|
404
|
+
cli_api_key = overrides.get("task_app_api_key")
|
|
405
|
+
env_api_key = os.environ.get("ENVIRONMENT_API_KEY")
|
|
406
|
+
task_app_api_key = ConfigResolver.resolve(
|
|
407
|
+
"task_app_api_key",
|
|
408
|
+
cli_value=cli_api_key,
|
|
409
|
+
env_value=env_api_key,
|
|
410
|
+
config_value=config_api_key,
|
|
411
|
+
required=True,
|
|
412
|
+
)
|
|
406
413
|
|
|
407
414
|
# Build config dict for backend
|
|
408
415
|
config_dict = pl_cfg.to_dict()
|
|
@@ -5,10 +5,9 @@ import contextlib
|
|
|
5
5
|
import importlib
|
|
6
6
|
import json
|
|
7
7
|
import os
|
|
8
|
-
import time
|
|
9
8
|
from collections.abc import Callable, Mapping
|
|
10
9
|
from pathlib import Path
|
|
11
|
-
from typing import Any, cast
|
|
10
|
+
from typing import Any, NoReturn, cast
|
|
12
11
|
|
|
13
12
|
import click
|
|
14
13
|
|
|
@@ -28,13 +27,14 @@ from synth_ai.streaming import (
|
|
|
28
27
|
StreamEndpoints,
|
|
29
28
|
StreamType,
|
|
30
29
|
)
|
|
30
|
+
from synth_ai.utils.env import load_env_file
|
|
31
|
+
from synth_ai.utils.errors import format_error_message, get_required_value
|
|
31
32
|
|
|
32
33
|
from .builders import build_prompt_learning_payload, build_rl_payload, build_sft_payload
|
|
33
34
|
from .config_finder import discover_configs, prompt_for_config
|
|
34
35
|
from .env_resolver import KeySpec, resolve_env
|
|
35
36
|
from .task_app import check_task_app_health
|
|
36
37
|
from .utils import (
|
|
37
|
-
REPO_ROOT,
|
|
38
38
|
TrainError,
|
|
39
39
|
ensure_api_base,
|
|
40
40
|
http_get,
|
|
@@ -88,93 +88,6 @@ def _format_text_replacements(obj: dict[str, Any] | None, max_display: int = _MA
|
|
|
88
88
|
return lines
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
def _discover_dataset_candidates(
|
|
92
|
-
config_path: Path, limit: int = 50, timeout: float = 10.0
|
|
93
|
-
) -> list[Path]:
|
|
94
|
-
root = config_path.parent
|
|
95
|
-
parent = root.parent
|
|
96
|
-
cwd = Path.cwd()
|
|
97
|
-
|
|
98
|
-
search_dirs: list[Path] = [
|
|
99
|
-
root,
|
|
100
|
-
root / "datasets",
|
|
101
|
-
parent,
|
|
102
|
-
parent / "datasets",
|
|
103
|
-
parent / "ft_data",
|
|
104
|
-
cwd,
|
|
105
|
-
cwd / "datasets",
|
|
106
|
-
cwd / "ft_data",
|
|
107
|
-
REPO_ROOT / "datasets",
|
|
108
|
-
REPO_ROOT / "ft_data",
|
|
109
|
-
REPO_ROOT / "traces",
|
|
110
|
-
]
|
|
111
|
-
|
|
112
|
-
candidates: list[Path] = []
|
|
113
|
-
seen: set[Path] = set()
|
|
114
|
-
start = time.monotonic()
|
|
115
|
-
timed_out = False
|
|
116
|
-
for directory in search_dirs:
|
|
117
|
-
if timed_out or time.monotonic() - start > timeout:
|
|
118
|
-
timed_out = True
|
|
119
|
-
break
|
|
120
|
-
if not directory.exists() or not directory.is_dir():
|
|
121
|
-
continue
|
|
122
|
-
for path in directory.rglob("*.jsonl"):
|
|
123
|
-
if time.monotonic() - start > timeout:
|
|
124
|
-
timed_out = True
|
|
125
|
-
break
|
|
126
|
-
try:
|
|
127
|
-
resolved = path.resolve()
|
|
128
|
-
except OSError:
|
|
129
|
-
continue
|
|
130
|
-
if resolved in seen:
|
|
131
|
-
continue
|
|
132
|
-
seen.add(resolved)
|
|
133
|
-
if resolved.stat().st_size == 0:
|
|
134
|
-
continue
|
|
135
|
-
candidates.append(resolved)
|
|
136
|
-
if len(candidates) >= limit:
|
|
137
|
-
return candidates
|
|
138
|
-
return candidates
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
def prompt_for_dataset(config_path: Path) -> Path:
|
|
142
|
-
candidates = _discover_dataset_candidates(config_path)
|
|
143
|
-
while True:
|
|
144
|
-
if candidates:
|
|
145
|
-
click.echo("Select dataset JSONL file:")
|
|
146
|
-
for idx, candidate in enumerate(candidates, start=1):
|
|
147
|
-
click.echo(f" {idx}) {candidate}")
|
|
148
|
-
click.echo(" m) Enter path manually")
|
|
149
|
-
click.echo(" 0) Abort")
|
|
150
|
-
choice = click.prompt("Choice", default="m").strip().lower()
|
|
151
|
-
if choice == "0":
|
|
152
|
-
raise click.ClickException("Aborted by user")
|
|
153
|
-
if choice in {"m", "manual"}:
|
|
154
|
-
selected = _prompt_manual_dataset()
|
|
155
|
-
else:
|
|
156
|
-
try:
|
|
157
|
-
idx = int(choice)
|
|
158
|
-
except ValueError:
|
|
159
|
-
click.echo("Invalid selection; try again")
|
|
160
|
-
continue
|
|
161
|
-
if idx < 1 or idx > len(candidates):
|
|
162
|
-
click.echo("Invalid selection; try again")
|
|
163
|
-
continue
|
|
164
|
-
selected = candidates[idx - 1]
|
|
165
|
-
else:
|
|
166
|
-
selected = _prompt_manual_dataset()
|
|
167
|
-
|
|
168
|
-
if selected.exists() and selected.suffix == ".jsonl":
|
|
169
|
-
return selected.resolve()
|
|
170
|
-
click.echo("File not found or not a .jsonl; please try again.")
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
def _prompt_manual_dataset() -> Path:
|
|
174
|
-
manual = click.prompt("Enter dataset JSONL path", type=str).strip()
|
|
175
|
-
return Path(manual).expanduser()
|
|
176
|
-
|
|
177
|
-
|
|
178
91
|
def _default_backend() -> str:
|
|
179
92
|
"""Resolve backend URL with proper production default."""
|
|
180
93
|
# Check explicit override first
|
|
@@ -326,6 +239,7 @@ def train_command(
|
|
|
326
239
|
examples_limit: int | None,
|
|
327
240
|
) -> None:
|
|
328
241
|
"""Interactive launcher for RL / SFT / Prompt Learning jobs."""
|
|
242
|
+
load_env_file()
|
|
329
243
|
|
|
330
244
|
candidates = discover_configs(
|
|
331
245
|
list(config_paths), requested_type=train_type if train_type != "auto" else None
|
|
@@ -338,8 +252,18 @@ def train_command(
|
|
|
338
252
|
|
|
339
253
|
effective_type = train_type if train_type != "auto" else selection.train_type
|
|
340
254
|
if effective_type not in {"rl", "sft", "prompt_learning"}:
|
|
341
|
-
|
|
342
|
-
|
|
255
|
+
raise click.UsageError(
|
|
256
|
+
format_error_message(
|
|
257
|
+
summary="Training type required",
|
|
258
|
+
context="Determining which trainer to invoke",
|
|
259
|
+
problem="Config metadata did not specify rl / sft / prompt_learning and no --type flag was provided",
|
|
260
|
+
impact="CLI cannot select the correct builder without a type",
|
|
261
|
+
solutions=[
|
|
262
|
+
("Pass --type rl|sft|prompt_learning", "Explicitly tell the CLI which workflow to run"),
|
|
263
|
+
("Add algorithm.type metadata to the config", "Include algorithm.type or prompt_learning markers in the TOML"),
|
|
264
|
+
("Use separate config files per training mode", "Keeps intent unambiguous for automation"),
|
|
265
|
+
],
|
|
266
|
+
)
|
|
343
267
|
)
|
|
344
268
|
|
|
345
269
|
cfg_path = selection.path
|
|
@@ -401,9 +325,11 @@ def train_command(
|
|
|
401
325
|
)
|
|
402
326
|
click.echo(f"Using env file: {env_path}")
|
|
403
327
|
|
|
404
|
-
synth_key =
|
|
405
|
-
|
|
406
|
-
|
|
328
|
+
synth_key = get_required_value(
|
|
329
|
+
"synth_api_key",
|
|
330
|
+
env_value=env_values.get("SYNTH_API_KEY") or os.environ.get("SYNTH_API_KEY"),
|
|
331
|
+
)
|
|
332
|
+
os.environ["SYNTH_API_KEY"] = synth_key
|
|
407
333
|
|
|
408
334
|
backend_base = ensure_api_base(backend)
|
|
409
335
|
click.echo(f"Backend base: {backend_base} (key {mask_value(synth_key)})")
|
|
@@ -605,9 +531,11 @@ def handle_rl(
|
|
|
605
531
|
# Parsing verification summary failed, but verification itself succeeded
|
|
606
532
|
click.echo("Verification OK")
|
|
607
533
|
|
|
608
|
-
env_key =
|
|
609
|
-
|
|
610
|
-
|
|
534
|
+
env_key = get_required_value(
|
|
535
|
+
"environment_api_key",
|
|
536
|
+
env_value=os.environ.get("ENVIRONMENT_API_KEY"),
|
|
537
|
+
)
|
|
538
|
+
os.environ["ENVIRONMENT_API_KEY"] = env_key
|
|
611
539
|
|
|
612
540
|
click.echo("Performing task app health check…")
|
|
613
541
|
health = check_task_app_health(build.task_url, env_key)
|
|
@@ -693,19 +621,14 @@ def handle_sft(
|
|
|
693
621
|
stream_format: str,
|
|
694
622
|
examples_limit: int | None,
|
|
695
623
|
) -> None:
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
)
|
|
705
|
-
break
|
|
706
|
-
except TrainError as exc:
|
|
707
|
-
click.echo(str(exc))
|
|
708
|
-
dataset_path = prompt_for_dataset(cfg_path)
|
|
624
|
+
try:
|
|
625
|
+
build = build_sft_payload(
|
|
626
|
+
config_path=cfg_path,
|
|
627
|
+
dataset_override=dataset_override,
|
|
628
|
+
allow_experimental=allow_experimental,
|
|
629
|
+
)
|
|
630
|
+
except TrainError as exc:
|
|
631
|
+
_raise_sft_usage_error(exc)
|
|
709
632
|
|
|
710
633
|
limited_path: Path | None = None
|
|
711
634
|
|
|
@@ -847,6 +770,45 @@ def handle_sft(
|
|
|
847
770
|
limited_path.parent.rmdir()
|
|
848
771
|
|
|
849
772
|
|
|
773
|
+
def _raise_sft_usage_error(exc: TrainError) -> NoReturn:
|
|
774
|
+
message = str(exc).strip()
|
|
775
|
+
lower_msg = message.lower()
|
|
776
|
+
context = "Preparing SFT training job payload"
|
|
777
|
+
impact = "Cannot submit training job without a valid dataset path"
|
|
778
|
+
|
|
779
|
+
if "dataset not specified" in lower_msg:
|
|
780
|
+
raise click.UsageError(
|
|
781
|
+
format_error_message(
|
|
782
|
+
summary="Dataset path required",
|
|
783
|
+
context=context,
|
|
784
|
+
problem="No dataset path was provided via config or CLI",
|
|
785
|
+
impact=impact,
|
|
786
|
+
solutions=[
|
|
787
|
+
("Add [job].data = \"/path/to/data.jsonl\" to the config", "Persist the dataset path in the TOML file"),
|
|
788
|
+
("Re-run with --dataset /path/to/data.jsonl", "Override the dataset path from the CLI"),
|
|
789
|
+
("Use an absolute path accessible from the current working directory", "Relative paths are resolved from the shell cwd"),
|
|
790
|
+
],
|
|
791
|
+
)
|
|
792
|
+
) from exc
|
|
793
|
+
|
|
794
|
+
if "dataset not found" in lower_msg:
|
|
795
|
+
raise click.UsageError(
|
|
796
|
+
format_error_message(
|
|
797
|
+
summary="Dataset path not found",
|
|
798
|
+
context=context,
|
|
799
|
+
problem=message,
|
|
800
|
+
impact=impact,
|
|
801
|
+
solutions=[
|
|
802
|
+
("Verify the dataset path exists on disk", "Double-check spelling and that the file hasn't moved"),
|
|
803
|
+
("Provide an absolute path to the dataset file", "Avoid relying on relative paths that resolve incorrectly"),
|
|
804
|
+
("Sync the dataset to this machine before running the CLI", "Remote paths must be accessible locally"),
|
|
805
|
+
],
|
|
806
|
+
)
|
|
807
|
+
) from exc
|
|
808
|
+
|
|
809
|
+
raise click.ClickException(message) from exc
|
|
810
|
+
|
|
811
|
+
|
|
850
812
|
def _save_prompt_learning_results_locally(
|
|
851
813
|
*,
|
|
852
814
|
backend_base: str,
|
|
@@ -1121,23 +1083,24 @@ def handle_prompt_learning(
|
|
|
1121
1083
|
stream_format: str,
|
|
1122
1084
|
) -> None:
|
|
1123
1085
|
"""Handle prompt learning job creation (MIPRO or GEPA)."""
|
|
1124
|
-
|
|
1086
|
+
env_key = get_required_value(
|
|
1087
|
+
"environment_api_key",
|
|
1088
|
+
env_value=os.environ.get("ENVIRONMENT_API_KEY"),
|
|
1089
|
+
)
|
|
1090
|
+
os.environ["ENVIRONMENT_API_KEY"] = env_key
|
|
1125
1091
|
|
|
1126
1092
|
overrides: dict[str, Any] = {
|
|
1127
1093
|
"backend": backend_base,
|
|
1094
|
+
"task_url": task_url_override,
|
|
1128
1095
|
}
|
|
1129
1096
|
|
|
1130
1097
|
build = build_prompt_learning_payload(
|
|
1131
1098
|
config_path=cfg_path,
|
|
1132
|
-
task_url=
|
|
1099
|
+
task_url=task_url_override,
|
|
1133
1100
|
overrides=overrides,
|
|
1134
1101
|
allow_experimental=allow_experimental,
|
|
1135
1102
|
)
|
|
1136
1103
|
|
|
1137
|
-
env_key = os.environ.get("ENVIRONMENT_API_KEY")
|
|
1138
|
-
if not env_key:
|
|
1139
|
-
raise click.ClickException("ENVIRONMENT_API_KEY required for prompt learning flow")
|
|
1140
|
-
|
|
1141
1104
|
click.echo("Performing task app health check…")
|
|
1142
1105
|
health = check_task_app_health(build.task_url, env_key)
|
|
1143
1106
|
if not health.ok:
|