synth-ai 0.2.17__py3-none-any.whl → 0.2.19__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of synth-ai might be problematic. Click here for more details.
- examples/baseline/banking77_baseline.py +204 -0
- examples/baseline/crafter_baseline.py +407 -0
- examples/baseline/pokemon_red_baseline.py +326 -0
- examples/baseline/simple_baseline.py +56 -0
- examples/baseline/warming_up_to_rl_baseline.py +239 -0
- examples/blog_posts/gepa/README.md +355 -0
- examples/blog_posts/gepa/configs/banking77_gepa_local.toml +95 -0
- examples/blog_posts/gepa/configs/banking77_gepa_test.toml +82 -0
- examples/blog_posts/gepa/configs/banking77_mipro_local.toml +52 -0
- examples/blog_posts/gepa/configs/hotpotqa_gepa_local.toml +59 -0
- examples/blog_posts/gepa/configs/hotpotqa_gepa_qwen.toml +36 -0
- examples/blog_posts/gepa/configs/hotpotqa_mipro_local.toml +53 -0
- examples/blog_posts/gepa/configs/hover_gepa_local.toml +59 -0
- examples/blog_posts/gepa/configs/hover_gepa_qwen.toml +36 -0
- examples/blog_posts/gepa/configs/hover_mipro_local.toml +53 -0
- examples/blog_posts/gepa/configs/ifbench_gepa_local.toml +59 -0
- examples/blog_posts/gepa/configs/ifbench_gepa_qwen.toml +36 -0
- examples/blog_posts/gepa/configs/ifbench_mipro_local.toml +53 -0
- examples/blog_posts/gepa/configs/pupa_gepa_local.toml +60 -0
- examples/blog_posts/gepa/configs/pupa_mipro_local.toml +54 -0
- examples/blog_posts/gepa/deploy_banking77_task_app.sh +41 -0
- examples/blog_posts/gepa/gepa_baseline.py +204 -0
- examples/blog_posts/gepa/query_prompts_example.py +97 -0
- examples/blog_posts/gepa/run_gepa_banking77.sh +87 -0
- examples/blog_posts/gepa/task_apps.py +105 -0
- examples/blog_posts/gepa/test_gepa_local.sh +67 -0
- examples/blog_posts/gepa/verify_banking77_setup.sh +123 -0
- examples/blog_posts/pokemon_vl/configs/eval_gpt5nano.toml +26 -0
- examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml +12 -10
- examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml +1 -0
- examples/blog_posts/pokemon_vl/extract_images.py +239 -0
- examples/blog_posts/pokemon_vl/pokemon_vl_baseline.py +326 -0
- examples/blog_posts/pokemon_vl/run_eval_extract_images.py +209 -0
- examples/blog_posts/pokemon_vl/run_qwen_eval_extract_images.py +212 -0
- examples/blog_posts/pokemon_vl/text_box_analysis.md +106 -0
- examples/blog_posts/warming_up_to_rl/ARCHITECTURE.md +195 -0
- examples/blog_posts/warming_up_to_rl/FINAL_TEST_RESULTS.md +127 -0
- examples/blog_posts/warming_up_to_rl/INFERENCE_SUCCESS.md +132 -0
- examples/blog_posts/warming_up_to_rl/SMOKE_TESTING.md +164 -0
- examples/blog_posts/warming_up_to_rl/SMOKE_TEST_COMPLETE.md +253 -0
- examples/blog_posts/warming_up_to_rl/configs/eval_baseline_qwen32b_10x20.toml +25 -0
- examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b_10x20.toml +26 -0
- examples/blog_posts/warming_up_to_rl/configs/filter_high_reward_dataset.toml +1 -1
- examples/blog_posts/warming_up_to_rl/configs/smoke_test.toml +75 -0
- examples/blog_posts/warming_up_to_rl/configs/train_rl_from_sft.toml +60 -10
- examples/blog_posts/warming_up_to_rl/configs/train_sft_qwen4b.toml +1 -1
- examples/blog_posts/warming_up_to_rl/warming_up_to_rl_baseline.py +187 -0
- examples/multi_step/configs/VERILOG_REWARDS.md +4 -0
- examples/multi_step/configs/VERILOG_RL_CHECKLIST.md +4 -0
- examples/multi_step/configs/crafter_rl_outcome.toml +1 -0
- examples/multi_step/configs/crafter_rl_stepwise_shaped.toml +1 -0
- examples/multi_step/configs/crafter_rl_stepwise_simple.toml +1 -0
- examples/rl/configs/rl_from_base_qwen17.toml +1 -0
- examples/swe/task_app/hosted/inference/openai_client.py +0 -34
- examples/swe/task_app/hosted/policy_routes.py +17 -0
- examples/swe/task_app/hosted/rollout.py +4 -2
- examples/task_apps/banking77/__init__.py +6 -0
- examples/task_apps/banking77/banking77_task_app.py +841 -0
- examples/task_apps/banking77/deploy_wrapper.py +46 -0
- examples/task_apps/crafter/CREATE_SFT_DATASET.md +4 -0
- examples/task_apps/crafter/FILTER_COMMAND_STATUS.md +4 -0
- examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md +4 -0
- examples/task_apps/crafter/task_app/grpo_crafter.py +24 -2
- examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py +49 -0
- examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py +355 -58
- examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py +68 -7
- examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py +78 -21
- examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py +194 -1
- examples/task_apps/gepa_benchmarks/__init__.py +7 -0
- examples/task_apps/gepa_benchmarks/common.py +260 -0
- examples/task_apps/gepa_benchmarks/hotpotqa_task_app.py +507 -0
- examples/task_apps/gepa_benchmarks/hover_task_app.py +436 -0
- examples/task_apps/gepa_benchmarks/ifbench_task_app.py +563 -0
- examples/task_apps/gepa_benchmarks/pupa_task_app.py +460 -0
- examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md +4 -0
- examples/task_apps/pokemon_red/task_app.py +254 -36
- examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml +1 -0
- examples/warming_up_to_rl/task_app/grpo_crafter.py +53 -4
- examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py +49 -0
- examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py +152 -41
- examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py +31 -1
- examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py +33 -3
- examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py +67 -0
- examples/workflows/math_rl/configs/rl_from_base_qwen17.toml +1 -0
- synth_ai/api/train/builders.py +90 -1
- synth_ai/api/train/cli.py +396 -21
- synth_ai/api/train/config_finder.py +13 -2
- synth_ai/api/train/configs/__init__.py +15 -1
- synth_ai/api/train/configs/prompt_learning.py +442 -0
- synth_ai/api/train/configs/rl.py +29 -0
- synth_ai/api/train/task_app.py +1 -1
- synth_ai/api/train/validators.py +277 -0
- synth_ai/baseline/__init__.py +25 -0
- synth_ai/baseline/config.py +209 -0
- synth_ai/baseline/discovery.py +214 -0
- synth_ai/baseline/execution.py +146 -0
- synth_ai/cli/__init__.py +85 -17
- synth_ai/cli/__main__.py +0 -0
- synth_ai/cli/claude.py +70 -0
- synth_ai/cli/codex.py +84 -0
- synth_ai/cli/commands/__init__.py +1 -0
- synth_ai/cli/commands/baseline/__init__.py +12 -0
- synth_ai/cli/commands/baseline/core.py +637 -0
- synth_ai/cli/commands/baseline/list.py +93 -0
- synth_ai/cli/commands/eval/core.py +13 -10
- synth_ai/cli/commands/filter/core.py +53 -17
- synth_ai/cli/commands/help/core.py +0 -1
- synth_ai/cli/commands/smoke/__init__.py +7 -0
- synth_ai/cli/commands/smoke/core.py +1436 -0
- synth_ai/cli/commands/status/subcommands/pricing.py +22 -0
- synth_ai/cli/commands/status/subcommands/usage.py +203 -0
- synth_ai/cli/commands/train/judge_schemas.py +1 -0
- synth_ai/cli/commands/train/judge_validation.py +1 -0
- synth_ai/cli/commands/train/validation.py +0 -57
- synth_ai/cli/demo.py +35 -3
- synth_ai/cli/deploy/__init__.py +40 -25
- synth_ai/cli/deploy.py +162 -0
- synth_ai/cli/legacy_root_backup.py +14 -8
- synth_ai/cli/opencode.py +107 -0
- synth_ai/cli/root.py +9 -5
- synth_ai/cli/task_app_deploy.py +1 -1
- synth_ai/cli/task_apps.py +53 -53
- synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py +7 -4
- synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py +9 -5
- synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py +4 -3
- synth_ai/judge_schemas.py +1 -0
- synth_ai/learning/__init__.py +10 -0
- synth_ai/learning/prompt_learning_client.py +276 -0
- synth_ai/learning/prompt_learning_types.py +184 -0
- synth_ai/pricing/__init__.py +2 -0
- synth_ai/pricing/model_pricing.py +57 -0
- synth_ai/streaming/handlers.py +53 -4
- synth_ai/streaming/streamer.py +19 -0
- synth_ai/task/apps/__init__.py +1 -0
- synth_ai/task/config.py +2 -0
- synth_ai/task/tracing_utils.py +25 -25
- synth_ai/task/validators.py +44 -8
- synth_ai/task_app_cfgs.py +21 -0
- synth_ai/tracing_v3/config.py +162 -19
- synth_ai/tracing_v3/constants.py +1 -1
- synth_ai/tracing_v3/db_config.py +24 -38
- synth_ai/tracing_v3/storage/config.py +47 -13
- synth_ai/tracing_v3/storage/factory.py +3 -3
- synth_ai/tracing_v3/turso/daemon.py +113 -11
- synth_ai/tracing_v3/turso/native_manager.py +92 -16
- synth_ai/types.py +8 -0
- synth_ai/urls.py +11 -0
- synth_ai/utils/__init__.py +30 -1
- synth_ai/utils/agents.py +74 -0
- synth_ai/utils/bin.py +39 -0
- synth_ai/utils/cli.py +149 -5
- synth_ai/utils/env.py +17 -17
- synth_ai/utils/json.py +72 -0
- synth_ai/utils/modal.py +283 -1
- synth_ai/utils/paths.py +48 -0
- synth_ai/utils/uvicorn.py +113 -0
- {synth_ai-0.2.17.dist-info → synth_ai-0.2.19.dist-info}/METADATA +102 -4
- {synth_ai-0.2.17.dist-info → synth_ai-0.2.19.dist-info}/RECORD +162 -88
- synth_ai/cli/commands/deploy/__init__.py +0 -23
- synth_ai/cli/commands/deploy/core.py +0 -614
- synth_ai/cli/commands/deploy/errors.py +0 -72
- synth_ai/cli/commands/deploy/validation.py +0 -11
- synth_ai/cli/deploy/core.py +0 -5
- synth_ai/cli/deploy/errors.py +0 -23
- synth_ai/cli/deploy/validation.py +0 -5
- {synth_ai-0.2.17.dist-info → synth_ai-0.2.19.dist-info}/WHEEL +0 -0
- {synth_ai-0.2.17.dist-info → synth_ai-0.2.19.dist-info}/entry_points.txt +0 -0
- {synth_ai-0.2.17.dist-info → synth_ai-0.2.19.dist-info}/licenses/LICENSE +0 -0
- {synth_ai-0.2.17.dist-info → synth_ai-0.2.19.dist-info}/top_level.txt +0 -0
|
@@ -3,19 +3,61 @@ examples/__init__.py,sha256=S1h7WGBIgk2CmmSIqsE4nkhxv2XTniHSBUqKETgSNQI,543
|
|
|
3
3
|
examples/analyze_semantic_words.sh,sha256=o7tYvODPBUhZY21Fb3K4FpLzK1QJQUL2zL3sQiKXbhY,672
|
|
4
4
|
examples/crafter_debug_render.py,sha256=McPkX8z6ffANOfoR0Xw26h81HNHtT0F5y4bzUhwYonQ,6261
|
|
5
5
|
examples/run_crafter_demo.sh,sha256=T0dduPqSahMLr0R64ibEaYDzqlpG3z-jpVYopTz4qHg,412
|
|
6
|
+
examples/baseline/banking77_baseline.py,sha256=L-anDhUGHiGs0pj1FRecdQ_ScbXO6hddnI49PRAjMGs,7455
|
|
7
|
+
examples/baseline/crafter_baseline.py,sha256=qQfA1EpgMievjePjCPCogIJM0VggTz24g9KSenZ4Thg,15816
|
|
8
|
+
examples/baseline/pokemon_red_baseline.py,sha256=UnkWisdcPJoA9WAxoLvXdwyfH8t87t15q9yOQq7Kdtw,12661
|
|
9
|
+
examples/baseline/simple_baseline.py,sha256=hpb5SdZ2mlerQlbXDeunlSoojeo-zBNuujRpEgkcv-M,1500
|
|
10
|
+
examples/baseline/warming_up_to_rl_baseline.py,sha256=w4KA3Pa2X169nKk45xw800H099XMPQJTjYZHb2Ovq0M,8737
|
|
11
|
+
examples/blog_posts/gepa/README.md,sha256=iRe1FycnydSJXmgNMfFRQm5QUyx6ngnZyJ8Ts0skvbI,10589
|
|
12
|
+
examples/blog_posts/gepa/deploy_banking77_task_app.sh,sha256=bq1OcDsCy5E5Uf-BRdZ0K2-jbEwH42IqnIaniwPmQV8,1023
|
|
13
|
+
examples/blog_posts/gepa/gepa_baseline.py,sha256=bdsVsRypvcOAmGTj2wgL7iG87zVbS8GF00fn757VFLk,7490
|
|
14
|
+
examples/blog_posts/gepa/query_prompts_example.py,sha256=r7rIawxMQ_yC5H5OaIq7Iax-COq3b60jFiInn7DKsKI,3472
|
|
15
|
+
examples/blog_posts/gepa/run_gepa_banking77.sh,sha256=ADyNR45BcaMSWCHkhDzxxw7yXXqmfZ3BES25rTi56uc,2556
|
|
16
|
+
examples/blog_posts/gepa/task_apps.py,sha256=Z55hjyXf0yRV4IIVg1litpnr5benU5K--6mO5oX-7nM,3442
|
|
17
|
+
examples/blog_posts/gepa/test_gepa_local.sh,sha256=W8p86f41OXPX-4mbErFGVlmRENO6kJng8C0aMEnK_d8,1821
|
|
18
|
+
examples/blog_posts/gepa/verify_banking77_setup.sh,sha256=XdRVIKsu4EocVd04dpm5L8YjoqBNulGjkpr7t6oobms,4194
|
|
19
|
+
examples/blog_posts/gepa/configs/banking77_gepa_local.toml,sha256=YrFuEke_AifVc4Hqf_fqfU8csf_edIbk6N10e2SNMt4,3073
|
|
20
|
+
examples/blog_posts/gepa/configs/banking77_gepa_test.toml,sha256=rr0XmP8TNkm6yPbE7okAan9QfopdxxPSGJGpFPpcmxA,2657
|
|
21
|
+
examples/blog_posts/gepa/configs/banking77_mipro_local.toml,sha256=ez___Kyoc7WG4WjctqcsmtJ69OeE6uf0dv1uLQOj8hQ,1579
|
|
22
|
+
examples/blog_posts/gepa/configs/hotpotqa_gepa_local.toml,sha256=O7giHexkLazaPHnwxCO_hwIdT7A4bBtYm_r_7HhDXUc,1788
|
|
23
|
+
examples/blog_posts/gepa/configs/hotpotqa_gepa_qwen.toml,sha256=oERFk00btj-1h-U0hr07htrKwvO20rol337UVp7Pcic,986
|
|
24
|
+
examples/blog_posts/gepa/configs/hotpotqa_mipro_local.toml,sha256=dOMg_kc7qgA7f63qadfaseZR0rEr_JP0FJnShLxbW-M,1625
|
|
25
|
+
examples/blog_posts/gepa/configs/hover_gepa_local.toml,sha256=G1jLClP8Xm1310hv4fHnXw7NbHPmU_H9RgG0kLNepCc,1743
|
|
26
|
+
examples/blog_posts/gepa/configs/hover_gepa_qwen.toml,sha256=UAI-PqYtS1uae2WRS25uP4AYsAtwpajAQLLVFXDT4k8,983
|
|
27
|
+
examples/blog_posts/gepa/configs/hover_mipro_local.toml,sha256=12te2mrBWeTDMfnrpQXa9odWqCUqeyLAQ0PVBr_X-0o,1596
|
|
28
|
+
examples/blog_posts/gepa/configs/ifbench_gepa_local.toml,sha256=rOmLVisIxNtim2_UGO3CaTeCalqRzgTgi8sPwVxK_Ro,1743
|
|
29
|
+
examples/blog_posts/gepa/configs/ifbench_gepa_qwen.toml,sha256=rqJw3wfPtyxZjGPRA1ZrEPmotq8zKA5KUvSOjzxp-N8,985
|
|
30
|
+
examples/blog_posts/gepa/configs/ifbench_mipro_local.toml,sha256=ry5kp1oE-AEhEljXGjXRBAOxA1Vi_xKg-bgf_1NLB1w,1585
|
|
31
|
+
examples/blog_posts/gepa/configs/pupa_gepa_local.toml,sha256=wEMMhJTV76mrdDFZ3fm4dk11Jdn74RL8fydMkFkRqu8,1790
|
|
32
|
+
examples/blog_posts/gepa/configs/pupa_mipro_local.toml,sha256=Wtmscal4YvkRKbove1pFf53mkGukmGu_7vvOTMTsGtU,1628
|
|
6
33
|
examples/blog_posts/pokemon_vl/README.md,sha256=F4QYYgFD8e4qfcNesyl1YWC1C1LZi_M3OacikZqcisc,3609
|
|
7
|
-
examples/blog_posts/pokemon_vl/
|
|
34
|
+
examples/blog_posts/pokemon_vl/extract_images.py,sha256=9JUZI1nnE6rGXk3bEICYNzCtotjL_xSF_ZRXldpEhnI,8114
|
|
35
|
+
examples/blog_posts/pokemon_vl/pokemon_vl_baseline.py,sha256=ojiZwMN0EUvzzarRu1pGPPRTO6l94TPPmpw6NnqbcPU,12697
|
|
36
|
+
examples/blog_posts/pokemon_vl/run_eval_extract_images.py,sha256=vb1N66w3w5vSfnswn2XmOhIY1lh6IuMHNn6ezHurFaQ,7212
|
|
37
|
+
examples/blog_posts/pokemon_vl/run_qwen_eval_extract_images.py,sha256=Wvk6b68ipbj_w6VwCyx-r3xZwUumq86kud8KmrwGNZI,7633
|
|
38
|
+
examples/blog_posts/pokemon_vl/text_box_analysis.md,sha256=tu2xog8s2ueZtJrDNXBLj0LfjecLGU5TsReQn9u52yE,4511
|
|
39
|
+
examples/blog_posts/pokemon_vl/configs/eval_gpt5nano.toml,sha256=gqWJkaddn6t_ca6jYJPeSToN_lU_ew99FjLfX5AN0o4,719
|
|
40
|
+
examples/blog_posts/pokemon_vl/configs/eval_qwen3_vl.toml,sha256=QfrkswkKZlypqF1RPfYtWMwedUHdi4mzdOU-eMrCeOM,1144
|
|
8
41
|
examples/blog_posts/pokemon_vl/configs/eval_rl_final.toml,sha256=uITA83YCeXCKpYkeq-pD0Xot8PMzQ6ybvebuXK90cSw,679
|
|
9
42
|
examples/blog_posts/pokemon_vl/configs/filter_high_reward.toml,sha256=p1uatJetNyQ4w5MgMSzraxk4NRe8B3mEWEtIYJTymoQ,446
|
|
10
|
-
examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml,sha256=
|
|
43
|
+
examples/blog_posts/pokemon_vl/configs/train_rl_from_sft.toml,sha256=9qKjCzfRkjtvuRZmmuwspSgx9h8OaCv1Q8_LboHWz1I,1182
|
|
11
44
|
examples/blog_posts/pokemon_vl/configs/train_sft_qwen4b_vl.toml,sha256=l8K5CetinKnOUi7jCf_y3u-IAMd-YsdzOqoTQI0eQgM,815
|
|
45
|
+
examples/blog_posts/warming_up_to_rl/ARCHITECTURE.md,sha256=xm2Uy6IsWXf3BMH2zRBfnMaW7CGJ8gUcMZppv7jFJCc,7347
|
|
46
|
+
examples/blog_posts/warming_up_to_rl/FINAL_TEST_RESULTS.md,sha256=9tlH8gh-gmIutnUYE0Me51PbWpEypC6RZugWM-iWsK0,3721
|
|
47
|
+
examples/blog_posts/warming_up_to_rl/INFERENCE_SUCCESS.md,sha256=7bxZDyaOwQRScUcb09UO27RmzNlg21D3ZmNez9-kiLg,3852
|
|
12
48
|
examples/blog_posts/warming_up_to_rl/README.md,sha256=Ex-YYbkxLEKPrF8OYeMS9O26U3SZ6fhjoHK7UBhtmGw,5126
|
|
49
|
+
examples/blog_posts/warming_up_to_rl/SMOKE_TESTING.md,sha256=dVxOMTJFsBHmvYQFM_OcsRq8MxA4a17Amywh8RnPMp4,4615
|
|
50
|
+
examples/blog_posts/warming_up_to_rl/SMOKE_TEST_COMPLETE.md,sha256=0jlqLSl4vS7Ec81kcnF8TXYRoUSh_iV1_7_LdENbjhM,8468
|
|
51
|
+
examples/blog_posts/warming_up_to_rl/warming_up_to_rl_baseline.py,sha256=upi9I75cAPCbloCHPDf0zwdU2_wrK6s-8l8tFfNmOBo,6593
|
|
52
|
+
examples/blog_posts/warming_up_to_rl/configs/eval_baseline_qwen32b_10x20.toml,sha256=2xCwoYAhdrfHBJ_8qioIIO2dNmBYMTxkJRMQ7JU4rWM,642
|
|
13
53
|
examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b.toml,sha256=PrQTJCyHx2DsqPgJf453YXyp6TKwBmnLKBC9VvgvxQg,657
|
|
54
|
+
examples/blog_posts/warming_up_to_rl/configs/eval_ft_qwen4b_10x20.toml,sha256=3t99TcNtfjY7PrFBgGWbLvIkDoqVmWsD4KcNmcP6xXo,714
|
|
14
55
|
examples/blog_posts/warming_up_to_rl/configs/eval_groq_qwen32b.toml,sha256=0Qh0xTDjIyFRG77P5Ozwe0KXk18f6SSsgyZMOzwC4jY,572
|
|
15
56
|
examples/blog_posts/warming_up_to_rl/configs/eval_openai_gpt_oss_120b.toml,sha256=FxtUwjCWTA1TZBophpXx0oE83alIEyblpQdO0W36wNE,810
|
|
16
|
-
examples/blog_posts/warming_up_to_rl/configs/filter_high_reward_dataset.toml,sha256=
|
|
17
|
-
examples/blog_posts/warming_up_to_rl/configs/
|
|
18
|
-
examples/blog_posts/warming_up_to_rl/configs/
|
|
57
|
+
examples/blog_posts/warming_up_to_rl/configs/filter_high_reward_dataset.toml,sha256=nLItUtoxVilhz70obg89TBMjd9qDjboKl2KQMSnMMNU,396
|
|
58
|
+
examples/blog_posts/warming_up_to_rl/configs/smoke_test.toml,sha256=c92FlssC0uOCJ1ha75oKao23zbwN2PSofn1ctxQRd1E,1790
|
|
59
|
+
examples/blog_posts/warming_up_to_rl/configs/train_rl_from_sft.toml,sha256=LIKcYAp0mtx9qeEp4hyW90xR_dAlEJ99E6ysSCGbXaQ,2539
|
|
60
|
+
examples/blog_posts/warming_up_to_rl/configs/train_sft_qwen4b.toml,sha256=raGbjk4EnBLUwTA6uUxnlCl-79FMbDzOcps-Fj9ty6I,741
|
|
19
61
|
examples/dev/qwen3_32b_qlora_4xh100.toml,sha256=nrksJoXBsPRvxvHEWlrG45Ouum44BGxolIFZNv2xtm8,829
|
|
20
62
|
examples/multi_step/SFT_README.md,sha256=OqOT8mDBU3RGojFqWU9opCC6wpz8yhTkRE2wDOrBaqg,4075
|
|
21
63
|
examples/multi_step/convert_traces_to_sft.py,sha256=vA1Q6e3ayCP-XXrWvz1iwo39QP1WlzhQhc-FRlsSk1o,2590
|
|
@@ -26,14 +68,14 @@ examples/multi_step/sse_metrics_streaming_notes.md,sha256=2k5nNOB4IgXrfC0czdup5K
|
|
|
26
68
|
examples/multi_step/task_app_config_notes.md,sha256=1ngz8aGCykA1iMCrVdc1yGbqXan530893Xzf4KK9xe4,22212
|
|
27
69
|
examples/multi_step/verilog_rl_lora.md,sha256=GAd5K7RF4VZy3t2lvkruvP4bxX_6N0BIkGwI7xkxUIo,6293
|
|
28
70
|
examples/multi_step/configs/README_verilog_rl.md,sha256=fCSO7BWECslgfyZAHqPUBKuGwG7niBWhmUr15E9nEjQ,2548
|
|
29
|
-
examples/multi_step/configs/VERILOG_REWARDS.md,sha256=
|
|
30
|
-
examples/multi_step/configs/VERILOG_RL_CHECKLIST.md,sha256=
|
|
71
|
+
examples/multi_step/configs/VERILOG_REWARDS.md,sha256=nwNWeFti4luntfVQpX--K46WITPYXjlvdhBOOn9MEQ8,2705
|
|
72
|
+
examples/multi_step/configs/VERILOG_RL_CHECKLIST.md,sha256=m4k_LNRgWGQe_8r2cd7uLprFqkWdv1uof_bKmlg6_6U,7323
|
|
31
73
|
examples/multi_step/configs/crafter_eval_synth_qwen4b.toml,sha256=mHqIZKDBlcA4AKucm2Z55wLeD0coMjulnGqVhxfoZNM,854
|
|
32
74
|
examples/multi_step/configs/crafter_eval_text_only_groq_qwen32b.toml,sha256=iycGZdVf494OuxvNSpiMGQgeKbo1ZNOWa7yP57kElAY,905
|
|
33
|
-
examples/multi_step/configs/crafter_rl_outcome.toml,sha256=
|
|
75
|
+
examples/multi_step/configs/crafter_rl_outcome.toml,sha256=7KmDuxKgqtJDDNN4NN6uouLQwHZZPqganUcK1ZsZEIo,1444
|
|
34
76
|
examples/multi_step/configs/crafter_rl_stepwise_hosted_judge.toml,sha256=DVBARNTmVHatJxxUwkMkH226GSuz3fsylE2_Zfx2a3M,3795
|
|
35
|
-
examples/multi_step/configs/crafter_rl_stepwise_shaped.toml,sha256=
|
|
36
|
-
examples/multi_step/configs/crafter_rl_stepwise_simple.toml,sha256=
|
|
77
|
+
examples/multi_step/configs/crafter_rl_stepwise_shaped.toml,sha256=R0LDvZtsZF2sxlAjiztawIM5fT4ayFOUTEWPoslzjnU,1930
|
|
78
|
+
examples/multi_step/configs/crafter_rl_stepwise_simple.toml,sha256=M4P3pZPXw_SPAgyHyzsyt60unPDuOPVyq8h5aHZdtq0,1558
|
|
37
79
|
examples/multi_step/configs/crafter_rl_stepwise_simple_NEW_FORMAT.toml,sha256=VEqGQ2WJuqdVcer-h6pF9yLRbSUXFHOjpKqNuMidXc8,2394
|
|
38
80
|
examples/multi_step/configs/crafter_sft_qwen30b_lora.toml,sha256=TYyR0aG26rP46iJXN6fnuWX2kvcsQy5L2exxS7duDHQ,1248
|
|
39
81
|
examples/multi_step/configs/crafter_synth_backend.md,sha256=OtorKohcWo1VFectNhNlNVmAmDD8T2XiGkftOD9EJeE,986
|
|
@@ -98,7 +140,7 @@ examples/rl/run_rl_and_save.py,sha256=KfdhOYBOFIM_jElJNaXtebbYQlkaP2NpUzmIkgDAr1
|
|
|
98
140
|
examples/rl/configs/eval_base_qwen.toml,sha256=IMpNw3YcLkaFIteAYYw5DGJvm5Ge92d2JnGpy3TDh6A,350
|
|
99
141
|
examples/rl/configs/eval_rl_qwen.toml,sha256=bqfLMrq_YOMXCNdvK5uXMbZ3c6YipPXCQlTDDoAJXPU,260
|
|
100
142
|
examples/rl/configs/rl_from_base_qwen.toml,sha256=v_ZioSxezJp0cXHZYdWLFAN9uyTVlxNoBFL2pFfabuc,1067
|
|
101
|
-
examples/rl/configs/rl_from_base_qwen17.toml,sha256=
|
|
143
|
+
examples/rl/configs/rl_from_base_qwen17.toml,sha256=j_GIkaHUgpS3nq5XHttiL3QKlNu0aetm3ToYIDAsX9Q,1515
|
|
102
144
|
examples/rl/configs/rl_from_ft_qwen.toml,sha256=2EKDn32bzaFtxj3DAnUUpKUY8g4yKEYcGd7WmR1NxpE,651
|
|
103
145
|
examples/rl/task_app/README.md,sha256=vFSGwQRh8chSGVsTFw2KkpbNlDKqDDaswfnTIcjX4DM,820
|
|
104
146
|
examples/rl/task_app/math_single_step.py,sha256=8chkFJsC7E5ngaizS4V1eeo_3DyuaHs_fGLI1yPZr4Q,34522
|
|
@@ -121,9 +163,9 @@ examples/swe/task_app/hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5
|
|
|
121
163
|
examples/swe/task_app/hosted/environment_routes.py,sha256=BYNBg9plzmGlR_odUzrFrYgLN3jlTPHYHahi1YWkd1w,52041
|
|
122
164
|
examples/swe/task_app/hosted/hosted_app.py,sha256=hr1jblOUsx0bakgy6zXoEHROeUDoVPY1I66aNyyRQDg,7547
|
|
123
165
|
examples/swe/task_app/hosted/main.py,sha256=_F1CAEYiRqPYjTzajOJtX0YFKt4DQe3ioLmCPTMwz0c,2464
|
|
124
|
-
examples/swe/task_app/hosted/policy_routes.py,sha256=
|
|
166
|
+
examples/swe/task_app/hosted/policy_routes.py,sha256=s9NGfjukYTbEaFHBkRNDUq7MVns9rtivXwufejvpwHA,49948
|
|
125
167
|
examples/swe/task_app/hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
|
|
126
|
-
examples/swe/task_app/hosted/rollout.py,sha256=
|
|
168
|
+
examples/swe/task_app/hosted/rollout.py,sha256=MDikv5boKAFhAkHQwkFnJrtvno4utWKFf1Hb4t2rbdU,80895
|
|
127
169
|
examples/swe/task_app/hosted/test_agents.py,sha256=Vbxm8KJ5x4TbMpVGAzLkZhDCfZcOpA0t6LyUbKKi-Dw,5580
|
|
128
170
|
examples/swe/task_app/hosted/test_service.py,sha256=H4ssyW9BapGfwk2s_XyTuuvoT8ghc1RpNBbRYUuFoOk,5154
|
|
129
171
|
examples/swe/task_app/hosted/utils.py,sha256=8Rnp0NTKTD_kPXg8zfpIy_we2hfk2agKPUVH_aqMsE0,1994
|
|
@@ -141,16 +183,19 @@ examples/swe/task_app/hosted/envs/mini_swe/policy.py,sha256=yYP7X5Y41lAdtGrQoPow
|
|
|
141
183
|
examples/swe/task_app/hosted/envs/mini_swe/shared.py,sha256=C1baeM0ZQY4OJnWoKOduEljOMj4HYdSJS6r5CpUnEDY,2685
|
|
142
184
|
examples/swe/task_app/hosted/envs/mini_swe/tools.py,sha256=A1ZG4ovsLvlQVkVZ_KCyDWOfRpbIQW8-wAzDSUbesH8,3079
|
|
143
185
|
examples/swe/task_app/hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
|
|
144
|
-
examples/swe/task_app/hosted/inference/openai_client.py,sha256=
|
|
186
|
+
examples/swe/task_app/hosted/inference/openai_client.py,sha256=n80d1_jeb7BK8W9U8eRRg4NyEDNYAHyNVfOeO1aKxno,26242
|
|
145
187
|
examples/swe/task_app/hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
|
|
146
188
|
examples/swe/task_app/hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
|
|
147
189
|
examples/task_apps/IMAGE_ONLY_EVAL_QUICKSTART.md,sha256=4nLM141My_Gk2uJ6GOxkklfRGaQucTJA1SbKXDzJjdU,6433
|
|
148
190
|
examples/task_apps/TESTING.md,sha256=Ub7FD4pfjbvc4IX6WWfnRTCwh5aens5Ale7gHf7SuVI,7422
|
|
149
191
|
examples/task_apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
-
examples/task_apps/
|
|
192
|
+
examples/task_apps/banking77/__init__.py,sha256=ZEsOjavYbsbxT0ZzN641wjRLwt4siUC2SzqgLwq_cFQ,109
|
|
193
|
+
examples/task_apps/banking77/banking77_task_app.py,sha256=Bnj8d-_URPw_MQjAkJdKL2QCKSB9FjtKbkJcr7-v47c,31493
|
|
194
|
+
examples/task_apps/banking77/deploy_wrapper.py,sha256=Ms2aghmiTub1N33rhcbqh5ftPfiGUOfUl4LWlbmFB-0,1483
|
|
195
|
+
examples/task_apps/crafter/CREATE_SFT_DATASET.md,sha256=EoW11a2TwzGOxYppD931QMZkQF-2h_YgaijzoMHWWm4,7374
|
|
151
196
|
examples/task_apps/crafter/EVAL_IMAGE_ONLY_RESULTS.md,sha256=JcL87knjODs_VKqCDfdlu2uaUgXl0BBj5odhB9QtJRk,5417
|
|
152
|
-
examples/task_apps/crafter/FILTER_COMMAND_STATUS.md,sha256=
|
|
153
|
-
examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md,sha256=
|
|
197
|
+
examples/task_apps/crafter/FILTER_COMMAND_STATUS.md,sha256=oWo9Fb7e43El-OICt9shEuN__QoiROK_Tepq8Yy4MmE,6404
|
|
198
|
+
examples/task_apps/crafter/FILTER_COMMAND_SUCCESS.md,sha256=uZA6VIEB4ke49EAqbqivhgC-tTI_AfMSB8FCip-AI-g,6814
|
|
154
199
|
examples/task_apps/crafter/QUERY_EXAMPLES.md,sha256=YpeHms0e2sciyb3uD8JDOwkMaaOApmC3eMKVFbYi8Mo,4869
|
|
155
200
|
examples/task_apps/crafter/README_IMAGE_ONLY_EVAL.md,sha256=XUaNuvTo9yO_8U1Ru0GTZHWpHkGuzKc3ISrSUDbYhEA,8030
|
|
156
201
|
examples/task_apps/crafter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -159,20 +204,20 @@ examples/task_apps/crafter/eval_text_only_groq_llama.toml,sha256=53rQeFnsve9kgVM
|
|
|
159
204
|
examples/task_apps/crafter/filter_sft_dataset.toml,sha256=afOTidktziCpORAGQAd6wGq3TLFUPVKJLlwY8zNxhkM,459
|
|
160
205
|
examples/task_apps/crafter/task_app/README.md,sha256=XD1D60WZfdXBN_IKhtYD7_wUCmgVKJIzVwYYwzrBKp8,1683
|
|
161
206
|
examples/task_apps/crafter/task_app/__init__.py,sha256=AriIMnzDg5vsWosZNdBuOMmsy-x2fPKTwDQfarLGbyM,43
|
|
162
|
-
examples/task_apps/crafter/task_app/grpo_crafter.py,sha256=
|
|
207
|
+
examples/task_apps/crafter/task_app/grpo_crafter.py,sha256=MqFTNzz7gsKFqnzPCKYAmR-BFouZC0OAbql_C6CBCNo,40722
|
|
163
208
|
examples/task_apps/crafter/task_app/grpo_crafter_task_app.py,sha256=d2W1LVrol2ASC1uxgFg3kYEEMPOTNlfDc3EMTbFzaeo,5425
|
|
164
209
|
examples/task_apps/crafter/task_app/synth_envs_hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
|
|
165
210
|
examples/task_apps/crafter/task_app/synth_envs_hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
|
|
166
211
|
examples/task_apps/crafter/task_app/synth_envs_hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5vw2Robhww8Q8,5318
|
|
167
212
|
examples/task_apps/crafter/task_app/synth_envs_hosted/environment_routes.py,sha256=Y0iaLQ1nUkxBCD4aY39J4XEt66J-N4_J0uPj492i75g,49640
|
|
168
|
-
examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py,sha256=
|
|
213
|
+
examples/task_apps/crafter/task_app/synth_envs_hosted/hosted_app.py,sha256=eBXC7vL1c8ZHLSdPkPVW-zLwTAG7szRcW3wrI2AvqTo,8777
|
|
169
214
|
examples/task_apps/crafter/task_app/synth_envs_hosted/main.py,sha256=-GL__EH3Xr47vp3aD30XNXNrFPOj1bRLpOYQ-yvfwIU,2481
|
|
170
|
-
examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py,sha256=
|
|
215
|
+
examples/task_apps/crafter/task_app/synth_envs_hosted/policy_routes.py,sha256=Lb07Wd0b3lsWlbVmQ2EdYfMMjnCbAQ29i7IxqD78ZrU,57295
|
|
171
216
|
examples/task_apps/crafter/task_app/synth_envs_hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
|
|
172
|
-
examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py,sha256=
|
|
217
|
+
examples/task_apps/crafter/task_app/synth_envs_hosted/rollout.py,sha256=fZ40cE3OjOq8e3NBuei1WDWezmtk9pbnEV5MIrWxUe4,93319
|
|
173
218
|
examples/task_apps/crafter/task_app/synth_envs_hosted/test_agents.py,sha256=-TDfCs-LSlRgyWHGvO_6YAmjauwi1x4618D8CA9d8aA,5600
|
|
174
219
|
examples/task_apps/crafter/task_app/synth_envs_hosted/test_service.py,sha256=H4ssyW9BapGfwk2s_XyTuuvoT8ghc1RpNBbRYUuFoOk,5154
|
|
175
|
-
examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py,sha256=
|
|
220
|
+
examples/task_apps/crafter/task_app/synth_envs_hosted/utils.py,sha256=rvwcCVOPCgchn6st6aNWJ2LH18jn4nfU7g4xuoFhHMo,16471
|
|
176
221
|
examples/task_apps/crafter/task_app/synth_envs_hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
|
|
177
222
|
examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
|
|
178
223
|
examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/app.py,sha256=QZ9kT8Q21NivxQJ_PzWN1roQUDMZDvWLJMxb-VSSG3k,19
|
|
@@ -182,7 +227,7 @@ examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/react_agent.p
|
|
|
182
227
|
examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/shared.py,sha256=NfhgJPkzjhA-bLDF6zYP57Cs1pnpqteJqzO3lsFOdMk,10074
|
|
183
228
|
examples/task_apps/crafter/task_app/synth_envs_hosted/envs/crafter/tools.py,sha256=zmTxJ8IpTod7DRDCQhkLDw7KgFCeAVFbf4cQpuOgSgI,1788
|
|
184
229
|
examples/task_apps/crafter/task_app/synth_envs_hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
|
|
185
|
-
examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py,sha256=
|
|
230
|
+
examples/task_apps/crafter/task_app/synth_envs_hosted/inference/openai_client.py,sha256=CnN2SX6x3XyPs-7zyUScK2oi_59rTgLoTEszH6KUGq4,48837
|
|
186
231
|
examples/task_apps/crafter/task_app/synth_envs_hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
|
|
187
232
|
examples/task_apps/crafter/task_app/synth_envs_hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
|
|
188
233
|
examples/task_apps/dev/pokemon_emerald/__init__.py,sha256=SXrxD6S96U2zgs7gGGwrdvryIJ66TM3xfTtbG3-4RHI,52
|
|
@@ -259,6 +304,12 @@ examples/task_apps/enron/tests/integration/test_enron_eval.py,sha256=FZuC3wIMqLZ
|
|
|
259
304
|
examples/task_apps/enron/tests/integration/test_enron_rollout.py,sha256=lu1RKTxZCXHxXgYDdIQB3jEj33LvT9-WIek9mNPL3Vo,4005
|
|
260
305
|
examples/task_apps/enron/tests/unit/__init__.py,sha256=7HiZh4jhCACQvftkHRFKvmMMcW-FbpC-c3GIEkOGDwo,35
|
|
261
306
|
examples/task_apps/enron/tests/unit/test_enron_environment.py,sha256=dZUlfN2tNFHieT21dHBDSdoiBOS5_WsxtOGHn3OJS-A,4545
|
|
307
|
+
examples/task_apps/gepa_benchmarks/__init__.py,sha256=x97pR_l0iu2XT9i5JK5EAD4qgH56f_K7-XtHoSe-6u4,326
|
|
308
|
+
examples/task_apps/gepa_benchmarks/common.py,sha256=Wplh88Gf44o-pJhJVIxEd3Et9MH3ZVdzVuGuwxZbFwU,7951
|
|
309
|
+
examples/task_apps/gepa_benchmarks/hotpotqa_task_app.py,sha256=8rluebgXK73xudbvHfdUsr4EOBIs_lihYEe1ZGyVTa4,16861
|
|
310
|
+
examples/task_apps/gepa_benchmarks/hover_task_app.py,sha256=x-u1r9agnphTiQXoVwlvgM37x7_VVv4kA2h8lBeAXbA,13502
|
|
311
|
+
examples/task_apps/gepa_benchmarks/ifbench_task_app.py,sha256=yRQPXQA1azQ5I7WLjJQGc8vCnhegYLbWheWHxbv60jI,18461
|
|
312
|
+
examples/task_apps/gepa_benchmarks/pupa_task_app.py,sha256=Gt5PaUFM4-uzscYkogglpw9Qovlq8kYkwsgiI55Mprg,13993
|
|
262
313
|
examples/task_apps/math/README.md,sha256=vFSGwQRh8chSGVsTFw2KkpbNlDKqDDaswfnTIcjX4DM,820
|
|
263
314
|
examples/task_apps/math/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
264
315
|
examples/task_apps/math/math_single_step.py,sha256=6mK8KS1oc-daGhBKt6Ou1UQrYXppJ9ySkbxJMpXHa4M,34932
|
|
@@ -271,12 +322,12 @@ examples/task_apps/pokemon_battle/task_app/pokemon_showdown.py,sha256=cKlGJBF9_-
|
|
|
271
322
|
examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_COMPLETE.md,sha256=5ZpAmF20wazHluW2AV33Y1fwmqEYkN7LYCRSzuGPFM4,8202
|
|
272
323
|
examples/task_apps/pokemon_red/EVAL_IMAGE_ONLY_STATUS.md,sha256=oVlSd3M4FOdt-uiWKL5Ns-02ZkFn-q-VUQm_UDcNzzA,5373
|
|
273
324
|
examples/task_apps/pokemon_red/README.md,sha256=Ac72BO_BpjnRYuluo1LQqqmNVxq8hvExlOSJMAPZ3qc,9975
|
|
274
|
-
examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md,sha256=
|
|
325
|
+
examples/task_apps/pokemon_red/README_IMAGE_ONLY_EVAL.md,sha256=umkFiB9hoX0fosyqPvX4IFwA4xqE61Ggw3_Gm7Drens,10645
|
|
275
326
|
examples/task_apps/pokemon_red/__init__.py,sha256=Fxk5ihfqAxDclN1O-BKeZSfsz_dBLHuTV9vmh6hGqlk,47
|
|
276
327
|
examples/task_apps/pokemon_red/eval_image_only_gpt4o.toml,sha256=rpF5hfR1wLqMnfrBe3z1StQTddhyvHqqmE8FvjJtk_8,843
|
|
277
328
|
examples/task_apps/pokemon_red/eval_pokemon_red_policy.py,sha256=jcXY4_zsOFZfg9QS1sG2HFvTUuCa_1jdVm88NwOYPtU,7534
|
|
278
329
|
examples/task_apps/pokemon_red/pallet_town_rl_config.toml,sha256=7QqUBmFu2KzdkjgfT_jRzRYjz6ECzQrEYgcw4_IaoQc,2159
|
|
279
|
-
examples/task_apps/pokemon_red/task_app.py,sha256=
|
|
330
|
+
examples/task_apps/pokemon_red/task_app.py,sha256=0oPAK25J9PHeUxJ1kFckWV9ufrEVygBEbEDmiSJDJFg,51737
|
|
280
331
|
examples/task_apps/pokemon_red/test_pallet_town_rewards.py,sha256=gwPiTZ3L8TTRA5cDE91khbQVjmq51_MoezKfj9mGt88,6254
|
|
281
332
|
examples/task_apps/sokoban/README.md,sha256=ffATmxGVmVu2-DSmvoIrz-3XJdLn-U6m7s-qOQlTYyo,7765
|
|
282
333
|
examples/task_apps/sokoban/__init__.py,sha256=zUccj5m53GWM8Pw9JcZmq3ib4ddoNDJ_bZcqJ47mhkc,42
|
|
@@ -335,25 +386,25 @@ examples/warming_up_to_rl/configs/eval_stepwise_complex.toml,sha256=M1YGni8ng1RT
|
|
|
335
386
|
examples/warming_up_to_rl/configs/eval_stepwise_consistent.toml,sha256=N5xt_9_AaVvJX6up90bSuXpF8Yt-cGJfmTA-Au3NY_4,591
|
|
336
387
|
examples/warming_up_to_rl/configs/eval_stepwise_per_achievement.toml,sha256=ly42h8kIeSX8Y9mygC8mx7G_0KypUcPB9vqx8P-6QmQ,825
|
|
337
388
|
examples/warming_up_to_rl/configs/eval_stepwise_simple.toml,sha256=g_Q8EsHOpatX0VfKKBHMGxX0T3yZv42_UzLhF5evGa8,882
|
|
338
|
-
examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml,sha256=
|
|
389
|
+
examples/warming_up_to_rl/configs/rl_from_base_qwen4b.toml,sha256=TCvA8LFoSal67JBcSAvrdTWDPpN7p7VBTBQtqMWbbHA,1940
|
|
339
390
|
examples/warming_up_to_rl/configs/rl_from_ft.toml,sha256=ZetEUuw-AB7Lf8mBRylwCl-dW9C3i33SmQqzgzZjG1I,1394
|
|
340
391
|
examples/warming_up_to_rl/old/event_rewards.md,sha256=gHJd3ZeYOnj4xPXt-7sSJamgOaJQ-BpfdaF-CKJK3-0,13450
|
|
341
392
|
examples/warming_up_to_rl/old/notes.md,sha256=Y9Zs_tUb2Y6kv0MmGe-kAvGM9zCtEDY3Ccf5j7PoFGU,4468
|
|
342
393
|
examples/warming_up_to_rl/task_app/README.md,sha256=XD1D60WZfdXBN_IKhtYD7_wUCmgVKJIzVwYYwzrBKp8,1683
|
|
343
|
-
examples/warming_up_to_rl/task_app/grpo_crafter.py,sha256=
|
|
394
|
+
examples/warming_up_to_rl/task_app/grpo_crafter.py,sha256=uci53DqBg_Q9IHMKZuh4_2rQwRZyLfw4qmFPvkPwrhg,32433
|
|
344
395
|
examples/warming_up_to_rl/task_app/grpo_crafter_task_app.py,sha256=uXrL3BS3AcSXw6Ezv_tmGK3HQ8cSrFNpw3Am1hXKtRE,5047
|
|
345
396
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/README.md,sha256=kJaN1do8V4XM2_g51WMI3edCDpv5zEw_nrMFtEwO1SQ,4614
|
|
346
397
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/__init__.py,sha256=KrGX5yedzYZQeKVt5FTSVzln52d1tsVGRtqFDId68zw,120
|
|
347
398
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/branching.py,sha256=YpDgOajiQydoaxY_6RmBqgw1dxivxM5vw2Robhww8Q8,5318
|
|
348
399
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/environment_routes.py,sha256=Y0iaLQ1nUkxBCD4aY39J4XEt66J-N4_J0uPj492i75g,49640
|
|
349
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py,sha256=
|
|
400
|
+
examples/warming_up_to_rl/task_app/synth_envs_hosted/hosted_app.py,sha256=w46rmjDBxFnIjt0ogVXzhA7ORSSPAg3tkhoNHaVT6L0,8755
|
|
350
401
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/main.py,sha256=-GL__EH3Xr47vp3aD30XNXNrFPOj1bRLpOYQ-yvfwIU,2481
|
|
351
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py,sha256=
|
|
402
|
+
examples/warming_up_to_rl/task_app/synth_envs_hosted/policy_routes.py,sha256=gAnsObgB_PnW3-lp5qorel-h03sqwuVMPkw6F-ydLjg,49775
|
|
352
403
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/registry.py,sha256=5dN2Z-qVU4T_UUflHC9XGiIdDqFUl03G7uejcrYRbTE,5480
|
|
353
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py,sha256=
|
|
404
|
+
examples/warming_up_to_rl/task_app/synth_envs_hosted/rollout.py,sha256=RJIIw2g80-2quD6-GJaP10_6XOOlC7oxMleWbAGC1_0,80586
|
|
354
405
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/test_agents.py,sha256=-TDfCs-LSlRgyWHGvO_6YAmjauwi1x4618D8CA9d8aA,5600
|
|
355
406
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/test_service.py,sha256=jFEtE3UqVCq552MSPliS2eO0pDbAS3tSDRJL0A-edTA,5111
|
|
356
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py,sha256=
|
|
407
|
+
examples/warming_up_to_rl/task_app/synth_envs_hosted/utils.py,sha256=fPt20ZfX8NumtkfPd5QIgpkHk8Fa9rohXIufpPXdzek,4495
|
|
357
408
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/__init__.py,sha256=iE5VGcjkKd0eq6nNqqCRRwte52qE6HxtsanEk-PRvh4,35
|
|
358
409
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/__init__.py,sha256=zdyawD61sYQa4QSJZ2CcZa4-M-2q1qHkc9XEZn3RsD4,198
|
|
359
410
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/app.py,sha256=QZ9kT8Q21NivxQJ_PzWN1roQUDMZDvWLJMxb-VSSG3k,19
|
|
@@ -363,7 +414,7 @@ examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/react_agent.py
|
|
|
363
414
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/shared.py,sha256=NfhgJPkzjhA-bLDF6zYP57Cs1pnpqteJqzO3lsFOdMk,10074
|
|
364
415
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/envs/crafter/tools.py,sha256=zmTxJ8IpTod7DRDCQhkLDw7KgFCeAVFbf4cQpuOgSgI,1788
|
|
365
416
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/__init__.py,sha256=TA47fqudhRMma0iANDvMotfC0U5YqJJQudeZFRGiPX4,179
|
|
366
|
-
examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py,sha256=
|
|
417
|
+
examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py,sha256=hx-9UE6IFAKhtiPEtl6uJcvcEAMH_oIuEsMJ5O9p-ug,33990
|
|
367
418
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
|
|
368
419
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
|
|
369
420
|
examples/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -374,14 +425,17 @@ examples/workflows/math_rl/run_rl_and_save.py,sha256=KfdhOYBOFIM_jElJNaXtebbYQlk
|
|
|
374
425
|
examples/workflows/math_rl/configs/eval_base_qwen.toml,sha256=qst95ZUerBx_kS2mqBwsg9QEDEGFhNw12Ibpd9IJOI0,337
|
|
375
426
|
examples/workflows/math_rl/configs/eval_rl_qwen.toml,sha256=o07ZvAxjj_ejj3zbjESmtpIOh6QqkwpTD2ZUL9Lzx5A,247
|
|
376
427
|
examples/workflows/math_rl/configs/rl_from_base_qwen.toml,sha256=v_ZioSxezJp0cXHZYdWLFAN9uyTVlxNoBFL2pFfabuc,1067
|
|
377
|
-
examples/workflows/math_rl/configs/rl_from_base_qwen17.toml,sha256=
|
|
428
|
+
examples/workflows/math_rl/configs/rl_from_base_qwen17.toml,sha256=j_GIkaHUgpS3nq5XHttiL3QKlNu0aetm3ToYIDAsX9Q,1515
|
|
378
429
|
examples/workflows/math_rl/configs/rl_from_ft_qwen.toml,sha256=7s5HK_YM7zVnvjJavvfai8Nc_eUx_70cgHeWN19vXXM,638
|
|
379
430
|
synth_ai/__init__.py,sha256=EsZHO9kXBbGpAGR_WGZa-hdSJ6oF3pMFaWz_rY1PWDI,3022
|
|
380
431
|
synth_ai/__main__.py,sha256=Kh1xBKkTE5Vs2qNMtDuuOXerHUptMcOiF3YziOpC6DA,146
|
|
381
432
|
synth_ai/http.py,sha256=8lxqxN22Rgl9YruiQlj4Cz6IklLUiZ5OQGq-W5MjBYU,358
|
|
382
433
|
synth_ai/http_client.py,sha256=5AkwvGf7HpvYUpxr_IIM1xdsDjLYois7xTht5ueHYkk,5058
|
|
383
|
-
synth_ai/judge_schemas.py,sha256=
|
|
434
|
+
synth_ai/judge_schemas.py,sha256=mGSbZDy20Bcg7RpYqI0ji4UNooXzBiKMTL6HUCDcjuQ,4530
|
|
384
435
|
synth_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
436
|
+
synth_ai/task_app_cfgs.py,sha256=eNYWZmh0de_mHFUozTF8GX-jJeYlAiRuVMKmnYeGGXs,460
|
|
437
|
+
synth_ai/types.py,sha256=TQEjAaGMBcoQqsZxpo30PKgWBzzN27-VOCa485phdCI,150
|
|
438
|
+
synth_ai/urls.py,sha256=Qw_kXIwta_QqaM7D-lrwQfuiwOKQye4n750uw-FnlxU,707
|
|
385
439
|
synth_ai/_utils/__init__.py,sha256=LrJyAMyjwe3V_LNNuNXXNBqiAL7mYRnqcPFONZ-BarI,1342
|
|
386
440
|
synth_ai/_utils/base_url.py,sha256=zNvdBpnjYxgdFDyZ6XYa9RDUQv-XXgltG4daFY-RAVA,306
|
|
387
441
|
synth_ai/_utils/http.py,sha256=wU6Xt4sU5uBYL_XVayghWH6NatpE7NDgeejhHhyDV3Q,298
|
|
@@ -390,59 +444,71 @@ synth_ai/_utils/task_app_state.py,sha256=c02-ZBTf5P0FIEe6lvsvVPsuulqiau43l2nNRz5
|
|
|
390
444
|
synth_ai/_utils/user_config.py,sha256=M9UVgXS6Da0mWve7r3VtKX9qdYaNUS_6M35Mme140z8,312
|
|
391
445
|
synth_ai/api/models/supported.py,sha256=zxozXZkHaP70CvscKT1S8SuzJoHmLTy0VwH-p48rpxc,17709
|
|
392
446
|
synth_ai/api/train/__init__.py,sha256=P7-foziVtIPOpXzDASrHAWvqpeTN5hco098oeMJdCag,449
|
|
393
|
-
synth_ai/api/train/builders.py,sha256=
|
|
394
|
-
synth_ai/api/train/cli.py,sha256=
|
|
395
|
-
synth_ai/api/train/config_finder.py,sha256=
|
|
447
|
+
synth_ai/api/train/builders.py,sha256=PiweJCHjoKtWg6yCzCW2StsDf9PbdGr9pXzdKDPDMSA,15757
|
|
448
|
+
synth_ai/api/train/cli.py,sha256=uDobZsReBlegZ7yDFOVi4lsSAD3Myq_GdItbWuGKIDU,43144
|
|
449
|
+
synth_ai/api/train/config_finder.py,sha256=TPEMwGvFrYk13iqj-xVhNQ-uErorY0vUW4JKUdQidaU,7901
|
|
396
450
|
synth_ai/api/train/env_resolver.py,sha256=sOYrHdfs9DV1AZzVzgSxGGqQ8jZrp_eTyN1gEDFWuq4,12083
|
|
397
451
|
synth_ai/api/train/pollers.py,sha256=-rcVrGMN7Rj2HrzJ1IAgphwcrsCzpwwTy0KDk76Sx2A,2341
|
|
398
452
|
synth_ai/api/train/supported_algos.py,sha256=2GSKnEkZRl_EinJa2YMIWevvxHQLtkKzKMUp7mS2fBA,5320
|
|
399
|
-
synth_ai/api/train/task_app.py,sha256=
|
|
453
|
+
synth_ai/api/train/task_app.py,sha256=FD1YSPk9mtIyVs0E_tXmZTtv1tKE-3D_9jzSyss0Puw,6439
|
|
400
454
|
synth_ai/api/train/utils.py,sha256=S3Oq75Kxnm0hWiLhE4qoj2ClBxJIJPUMgFrcma_dguU,6296
|
|
401
|
-
synth_ai/api/train/
|
|
402
|
-
synth_ai/api/train/configs/
|
|
455
|
+
synth_ai/api/train/validators.py,sha256=4JJusygwwZz8lIKQWUiYATP2FMsFXbPI53T4HcGq8Uc,10048
|
|
456
|
+
synth_ai/api/train/configs/__init__.py,sha256=Fl-bDFw8i42O3HkhMnGsGlqm7uLYOlESxrXUWheUQ24,1442
|
|
457
|
+
synth_ai/api/train/configs/prompt_learning.py,sha256=a_kgVF-tVDqgRZcYlKjp0A1q3eKXwHMiZ1BXwhv-j-E,17921
|
|
458
|
+
synth_ai/api/train/configs/rl.py,sha256=_IBFDKW7pMA0n52tt9Yb6qTnBElphblCYyjG5lgiqAY,6387
|
|
403
459
|
synth_ai/api/train/configs/sft.py,sha256=zyKPZ8Zd4EDl5ktwdo1ZM3qdh56msfVCZcCX4dMdScE,2965
|
|
404
460
|
synth_ai/api/train/configs/shared.py,sha256=UeNRmfyCwV7X7xfrthfhIbD4h3RLoo9an6VvI7QJfeE,2579
|
|
405
461
|
synth_ai/auth/credentials.py,sha256=EEvb8i7CSb_cOWI4xcQbEPADpTeOvbHHHW5qffDqF2A,4446
|
|
406
|
-
synth_ai/
|
|
462
|
+
synth_ai/baseline/__init__.py,sha256=oNPEexqDtZgsBZyn8-jbd6Ohb1gplw5xGGfFDLp4ZRI,587
|
|
463
|
+
synth_ai/baseline/config.py,sha256=TGabpRcJBJYv1HDS1Xatp7F-9MKfOAChjnnaL6Vr40o,6860
|
|
464
|
+
synth_ai/baseline/discovery.py,sha256=Z9RgW2NXKXZ5L5qrUU34MeOGCtFf3-BdfDv7zpO9C_s,7097
|
|
465
|
+
synth_ai/baseline/execution.py,sha256=XCEJImN2Ytte6cLtSgdO54iQ6a53E18KVTHRscDJD6A,4776
|
|
466
|
+
synth_ai/cli/__init__.py,sha256=t7atsLQb79GUH_YK3RXx27xlK1Hxq5BgZdAooWlm_rM,5552
|
|
467
|
+
synth_ai/cli/__main__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
407
468
|
synth_ai/cli/_modal_wrapper.py,sha256=bJJtpT7sOCRptCSDyZXDxa24xyrozVekmaJKYQ_f4LQ,789
|
|
408
469
|
synth_ai/cli/_storage.py,sha256=QNLsJKr3371Yw1TkOjR-9wX50CR1KlULZkWv6mhXnrE,760
|
|
409
470
|
synth_ai/cli/_typer_patch.py,sha256=k6O9eiLgG0LJzoYXiA7_nNzLUj4jDIju1hEHp1QyhZk,1526
|
|
410
471
|
synth_ai/cli/_validate_task_app.py,sha256=ouXlBnolXZ1W28hHrYK88tb28p4s1g3LLIB6tJd9Src,954
|
|
411
472
|
synth_ai/cli/balance.py,sha256=PKzAqZ9xrhGO3SUzcaGu65M2QtPJPmi9hnWHrp8NC4M,8520
|
|
412
473
|
synth_ai/cli/calc.py,sha256=JQtWrDG5fn7UxnNCZwclfxYiPYjct_nB0yOyKifdW4w,2738
|
|
413
|
-
synth_ai/cli/
|
|
414
|
-
synth_ai/cli/
|
|
474
|
+
synth_ai/cli/claude.py,sha256=VMa1XaUpH2Q_COx8a1f2MpDvd75mySL9Fm4UwxpZwqk,2042
|
|
475
|
+
synth_ai/cli/codex.py,sha256=tphQZibBSy7mIwk3BLZW3lGe5W4LaOc13pwe3yQgftg,2494
|
|
476
|
+
synth_ai/cli/demo.py,sha256=icU3Co8JM1NbHJPIEw0soy3MtingkJCoIWFUqz_GhjM,1018
|
|
477
|
+
synth_ai/cli/deploy.py,sha256=Js81vDjyNvzCYqW2wOC7vpxlPjVNDCuAqHSGHOwKOV8,4289
|
|
478
|
+
synth_ai/cli/legacy_root_backup.py,sha256=xJNqx7qYfYNJjNYEpYx3ArQMQ-mSH83dnItr8QXxxkA,16580
|
|
479
|
+
synth_ai/cli/opencode.py,sha256=5JDAAjMacK61qlaWvcUSOSc8EH6PmIxaf19PZmWsy74,3285
|
|
415
480
|
synth_ai/cli/recent.py,sha256=uL6LqBm8c60yp0kSVd-n-D_KIqoTMttWvXsrh2Mvgvw,4416
|
|
416
481
|
synth_ai/cli/rl_demo.py,sha256=rcFTBHU1wtp4pg4g2mgv9aDc5Z10N35J0xXM1jPZ2Ac,8124
|
|
417
|
-
synth_ai/cli/root.py,sha256=
|
|
482
|
+
synth_ai/cli/root.py,sha256=m39EMS-Xs9Xy7esKSXZcSx0ogHd1hN4hokOTl2PZH8I,10872
|
|
418
483
|
synth_ai/cli/setup.py,sha256=--2i7Xdw44uGs6aWP5HUml5nHaW3v2hcSQYn_GdrSZk,490
|
|
419
484
|
synth_ai/cli/status.py,sha256=Bx817ZA__gqbTmsB4eWqhoA_seiBRqiEJ6HhYDyADJU,356
|
|
420
|
-
synth_ai/cli/task_app_deploy.py,sha256
|
|
485
|
+
synth_ai/cli/task_app_deploy.py,sha256=eCkz7Vae3BWoW0j2tL0A16k1pN_OKPXq5mTgklT_pLc,215
|
|
421
486
|
synth_ai/cli/task_app_list.py,sha256=h3hMNBI7huJtx8oivgQvZWaOB6XOHRZiJIEbsl7_1Z4,575
|
|
422
487
|
synth_ai/cli/task_app_modal_serve.py,sha256=2PaEjNpntLuh-Z2uuZJhDCCVAO6X7zarCiwKPu4KlX8,402
|
|
423
488
|
synth_ai/cli/task_app_serve.py,sha256=RFOP_OMvL_2gMOiJXRHr8-iQkwsLaid-W3A315oU7V0,407
|
|
424
|
-
synth_ai/cli/task_apps.py,sha256=
|
|
489
|
+
synth_ai/cli/task_apps.py,sha256=JAcEuh8tMWCuzbeRKeO-U7nb1G8TnaQp1lb9gFGCcrk,115229
|
|
425
490
|
synth_ai/cli/traces.py,sha256=tyt2OUcREK82an9hc2Uq3H-xn0vWuTf_Pirt0CWkodg,6617
|
|
426
491
|
synth_ai/cli/train.py,sha256=Rp_SnljXCcjT5eis4LR6WNwW2omaHy_YbVo22Vy-zwk,146
|
|
427
492
|
synth_ai/cli/turso.py,sha256=y9aHehGA1VvaWkoZyBhu5fLulWUT65powrpvvVp7gpA,2301
|
|
428
493
|
synth_ai/cli/watch.py,sha256=Wi5H2YdV3gsEVMd5YIte2LHMweWqLkGpsK3aopdjCQE,17481
|
|
429
|
-
synth_ai/cli/commands/__init__.py,sha256=
|
|
494
|
+
synth_ai/cli/commands/__init__.py,sha256=vLSvCU2T9YAuBV4Xp8byLJhucxuSzjT8Daa2cbxqYPU,348
|
|
495
|
+
synth_ai/cli/commands/baseline/__init__.py,sha256=s0s_62k43AENduzE1S3Zzl0s56F-zSHnu1X3vH83y8c,236
|
|
496
|
+
synth_ai/cli/commands/baseline/core.py,sha256=JFyTezmGbnaUEVwDVg2jJcRlPx0wavHMrBbB5dk_Fq8,23068
|
|
497
|
+
synth_ai/cli/commands/baseline/list.py,sha256=aSDbAbKrKAYW7umrPGEre5xENJovoP53MEWBxksb8Lk,2933
|
|
430
498
|
synth_ai/cli/commands/demo/__init__.py,sha256=IbeWY9d9y9p92LxFM57Sy1N1KVVYZpw68EwiAsUyIt8,108
|
|
431
499
|
synth_ai/cli/commands/demo/core.py,sha256=CLTa14nqh94Oair8odWMos81veufZ_BmN3kDQ2C4YQc,4977
|
|
432
|
-
synth_ai/cli/commands/deploy/__init__.py,sha256=wKU7whew5ijKmZptCOl7EbJlLUMzEXt8g8RsxWpDmXA,491
|
|
433
|
-
synth_ai/cli/commands/deploy/core.py,sha256=UTG-oyP-8m2CjrC7hfI0ohCf-lEHBeQPQ43CpAM2cUw,21918
|
|
434
|
-
synth_ai/cli/commands/deploy/errors.py,sha256=plfA_yfWanCSFeJAp-SNfw46mZQQDrKbGI259Psemwc,1780
|
|
435
|
-
synth_ai/cli/commands/deploy/validation.py,sha256=DV_nvr1k_4B8dCgcdtFNu6pjHSftJd6UJm4mfwEpvd0,318
|
|
436
500
|
synth_ai/cli/commands/eval/__init__.py,sha256=nV0E_WJS_TKjKEIOkrKqJQ_Gr5wtuW4OK3R8nIAMTNw,426
|
|
437
|
-
synth_ai/cli/commands/eval/core.py,sha256=
|
|
501
|
+
synth_ai/cli/commands/eval/core.py,sha256=jb82j8-7gzbUdcQPex-vFcpJOl0IOwmO_c4V-I-mGco,47621
|
|
438
502
|
synth_ai/cli/commands/eval/errors.py,sha256=YHzU8WPY9Ys1U4H_QwKvRCAcr5MzODj-yK0pQRfoB1s,1628
|
|
439
503
|
synth_ai/cli/commands/eval/validation.py,sha256=YvrlP-U_otpvPUXXktg4QJ8tlf7vRtQ18jPnwx6l-Jg,4060
|
|
440
504
|
synth_ai/cli/commands/filter/__init__.py,sha256=fPU74tFIgsndea2nJ25lKrzBS_JPfLi5M4OvLyqHsOg,260
|
|
441
|
-
synth_ai/cli/commands/filter/core.py,sha256=
|
|
505
|
+
synth_ai/cli/commands/filter/core.py,sha256=77wcUH4JpBdI45MYTx1OdklhQdK30HX_uydrP55BShE,16376
|
|
442
506
|
synth_ai/cli/commands/filter/errors.py,sha256=gGpZj2AhDVBco_d10ldHN3ugRpTD7zGqKD87TI2nBxc,1099
|
|
443
507
|
synth_ai/cli/commands/filter/validation.py,sha256=vvK0h_fRmggnSUE6TS5mPsT3jY6DAdlM_QzQgWeeGA4,2611
|
|
444
508
|
synth_ai/cli/commands/help/__init__.py,sha256=ZueoiCEo7veYZgFSmIlFbKI6nq--yHiiG-7M6j30Ch4,5013
|
|
445
|
-
synth_ai/cli/commands/help/core.py,sha256=
|
|
509
|
+
synth_ai/cli/commands/help/core.py,sha256=q4vwdagxeVoxHaADGikiEQBq1RDSI147Akxi6IAJ4e0,2090
|
|
510
|
+
synth_ai/cli/commands/smoke/__init__.py,sha256=gE7gaBh19yTRyTRgn5ztk7MmdsIoLdU8bkFxRvHNvJA,109
|
|
511
|
+
synth_ai/cli/commands/smoke/core.py,sha256=tPvPLL_WM6dqlXi4LkdA5Lwj35haVDWtjagjr_aODVc,61986
|
|
446
512
|
synth_ai/cli/commands/status/__init__.py,sha256=KLF5c0CiwFrtALSFBGZwd6mWoXqQQwrTJiGJrCB_pxo,2288
|
|
447
513
|
synth_ai/cli/commands/status/client.py,sha256=0JX8XWegoudpGroxhsFWUqozrblCjx6tHSXfmUoJD6A,6694
|
|
448
514
|
synth_ai/cli/commands/status/config.py,sha256=FuAPhRwbw46EYyOYU6vCglv-EtapeaHIdrynclsOZ88,2947
|
|
@@ -453,18 +519,17 @@ synth_ai/cli/commands/status/subcommands/__init__.py,sha256=S0tYeYc6vqBgPdTgpwU-
|
|
|
453
519
|
synth_ai/cli/commands/status/subcommands/files.py,sha256=N2gee2WX8wVC2Q-QKaJYqpxRECvp0EvewZYPlOwQGl0,2296
|
|
454
520
|
synth_ai/cli/commands/status/subcommands/jobs.py,sha256=lLOmHPxHfzZR-sBXjIYZ9Hrk1FgdkG-4-xGpqZtHYgk,10028
|
|
455
521
|
synth_ai/cli/commands/status/subcommands/models.py,sha256=FuR8Ykc0ikGRPy5_pD-TX6r9mGHYb9fR8IaANakYsHA,2389
|
|
522
|
+
synth_ai/cli/commands/status/subcommands/pricing.py,sha256=ahkadkSYzWF5xNLA_4dGK8Zz01QdimirJBnkW3im_O8,785
|
|
456
523
|
synth_ai/cli/commands/status/subcommands/runs.py,sha256=mC3jmyhXtY33YXTnY58RD4FPRdk8Xb8swmYrGJ5-sIg,2455
|
|
457
524
|
synth_ai/cli/commands/status/subcommands/summary.py,sha256=2LrJyNdyD9y3jqN5lmWl2MNvkKxzkuYTn_niXK6Kaeg,1567
|
|
525
|
+
synth_ai/cli/commands/status/subcommands/usage.py,sha256=DmmMu_bfZ8ZdjSGAPeFWQrPrbiIAl092_Rs8--fyeuc,9084
|
|
458
526
|
synth_ai/cli/commands/train/__init__.py,sha256=9zGDNfVkRpAMddsvB3qS-NILIlTh1dYRVUe2dTZSPDY,1242
|
|
459
527
|
synth_ai/cli/commands/train/core.py,sha256=T7KijlTIaZFwnGHCKzsT1owbnbw4RcY-e9UKyD4MgK0,496
|
|
460
528
|
synth_ai/cli/commands/train/errors.py,sha256=OJUYiOhzDGchOd5-Re36c_OHfb-9HgnuKRrF3AwzEU0,2743
|
|
461
|
-
synth_ai/cli/commands/train/judge_schemas.py,sha256=
|
|
462
|
-
synth_ai/cli/commands/train/judge_validation.py,sha256=
|
|
463
|
-
synth_ai/cli/commands/train/validation.py,sha256=
|
|
464
|
-
synth_ai/cli/deploy/__init__.py,sha256=
|
|
465
|
-
synth_ai/cli/deploy/core.py,sha256=lXN0fZ2DlLA9qCOQzp-kBytcfno5PcirjfVknfZkreM,141
|
|
466
|
-
synth_ai/cli/deploy/errors.py,sha256=xGqS4z9lxuEH7fAqxFk3csEcsVkMr-ZZfT1_f_gmabc,553
|
|
467
|
-
synth_ai/cli/deploy/validation.py,sha256=pc26mouEEikX3A0_tA20Q5s4hpZsdBJj5dpf-kDaZdI,151
|
|
529
|
+
synth_ai/cli/commands/train/judge_schemas.py,sha256=ZTbiVboXK3tG3aVrt8P5Ytw8BOg5Ia-bSLnVSe0olcc,6419
|
|
530
|
+
synth_ai/cli/commands/train/judge_validation.py,sha256=ga6bdOrpfsimOVAL7cRPIHJd4BbstXb4eMxDlt2YIAU,9935
|
|
531
|
+
synth_ai/cli/commands/train/validation.py,sha256=ddIbOk_iWjiUbna9Nbt0uldPs29oJTXGS9KWslGI230,13627
|
|
532
|
+
synth_ai/cli/deploy/__init__.py,sha256=2V1vy7MI5iEIXNndnCgZXC0z_3VD0RqPujWhMWgcycU,1650
|
|
468
533
|
synth_ai/cli/eval/__init__.py,sha256=Vmxcx-CZssuaPfnHIz3vzBFq6h8bGEj_QFwIhZW4xeU,885
|
|
469
534
|
synth_ai/cli/eval/core.py,sha256=v1W3KeA5Ak0Muvu3px4mRwsETKXrUEy_PFq9u7d9304,139
|
|
470
535
|
synth_ai/cli/eval/errors.py,sha256=dqwtEuFSmU90bR7s3AfswgD3gpsVYvi7jyp9evX3axs,763
|
|
@@ -541,12 +606,12 @@ synth_ai/environments/examples/crafter_classic/__init__.py,sha256=8g6e991LpiUOkj
|
|
|
541
606
|
synth_ai/environments/examples/crafter_classic/config_logging.py,sha256=Eqq35s0lPAmBiU0neZM6vmHPct15gp9TwS3vogrNziM,3794
|
|
542
607
|
synth_ai/environments/examples/crafter_classic/debug_translation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
608
|
synth_ai/environments/examples/crafter_classic/engine.py,sha256=i13hDJe-6BXWFqXAsdjNCrfjU_HpwWLE5-4KNT-VSbs,25257
|
|
544
|
-
synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py,sha256=
|
|
545
|
-
synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py,sha256=
|
|
609
|
+
synth_ai/environments/examples/crafter_classic/engine_deterministic_patch.py,sha256=DqZw-jsiq6HbGz0nHS-ZXwklr6cEx2v6weTBkVEd59k,2883
|
|
610
|
+
synth_ai/environments/examples/crafter_classic/engine_serialization_patch_v3.py,sha256=1c_qwPnAlDZefLStW8-Yhnt3DAc_R8LbZ9vdrVIvghE,11203
|
|
546
611
|
synth_ai/environments/examples/crafter_classic/environment.py,sha256=FVnpCqBhmfgvc8R0LVkd-o4bWj96THkJRrHhIVwe9C4,22288
|
|
547
612
|
synth_ai/environments/examples/crafter_classic/taskset.py,sha256=9uZpQOllUqMupIBwlz2Jv38hBYqY09czi1LOonCTk5c,9843
|
|
548
613
|
synth_ai/environments/examples/crafter_classic/trace_hooks_v3.py,sha256=lka-3tNuYsvYQ6acEvJjvBPkylbqgCzuCd2QMOjNCRs,7194
|
|
549
|
-
synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py,sha256=
|
|
614
|
+
synth_ai/environments/examples/crafter_classic/world_config_patch_simple.py,sha256=1_dyjFi2wdkxVYddXo8SAw795po-GnNVheAIOsyOkKQ,10210
|
|
550
615
|
synth_ai/environments/examples/crafter_classic/agent_demos/analyze_semantic_words_markdown.py,sha256=yLW0lX3vqkhN3CsdpHMKL3rIxuglbGx2Q3_xkqy_NBQ,9151
|
|
551
616
|
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_comprehensive_evaluation.py,sha256=bAOMzobuAtpNrejkaNBZ8SYKxdkPHQPaaTx7KTqTC0E,1657
|
|
552
617
|
synth_ai/environments/examples/crafter_classic/agent_demos/crafter_evaluation_browser.py,sha256=UO5pP5xK91l_WuP9LfSsVK5wi_hJ4n-ekRvuMGv4MVw,4822
|
|
@@ -748,7 +813,7 @@ synth_ai/evals/types.py,sha256=vpg2u4vLi7EqXJYgMM44TPXKKQKDxkcK3_KzYeHU6l0,930
|
|
|
748
813
|
synth_ai/inference/__init__.py,sha256=5xwgFMKRfbLC7TX3lwMqGOZ8HHOEnXwlDqV_FLjsd5A,74
|
|
749
814
|
synth_ai/inference/client.py,sha256=zz39eLuK_CJ151Lxy4SdNfUn-GWTT5inJLgmP2snhqQ,1269
|
|
750
815
|
synth_ai/jobs/client.py,sha256=9I7LA-zmfHvidnSrw4NkU9owor_9vgSb5UICXYZUCtk,10440
|
|
751
|
-
synth_ai/learning/__init__.py,sha256=
|
|
816
|
+
synth_ai/learning/__init__.py,sha256=GmDrXLuI3CpMI9-jIFQW0NnAPN7d-FCcxkkuJWIu_bE,1810
|
|
752
817
|
synth_ai/learning/algorithms.py,sha256=N2sXJ-U5QfvmSCtB2KUkTMyg46_pibYXHdIrYSKGyxA,342
|
|
753
818
|
synth_ai/learning/client.py,sha256=zQs7wH3yzSLyyUjQz42xo7d8tiVAZm2NYCYIPrXmCwE,9533
|
|
754
819
|
synth_ai/learning/config.py,sha256=-mh2thnHfuwivKnEt4VYCfPPrgwpQvY9QeMg-7HW1H4,98
|
|
@@ -758,6 +823,8 @@ synth_ai/learning/ft_client.py,sha256=CqZh195n_QILnbnuGoCcloweTunhxPzWJVDPFFykek
|
|
|
758
823
|
synth_ai/learning/gateway.py,sha256=8plVu9V_0PTt1ZI6awuh9wSFT4BqS-mLshaN77wGyDk,31
|
|
759
824
|
synth_ai/learning/health.py,sha256=Cjl1Q6duMfbjnmdBXKFoKts3CxVJF8EbeWspQNkpvkA,1577
|
|
760
825
|
synth_ai/learning/jobs.py,sha256=f1jTXUOUFoEKmJZnQla9dqGJ-GYBlYtlNZFONIYEJ_o,9248
|
|
826
|
+
synth_ai/learning/prompt_learning_client.py,sha256=yFGigo-E40nFepkxIQ_wvIl3mrWUULCPrCMVuSMRB9U,10364
|
|
827
|
+
synth_ai/learning/prompt_learning_types.py,sha256=tJxK355yBheAtkStsCyJpOiJs4EiKTr2_Uwgl4HGA0Q,5733
|
|
761
828
|
synth_ai/learning/rl_client.py,sha256=zJfY3M-9i45lfStN7_ptk8XUAM8z7MUrk_NN4OIBqkA,92
|
|
762
829
|
synth_ai/learning/sse.py,sha256=E95hgsHK27hxyl4xcgGH_6hmn-GHk3qhgcI8H7_-7c4,1796
|
|
763
830
|
synth_ai/learning/validators.py,sha256=SRMUkJx-XqEkFcHT5e0EmW292VATPBNJQh3HNnqsgKk,1636
|
|
@@ -772,15 +839,17 @@ synth_ai/learning/sft/client.py,sha256=qbRCkC7y_MAJ4ioYwtjQ7pvUZzfRUTMJHXeKf4l59
|
|
|
772
839
|
synth_ai/learning/sft/config.py,sha256=pdUvwmhYMSIrFTD7-a9MglPwHevP4OSed9TuOzdjkOc,9791
|
|
773
840
|
synth_ai/learning/sft/data.py,sha256=oaJr79u0I-hzngE2G-nBUAzrl6rbnaCo7ilMTy7NX6k,23590
|
|
774
841
|
synth_ai/lm/__init__.py,sha256=uXZFG6zFox_oV6FM7cJQxmnCNUBBa50ZuhdXCNxx0Lo,875
|
|
842
|
+
synth_ai/pricing/__init__.py,sha256=F8b96UthcJukQQDmyCGmYarXzrt_YwgxDe11DN5wfZI,31
|
|
843
|
+
synth_ai/pricing/model_pricing.py,sha256=tebwxA_zT9HqRN-lmKlufesto2EEoIM7rtMhUeN_SDw,2746
|
|
775
844
|
synth_ai/streaming/__init__.py,sha256=E0zjFfW28YpwSdAdW1gkkJd_WRMUi27Ff6qhJqZTP5M,609
|
|
776
845
|
synth_ai/streaming/config.py,sha256=lx2Zn0oBG5cuWgXNz2RoBMmI_nOrnuT1px7Zy2eQ8Jw,3580
|
|
777
|
-
synth_ai/streaming/handlers.py,sha256=
|
|
778
|
-
synth_ai/streaming/streamer.py,sha256=
|
|
846
|
+
synth_ai/streaming/handlers.py,sha256=GnjL3cX-QlOIXlabLaEdUhhJhqINGbqht2ObqJoWPn0,18721
|
|
847
|
+
synth_ai/streaming/streamer.py,sha256=D9qd-0LJt6OF0wrQbrc7vFftlCK5_rehUMaK-zxTpeE,12434
|
|
779
848
|
synth_ai/streaming/types.py,sha256=OXjWgpOox13_azIbrHU80Wi6cWe2q3qeQKyvjfWg12Y,3014
|
|
780
849
|
synth_ai/task/__init__.py,sha256=TepuxwB9ogjPjFLvP0t8BKnsTGPwBtoSNrIdZVKHbAI,2833
|
|
781
850
|
synth_ai/task/auth.py,sha256=IUD3DcU-43qczWV9sSccXsjDOkZe8sJHmcQtues1YWQ,5652
|
|
782
851
|
synth_ai/task/client.py,sha256=ccbcYRaZZ5MBMcfFdA8x2t7PjXEdvKuFmwRxrRl_8vk,5741
|
|
783
|
-
synth_ai/task/config.py,sha256=
|
|
852
|
+
synth_ai/task/config.py,sha256=hZMMeCQj1sgrXWmPfqcIU-h2bvE7A4qkXXCR7eme8Ac,8781
|
|
784
853
|
synth_ai/task/contracts.py,sha256=XBVHxdqTY8H-JBI0FGbVJJUcMrQy9LgmGFm97Udo-Xk,7251
|
|
785
854
|
synth_ai/task/datasets.py,sha256=5wqvTaDm-A4F6shPMXy5NMZim2_OGbMCSQBuuktn2qI,3968
|
|
786
855
|
synth_ai/task/errors.py,sha256=BOdWz0fgJVprx2-mGRJTnTilAGHmc4WRpUVFA7eLrlc,1524
|
|
@@ -790,10 +859,10 @@ synth_ai/task/proxy.py,sha256=6klwBH2PKUKxqmUc-I2hS9PQoL3mZTW3BP925rW7c4s,8921
|
|
|
790
859
|
synth_ai/task/rubrics.py,sha256=_qqAvl1NFGW6nJlzmI3UwjxuvWbOQeLcMwrZpmpMQGk,7180
|
|
791
860
|
synth_ai/task/server.py,sha256=2NwqAkQuWzs89wQtlEsOBg6rnBRWE1z6UIKeN0PtG08,16101
|
|
792
861
|
synth_ai/task/trace_correlation_helpers.py,sha256=M8mbmo2b-o7xMMnkrOIuO6rNjzSFo_W2vAWnWVxMy-U,11721
|
|
793
|
-
synth_ai/task/tracing_utils.py,sha256=
|
|
794
|
-
synth_ai/task/validators.py,sha256=
|
|
862
|
+
synth_ai/task/tracing_utils.py,sha256=dqpgCOS6yHONRiTOQ9oeayRHFeZsxdQqn0zuHtG4E7o,3097
|
|
863
|
+
synth_ai/task/validators.py,sha256=U6btTUI-1Q3LBAcVJrryMh0Xle2hFeA93xv7C2aNS6Q,18628
|
|
795
864
|
synth_ai/task/vendors.py,sha256=a5t_1HGwPnPUoPMbzNB87jOTCyA4S7W7eIgJ-E4Gfew,1626
|
|
796
|
-
synth_ai/task/apps/__init__.py,sha256=
|
|
865
|
+
synth_ai/task/apps/__init__.py,sha256=wObHWT3c2wSMrh0SuZ34jnzb8asOUfuDwcIMef5IpdM,4275
|
|
797
866
|
synth_ai/task/rubrics/__init__.py,sha256=i4xxA7Jp70xoWxV3D9faB8nfJU4W54WLhjj3GxW1Wz0,1367
|
|
798
867
|
synth_ai/task/rubrics/loaders.py,sha256=koYF5VTP66MfvjMUA27bhqE7i0U6SauSLUobSCKtUX4,5268
|
|
799
868
|
synth_ai/task/rubrics/models.py,sha256=wCwv8DzVOZ724yoGi-fduFWAEglR1tg2H3ct_4SdVks,1703
|
|
@@ -801,9 +870,9 @@ synth_ai/task/rubrics/scoring.py,sha256=eea5KXnlJWUASFf2kYXClbZEW48SGv0mlvvvX-26
|
|
|
801
870
|
synth_ai/task/rubrics/strict.py,sha256=kKj9nIeuNMjptxrFoJd-J0sdEQtZ2Q1pIH5NyRJlAl8,4346
|
|
802
871
|
synth_ai/tracing_v3/__init__.py,sha256=DRhOO-AFtCYSrQ_S-2gLTDCBZUVwy-NKgdAr9uh2K2A,3307
|
|
803
872
|
synth_ai/tracing_v3/abstractions.py,sha256=uja-8UMh-RWfpVBjsZwNw1UhNMpgsy4Zmd_pEq_qXjI,12865
|
|
804
|
-
synth_ai/tracing_v3/config.py,sha256=
|
|
805
|
-
synth_ai/tracing_v3/constants.py,sha256
|
|
806
|
-
synth_ai/tracing_v3/db_config.py,sha256=
|
|
873
|
+
synth_ai/tracing_v3/config.py,sha256=quDAQzhoCsUdKCv1acWb3BsFqQuuhjx4xqq87-RVLCw,8764
|
|
874
|
+
synth_ai/tracing_v3/constants.py,sha256=hPsHWSfRAQKWo5p0ULypuvya0Uta76c5tLgnW8htCNE,714
|
|
875
|
+
synth_ai/tracing_v3/db_config.py,sha256=9Oavp3WOe_Bop2GjTrxps6c3zszz4LIsUAmY71TVKVg,6535
|
|
807
876
|
synth_ai/tracing_v3/decorators.py,sha256=lJ6vJi1horv5H9nmXeh9-BY0LZotet5lihVCMBPnsqA,14939
|
|
808
877
|
synth_ai/tracing_v3/hooks.py,sha256=QUfVvE6H2HIkP-dED1ctBpxzJXpaM_7UU-XaU6043W4,7997
|
|
809
878
|
synth_ai/tracing_v3/llm_call_record_helpers.py,sha256=zZ0i6SB7l6WYud9mRLBTyZ4BJCgMmSDyhAZOg81T3k4,13633
|
|
@@ -817,21 +886,25 @@ synth_ai/tracing_v3/utils.py,sha256=JMdWFqU_JlQbA4Eb9KIo45TdZeNmOlyu3-tOFpZUj8M,
|
|
|
817
886
|
synth_ai/tracing_v3/examples/basic_usage.py,sha256=gSIWxeCYNe5WL38FjCaOCv0RvmxZ8SDiPWhA1-8XAeg,7342
|
|
818
887
|
synth_ai/tracing_v3/storage/__init__.py,sha256=VPjBh180bcSPz1HsbqaqfnvguwqwomaEYKxkrhfGABY,332
|
|
819
888
|
synth_ai/tracing_v3/storage/base.py,sha256=Ou-J_IINQqG2GgQfYcF3FIaAteoEfZZzmnTsDisa_II,5995
|
|
820
|
-
synth_ai/tracing_v3/storage/config.py,sha256=
|
|
889
|
+
synth_ai/tracing_v3/storage/config.py,sha256=odl5QRmJ6isrDgPkhWL1X9ugk7iaI-BkbvaG9q2cq-k,4013
|
|
821
890
|
synth_ai/tracing_v3/storage/exceptions.py,sha256=zqfsjb4r8qcZGlId0h9-x0RpJq2_DRDfdlzW6_KIRCw,708
|
|
822
|
-
synth_ai/tracing_v3/storage/factory.py,sha256=
|
|
891
|
+
synth_ai/tracing_v3/storage/factory.py,sha256=5ZvbOcm5-zNhjCrbobfnf6iLMvTRSwf3xXHdAUA7K0s,1352
|
|
823
892
|
synth_ai/tracing_v3/storage/types.py,sha256=LevN8M12ilZ0EaiQ6Y3yONSMuLGEhSKNt0ir5wbVbek,613
|
|
824
893
|
synth_ai/tracing_v3/storage/utils.py,sha256=yDjy6Uoz9PXYk-bGWVxG31MfGN3ncvea0R591lPxJ70,6461
|
|
825
894
|
synth_ai/tracing_v3/turso/__init__.py,sha256=hcwysYjh1_ckqrn2DW4QSc2l0jdfN-INrfWciOsTqdI,286
|
|
826
|
-
synth_ai/tracing_v3/turso/daemon.py,sha256=
|
|
895
|
+
synth_ai/tracing_v3/turso/daemon.py,sha256=yHZSw0SI1nMbrbflp9ZntOhF7uaAeQHVFcgkr75g1rk,8608
|
|
827
896
|
synth_ai/tracing_v3/turso/models.py,sha256=BZg4bo-V9enr8R5pJ9mOTsfb6QdrULjj_jgMgnwzeqM,16362
|
|
828
|
-
synth_ai/tracing_v3/turso/native_manager.py,sha256=
|
|
829
|
-
synth_ai/utils/__init__.py,sha256=
|
|
897
|
+
synth_ai/tracing_v3/turso/native_manager.py,sha256=jeOpTc1J5VL_36X4K5A9Mjt7NyvMcNEEgMFQz2gar9A,48844
|
|
898
|
+
synth_ai/utils/__init__.py,sha256=jN69iHFYOWuqPXRpSIVkU98U9hRh4NrjKdVJwHqHDxY,3523
|
|
899
|
+
synth_ai/utils/agents.py,sha256=aZD3MwAVEqVNgCOh9v7ePbFniflVdKI811zDcC9OtIo,2582
|
|
830
900
|
synth_ai/utils/base_url.py,sha256=gewzRh6A3lJipSSOW906lBPB8x0V0iBi-Ho3m8XftXw,2809
|
|
831
|
-
synth_ai/utils/
|
|
832
|
-
synth_ai/utils/
|
|
901
|
+
synth_ai/utils/bin.py,sha256=CuH0MI5jIyk6pD9pnR1PfgHCFFdqPcGG1SQprV_8-bU,1077
|
|
902
|
+
synth_ai/utils/cli.py,sha256=tVgzByBtUE7C886TiY_Dn2Q5Df420ntSzCzcC4RQS6A,8852
|
|
903
|
+
synth_ai/utils/env.py,sha256=JX4-npr4eW9C-cfQ0PXY1jTg1xA5U72sMyeACWCNpS8,9414
|
|
833
904
|
synth_ai/utils/http.py,sha256=S1373xz1MNk-sTbCbX1ZNvILp_MOyefvg4vTkYgCVCY,6281
|
|
834
|
-
synth_ai/utils/
|
|
905
|
+
synth_ai/utils/json.py,sha256=cplc_iAeQh3bbb6FoAZNCCDMgz8vVg7q9MSybryCiVg,1793
|
|
906
|
+
synth_ai/utils/modal.py,sha256=lYmQSKFIApd9aHuc2mQBgYUIoWPFZuhWXsPPqc-FaDI,21518
|
|
907
|
+
synth_ai/utils/paths.py,sha256=QMkeMbuRWO4gl--ndOIlQBn9A7ym9N9nz5tFlLzo66s,1280
|
|
835
908
|
synth_ai/utils/process.py,sha256=u4IEIH8VIF-mwjdzDZL4jQrrFuV7jvSmMCV4o9mAyyE,5875
|
|
836
909
|
synth_ai/utils/prompts.py,sha256=TunI29ECroh9NI_U4Za2GknRnFdcric8hkRzSUnkwX8,1328
|
|
837
910
|
synth_ai/utils/sqld.py,sha256=cHOPGywLTMdQDqURIxdrNoXWFUTdZrikDo7c1oyIXP0,3908
|
|
@@ -839,6 +912,7 @@ synth_ai/utils/task_app_discovery.py,sha256=HLFarfXf6J5TQcgtHcUAfosLG-387pzsjs8G
|
|
|
839
912
|
synth_ai/utils/task_app_env.py,sha256=6Mx7V0_7DiAQc9U0ZVSspMWA0-H4FenlrSti6tYT70o,7409
|
|
840
913
|
synth_ai/utils/task_app_state.py,sha256=iGXattKGilv6UQIBlLkd6d62XXxiAExUzFJ3YqLd0f8,9396
|
|
841
914
|
synth_ai/utils/user_config.py,sha256=h7pytVtwZD33QAdPRAtEofjIrBMHOph867gaPqFda1Q,3955
|
|
915
|
+
synth_ai/utils/uvicorn.py,sha256=IJAyK_aDs8py6pkS_ZElHZ4DuqcN9nCsp-Ot8x4BPEM,3670
|
|
842
916
|
synth_ai/v0/api/__init__.py,sha256=wgz7K2rwVmxTRx0vy5abWclC2NTVjsM1buYQxXCnF3k,197
|
|
843
917
|
synth_ai/v0/api/models/__init__.py,sha256=-VNJS0rSmrWaXnb2RkaBoDXc_9roO7ZgWVBe1vGKz-8,167
|
|
844
918
|
synth_ai/v0/api/models/supported.py,sha256=aQCUi9xPn1Nt5Xd7yN42RyZVppsYaUdCADFoew_NhoE,246
|
|
@@ -941,9 +1015,9 @@ synth_ai/v0/tracing_v3/abstractions.py,sha256=7IHKkzicFEJ4UXJbodK11Pi8YYq7Vt8Ev_
|
|
|
941
1015
|
synth_ai/v0/tracing_v3/decorators.py,sha256=fRyVBKEbxAPZoDsBH7t8OVLVixvgD_Lw_1ONF1TuZxU,108
|
|
942
1016
|
synth_ai/v0/tracing_v3/llm_call_record_helpers.py,sha256=JYSpGtW-RC-DnhUIPdVADNF3rK5x8Tl8DOymbmRI99I,121
|
|
943
1017
|
synth_ai/v0/tracing_v3/session_tracer.py,sha256=TSUzb_fUUlpwOqFE1X-Fs14nG2CNe7MZLKOvH7cV2kE,112
|
|
944
|
-
synth_ai-0.2.
|
|
945
|
-
synth_ai-0.2.
|
|
946
|
-
synth_ai-0.2.
|
|
947
|
-
synth_ai-0.2.
|
|
948
|
-
synth_ai-0.2.
|
|
949
|
-
synth_ai-0.2.
|
|
1018
|
+
synth_ai-0.2.19.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
|
|
1019
|
+
synth_ai-0.2.19.dist-info/METADATA,sha256=8FLnTUwg23s9Z9UlydEqM08__ahcH_CxjvW2aei3jc0,9361
|
|
1020
|
+
synth_ai-0.2.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1021
|
+
synth_ai-0.2.19.dist-info/entry_points.txt,sha256=GSFXaJreq4PJXbixkUI0GHZwGh2dZDG5pYaoVmqr_KE,46
|
|
1022
|
+
synth_ai-0.2.19.dist-info/top_level.txt,sha256=1moNHgctEUJ3F3eH3V-7FSMb2iTTze1V13dj1R04oUY,18
|
|
1023
|
+
synth_ai-0.2.19.dist-info/RECORD,,
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
|
|
3
|
-
from .core import (
|
|
4
|
-
command,
|
|
5
|
-
get_command,
|
|
6
|
-
modal_serve_command,
|
|
7
|
-
register_task_app_commands,
|
|
8
|
-
run_modal_runtime,
|
|
9
|
-
run_uvicorn_runtime,
|
|
10
|
-
)
|
|
11
|
-
from .errors import DeployCliError
|
|
12
|
-
from .validation import validate_deploy_options
|
|
13
|
-
|
|
14
|
-
__all__ = [
|
|
15
|
-
"command",
|
|
16
|
-
"get_command",
|
|
17
|
-
"modal_serve_command",
|
|
18
|
-
"register_task_app_commands",
|
|
19
|
-
"run_modal_runtime",
|
|
20
|
-
"run_uvicorn_runtime",
|
|
21
|
-
"DeployCliError",
|
|
22
|
-
"validate_deploy_options",
|
|
23
|
-
]
|