synth-ai 0.4.1__py3-none-any.whl → 0.4.4__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.
- synth_ai/__init__.py +13 -13
- synth_ai/cli/__init__.py +6 -15
- synth_ai/cli/commands/eval/__init__.py +6 -15
- synth_ai/cli/commands/eval/config.py +338 -0
- synth_ai/cli/commands/eval/core.py +236 -1091
- synth_ai/cli/commands/eval/runner.py +704 -0
- synth_ai/cli/commands/eval/validation.py +44 -117
- synth_ai/cli/commands/filter/core.py +7 -7
- synth_ai/cli/commands/filter/validation.py +2 -2
- synth_ai/cli/commands/smoke/core.py +7 -17
- synth_ai/cli/commands/status/__init__.py +1 -64
- synth_ai/cli/commands/status/client.py +50 -151
- synth_ai/cli/commands/status/config.py +3 -83
- synth_ai/cli/commands/status/errors.py +4 -13
- synth_ai/cli/commands/status/subcommands/__init__.py +2 -8
- synth_ai/cli/commands/status/subcommands/config.py +13 -0
- synth_ai/cli/commands/status/subcommands/files.py +18 -63
- synth_ai/cli/commands/status/subcommands/jobs.py +28 -311
- synth_ai/cli/commands/status/subcommands/models.py +18 -62
- synth_ai/cli/commands/status/subcommands/runs.py +16 -63
- synth_ai/cli/commands/status/subcommands/session.py +67 -172
- synth_ai/cli/commands/status/subcommands/summary.py +24 -32
- synth_ai/cli/commands/status/subcommands/utils.py +41 -0
- synth_ai/cli/commands/status/utils.py +16 -107
- synth_ai/cli/commands/train/__init__.py +18 -20
- synth_ai/cli/commands/train/errors.py +3 -3
- synth_ai/cli/commands/train/prompt_learning_validation.py +15 -16
- synth_ai/cli/commands/train/validation.py +7 -7
- synth_ai/cli/commands/train/{judge_schemas.py → verifier_schemas.py} +33 -34
- synth_ai/cli/commands/train/verifier_validation.py +235 -0
- synth_ai/cli/demo_apps/demo_task_apps/math/config.toml +0 -1
- synth_ai/cli/demo_apps/demo_task_apps/math/modal_task_app.py +2 -6
- synth_ai/cli/demo_apps/math/config.toml +0 -1
- synth_ai/cli/demo_apps/math/modal_task_app.py +2 -6
- synth_ai/cli/demo_apps/mipro/task_app.py +25 -47
- synth_ai/cli/lib/apps/task_app.py +12 -13
- synth_ai/cli/lib/task_app_discovery.py +6 -6
- synth_ai/cli/lib/train_cfgs.py +10 -10
- synth_ai/cli/task_apps/__init__.py +11 -0
- synth_ai/cli/task_apps/commands.py +7 -15
- synth_ai/core/env.py +12 -1
- synth_ai/core/errors.py +1 -2
- synth_ai/core/integrations/cloudflare.py +209 -33
- synth_ai/core/tracing_v3/abstractions.py +46 -0
- synth_ai/data/__init__.py +3 -30
- synth_ai/data/enums.py +1 -20
- synth_ai/data/rewards.py +100 -3
- synth_ai/products/graph_evolve/__init__.py +1 -2
- synth_ai/products/graph_evolve/config.py +16 -16
- synth_ai/products/graph_evolve/converters/__init__.py +3 -3
- synth_ai/products/graph_evolve/converters/openai_sft.py +7 -7
- synth_ai/products/graph_evolve/examples/hotpotqa/config.toml +1 -1
- synth_ai/products/graph_gepa/__init__.py +23 -0
- synth_ai/products/graph_gepa/converters/__init__.py +19 -0
- synth_ai/products/graph_gepa/converters/openai_sft.py +29 -0
- synth_ai/sdk/__init__.py +45 -35
- synth_ai/sdk/api/eval/__init__.py +33 -0
- synth_ai/sdk/api/eval/job.py +732 -0
- synth_ai/sdk/api/research_agent/__init__.py +276 -66
- synth_ai/sdk/api/train/builders.py +181 -0
- synth_ai/sdk/api/train/cli.py +41 -33
- synth_ai/sdk/api/train/configs/__init__.py +6 -4
- synth_ai/sdk/api/train/configs/prompt_learning.py +127 -33
- synth_ai/sdk/api/train/configs/rl.py +264 -16
- synth_ai/sdk/api/train/configs/sft.py +165 -1
- synth_ai/sdk/api/train/graph_validators.py +12 -12
- synth_ai/sdk/api/train/graphgen.py +169 -51
- synth_ai/sdk/api/train/graphgen_models.py +95 -45
- synth_ai/sdk/api/train/local_api.py +10 -0
- synth_ai/sdk/api/train/pollers.py +36 -0
- synth_ai/sdk/api/train/prompt_learning.py +390 -60
- synth_ai/sdk/api/train/rl.py +41 -5
- synth_ai/sdk/api/train/sft.py +2 -0
- synth_ai/sdk/api/train/task_app.py +20 -0
- synth_ai/sdk/api/train/validators.py +17 -17
- synth_ai/sdk/graphs/completions.py +239 -33
- synth_ai/sdk/{judging/schemas.py → graphs/verifier_schemas.py} +23 -23
- synth_ai/sdk/learning/__init__.py +35 -5
- synth_ai/sdk/learning/context_learning_client.py +531 -0
- synth_ai/sdk/learning/context_learning_types.py +294 -0
- synth_ai/sdk/learning/prompt_learning_client.py +1 -1
- synth_ai/sdk/learning/prompt_learning_types.py +2 -1
- synth_ai/sdk/learning/rl/__init__.py +0 -4
- synth_ai/sdk/learning/rl/contracts.py +0 -4
- synth_ai/sdk/localapi/__init__.py +40 -0
- synth_ai/sdk/localapi/apps/__init__.py +28 -0
- synth_ai/sdk/localapi/client.py +10 -0
- synth_ai/sdk/localapi/contracts.py +10 -0
- synth_ai/sdk/localapi/helpers.py +519 -0
- synth_ai/sdk/localapi/rollouts.py +93 -0
- synth_ai/sdk/localapi/server.py +29 -0
- synth_ai/sdk/localapi/template.py +49 -0
- synth_ai/sdk/streaming/handlers.py +6 -6
- synth_ai/sdk/streaming/streamer.py +10 -6
- synth_ai/sdk/task/__init__.py +18 -5
- synth_ai/sdk/task/apps/__init__.py +37 -1
- synth_ai/sdk/task/client.py +9 -1
- synth_ai/sdk/task/config.py +6 -11
- synth_ai/sdk/task/contracts.py +137 -95
- synth_ai/sdk/task/in_process.py +32 -22
- synth_ai/sdk/task/in_process_runner.py +9 -4
- synth_ai/sdk/task/rubrics/__init__.py +2 -3
- synth_ai/sdk/task/rubrics/loaders.py +4 -4
- synth_ai/sdk/task/rubrics/strict.py +3 -4
- synth_ai/sdk/task/server.py +76 -16
- synth_ai/sdk/task/trace_correlation_helpers.py +190 -139
- synth_ai/sdk/task/validators.py +34 -49
- synth_ai/sdk/training/__init__.py +7 -16
- synth_ai/sdk/tunnels/__init__.py +118 -0
- synth_ai/sdk/tunnels/cleanup.py +83 -0
- synth_ai/sdk/tunnels/ports.py +120 -0
- synth_ai/sdk/tunnels/tunneled_api.py +363 -0
- {synth_ai-0.4.1.dist-info → synth_ai-0.4.4.dist-info}/METADATA +71 -4
- {synth_ai-0.4.1.dist-info → synth_ai-0.4.4.dist-info}/RECORD +118 -128
- synth_ai/cli/commands/baseline/__init__.py +0 -12
- synth_ai/cli/commands/baseline/core.py +0 -636
- synth_ai/cli/commands/baseline/list.py +0 -94
- synth_ai/cli/commands/eval/errors.py +0 -81
- synth_ai/cli/commands/status/formatters.py +0 -164
- synth_ai/cli/commands/status/subcommands/pricing.py +0 -23
- synth_ai/cli/commands/status/subcommands/usage.py +0 -203
- synth_ai/cli/commands/train/judge_validation.py +0 -305
- synth_ai/cli/usage.py +0 -159
- synth_ai/data/specs.py +0 -36
- synth_ai/sdk/api/research_agent/cli.py +0 -428
- synth_ai/sdk/api/research_agent/config.py +0 -357
- synth_ai/sdk/api/research_agent/job.py +0 -717
- synth_ai/sdk/baseline/__init__.py +0 -25
- synth_ai/sdk/baseline/config.py +0 -209
- synth_ai/sdk/baseline/discovery.py +0 -216
- synth_ai/sdk/baseline/execution.py +0 -154
- synth_ai/sdk/judging/__init__.py +0 -15
- synth_ai/sdk/judging/base.py +0 -24
- synth_ai/sdk/judging/client.py +0 -191
- synth_ai/sdk/judging/types.py +0 -42
- synth_ai/sdk/research_agent/__init__.py +0 -34
- synth_ai/sdk/research_agent/container_builder.py +0 -328
- synth_ai/sdk/research_agent/container_spec.py +0 -198
- synth_ai/sdk/research_agent/defaults.py +0 -34
- synth_ai/sdk/research_agent/results_collector.py +0 -69
- synth_ai/sdk/specs/__init__.py +0 -46
- synth_ai/sdk/specs/dataclasses.py +0 -149
- synth_ai/sdk/specs/loader.py +0 -144
- synth_ai/sdk/specs/serializer.py +0 -199
- synth_ai/sdk/specs/validation.py +0 -250
- synth_ai/sdk/tracing/__init__.py +0 -39
- synth_ai/sdk/usage/__init__.py +0 -37
- synth_ai/sdk/usage/client.py +0 -171
- synth_ai/sdk/usage/models.py +0 -261
- {synth_ai-0.4.1.dist-info → synth_ai-0.4.4.dist-info}/WHEEL +0 -0
- {synth_ai-0.4.1.dist-info → synth_ai-0.4.4.dist-info}/entry_points.txt +0 -0
- {synth_ai-0.4.1.dist-info → synth_ai-0.4.4.dist-info}/licenses/LICENSE +0 -0
- {synth_ai-0.4.1.dist-info → synth_ai-0.4.4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: synth-ai
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4
|
|
4
4
|
Summary: Serverless Posttraining for Agents - Core AI functionality and tracing
|
|
5
5
|
Author-email: Synth AI <josh@usesynth.ai>
|
|
6
6
|
License: MIT
|
|
@@ -60,6 +60,8 @@ Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
|
60
60
|
Requires-Dist: pyright>=1.1.350; extra == "dev"
|
|
61
61
|
Requires-Dist: coverage[toml]>=7.3.0; extra == "dev"
|
|
62
62
|
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
63
|
+
Requires-Dist: papermill>=2.6.0; extra == "dev"
|
|
64
|
+
Requires-Dist: nest_asyncio>=1.6.0; extra == "dev"
|
|
63
65
|
Provides-Extra: research
|
|
64
66
|
Requires-Dist: crafter>=1.8.3; extra == "research"
|
|
65
67
|
Requires-Dist: datasets>=4.0.0; extra == "research"
|
|
@@ -82,7 +84,8 @@ Dynamic: license-file
|
|
|
82
84
|
|
|
83
85
|
[](https://www.python.org/)
|
|
84
86
|
[](https://pypi.org/project/synth-ai/)
|
|
85
|
-
[](https://pypi.org/project/synth-ai/0.4.1/)
|
|
88
|
+
[](https://pypi.org/project/synth-ai/)
|
|
86
89
|
[](LICENSE)
|
|
87
90
|

|
|
88
91
|

|
|
@@ -189,7 +192,71 @@ from synth_ai.sdk.graphs import GraphCompletionsClient
|
|
|
189
192
|
|
|
190
193
|
client = GraphCompletionsClient(base_url="https://api.usesynth.ai", api_key="...")
|
|
191
194
|
resp = await client.run(
|
|
192
|
-
graph={"kind": "zero_shot", "
|
|
193
|
-
input_data={"
|
|
195
|
+
graph={"kind": "zero_shot", "verifier_shape": "zero_shot_verifier_mapreduce"},
|
|
196
|
+
input_data={"trace": {"session_id": "s", "event_history": []}, "rubric": {"event": [], "outcome": []}},
|
|
194
197
|
)
|
|
195
198
|
```
|
|
199
|
+
|
|
200
|
+
## GraphGen: Train Custom Verifier and RLM Graphs
|
|
201
|
+
|
|
202
|
+
Train custom verifier and RLM graphs using GraphGen:
|
|
203
|
+
|
|
204
|
+
```python
|
|
205
|
+
from synth_ai.sdk.api.train.graphgen import GraphGenJob
|
|
206
|
+
|
|
207
|
+
# Train a verifier graph
|
|
208
|
+
verifier_job = GraphGenJob.from_dataset(
|
|
209
|
+
dataset="verifier_dataset.json",
|
|
210
|
+
graph_type="verifier",
|
|
211
|
+
policy_models=["gpt-4.1"],
|
|
212
|
+
proposer_effort="medium", # Use "medium" (gpt-4.1) or "high" (gpt-5.2)
|
|
213
|
+
rollout_budget=200,
|
|
214
|
+
)
|
|
215
|
+
verifier_job.submit()
|
|
216
|
+
result = verifier_job.stream_until_complete(timeout=3600.0)
|
|
217
|
+
|
|
218
|
+
# Run inference with trained verifier
|
|
219
|
+
verification = verifier_job.run_verifier(
|
|
220
|
+
session_trace=my_trace,
|
|
221
|
+
context={"rubric": my_rubric},
|
|
222
|
+
)
|
|
223
|
+
print(f"Score: {judgment.score}, Reasoning: {judgment.reasoning}")
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
```python
|
|
227
|
+
# Train an RLM graph (massive context via tools)
|
|
228
|
+
rlm_job = GraphGenJob.from_dataset(
|
|
229
|
+
dataset="rlm_dataset.json",
|
|
230
|
+
graph_type="rlm",
|
|
231
|
+
configured_tools=[
|
|
232
|
+
{"name": "materialize_context", "kind": "rlm_materialize", "stateful": True},
|
|
233
|
+
{"name": "local_grep", "kind": "rlm_local_grep", "stateful": False},
|
|
234
|
+
{"name": "codex_exec", "kind": "daytona_exec", "stateful": True},
|
|
235
|
+
],
|
|
236
|
+
policy_models=["gpt-4.1"],
|
|
237
|
+
proposer_effort="medium",
|
|
238
|
+
rollout_budget=100,
|
|
239
|
+
)
|
|
240
|
+
rlm_job.submit()
|
|
241
|
+
result = rlm_job.stream_until_complete(timeout=3600.0)
|
|
242
|
+
|
|
243
|
+
# Run inference with trained RLM graph
|
|
244
|
+
output = rlm_job.run_inference({"query": "Find relevant sections", "context": large_document})
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
**Graph Types:**
|
|
248
|
+
- **`verifier`**: Trains a verifier graph that evaluates traces and returns structured rewards
|
|
249
|
+
- **`rlm`**: Trains a graph optimized for massive contexts (1M+ tokens) using tool-based search
|
|
250
|
+
- **`policy`**: Trains a standard input→output graph (default)
|
|
251
|
+
|
|
252
|
+
**RLM Tools:**
|
|
253
|
+
- `materialize_context` - Store input fields for fast searching (~1ms local)
|
|
254
|
+
- `local_grep` - Regex search on materialized content (~1ms)
|
|
255
|
+
- `local_search` - Substring search (~1ms)
|
|
256
|
+
- `query_lm` - Sub-LM calls for processing chunks
|
|
257
|
+
- `codex_exec` - Shell execution for complex operations
|
|
258
|
+
|
|
259
|
+
**When to use RLM:**
|
|
260
|
+
- Context exceeds ~100K tokens (too large for prompt)
|
|
261
|
+
- You need to search/filter large datasets
|
|
262
|
+
- RAG-style workflows over massive corpora
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
synth_ai/__init__.py,sha256=
|
|
1
|
+
synth_ai/__init__.py,sha256=46IUVI3s2xJDrQczpWGUxlQXoqdmzaobdu0CApkkEoQ,1941
|
|
2
2
|
synth_ai/__main__.py,sha256=niiyZIVIiIgyyUsQ40hKs2cLWkH1gHcoI7t3N2rxH3s,1039
|
|
3
3
|
synth_ai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
synth_ai/cli/__init__.py,sha256=
|
|
4
|
+
synth_ai/cli/__init__.py,sha256=j-F8E-JimliKu6Tytip0xh7qIEx7eyrUdEWOvBezac8,4431
|
|
5
5
|
synth_ai/cli/__main__.py,sha256=-lNeAKXRyZ6swCqmFHeKkmWTyamO-2Y0G2b0WKjCtMY,1038
|
|
6
6
|
synth_ai/cli/deploy.py,sha256=xfaCQ3JHthAj-V1MQrS1uGgkmQJvDDh_TolBGJTLD24,6751
|
|
7
7
|
synth_ai/cli/root.py,sha256=VJaORaCBjvVTTthbN8XX1TCjUw7hcAEB6eDLc6D_eYI,11539
|
|
8
8
|
synth_ai/cli/turso.py,sha256=kjcZj_IAi-8MhMtU-WwsUNl8DUAOpUGmlC2-1dAYR6k,1625
|
|
9
|
-
synth_ai/cli/usage.py,sha256=QPyDVaGpUJP9AChYiW94iBfIWK6LDjROAfJEoy_Hkf4,5602
|
|
10
9
|
synth_ai/cli/_internal/__init__.py,sha256=oYR5XFIj1QPPlfqNVdS8KcCJ4mXCdXUU-du_KrEmbUs,82
|
|
11
10
|
synth_ai/cli/_internal/modal_wrapper.py,sha256=bJJtpT7sOCRptCSDyZXDxa24xyrozVekmaJKYQ_f4LQ,789
|
|
12
11
|
synth_ai/cli/_internal/storage.py,sha256=0VjIR8hsxdhRD90xy6IMwGkQu53RwUF8H_aFPsMmXXE,765
|
|
@@ -26,19 +25,17 @@ synth_ai/cli/commands/artifacts/export.py,sha256=k4h2hKZ112Gfe-S4ayb10urY23avgnf
|
|
|
26
25
|
synth_ai/cli/commands/artifacts/list.py,sha256=_OktWZ3A-cU2sYueMCyL9N-OZH0fahk4yEjRKY1RuEg,4783
|
|
27
26
|
synth_ai/cli/commands/artifacts/parsing.py,sha256=gw04bTbMqX757mvgGC8TqcY0lfGwjAm_YTm4VamXAWk,7318
|
|
28
27
|
synth_ai/cli/commands/artifacts/show.py,sha256=0B_yIQ9H6eE6qi1fJ7cTBPFuDxNknaxi17OVrkxgy7g,11920
|
|
29
|
-
synth_ai/cli/commands/baseline/__init__.py,sha256=s0s_62k43AENduzE1S3Zzl0s56F-zSHnu1X3vH83y8c,236
|
|
30
|
-
synth_ai/cli/commands/baseline/core.py,sha256=WmO_BSBZ2lbL4kl_kVQSE2eghx3yRwvFlREwOQUcMTM,22903
|
|
31
|
-
synth_ai/cli/commands/baseline/list.py,sha256=TuvrwNxYFEjtdx-nTXjKwVOh_nhM_VSffiBEFVySzfc,2942
|
|
32
28
|
synth_ai/cli/commands/demo/__init__.py,sha256=fpsgP7In1ve0MN5IgqwvlbhjyqBk49szC5MSf_BkHQc,71
|
|
33
29
|
synth_ai/cli/commands/demo/core.py,sha256=YptePlzX-d51VwrDuKqdrtWKiddvJPcBWoUfcpvas_U,4798
|
|
34
|
-
synth_ai/cli/commands/eval/__init__.py,sha256=
|
|
35
|
-
synth_ai/cli/commands/eval/
|
|
36
|
-
synth_ai/cli/commands/eval/
|
|
37
|
-
synth_ai/cli/commands/eval/
|
|
30
|
+
synth_ai/cli/commands/eval/__init__.py,sha256=G6K_DUqoyxNiMD7h3oSubiP-Qh4oR1o7n8v3-azs2gE,225
|
|
31
|
+
synth_ai/cli/commands/eval/config.py,sha256=FIwUwIAxf4_5qQJIJE5MdbLQh0mI8KDk7pQ9iJn1Kvk,10959
|
|
32
|
+
synth_ai/cli/commands/eval/core.py,sha256=Xx0QTckbAxXpzzkcpapqVWCyaChkftzlPGrXy6BK3Bg,9327
|
|
33
|
+
synth_ai/cli/commands/eval/runner.py,sha256=RZLcUQyuf9aJd09Q1aTQOjvWL7OgJ3cvIcRvLPnBtuc,23810
|
|
34
|
+
synth_ai/cli/commands/eval/validation.py,sha256=WaoLS9Oxr01DFMQsGmSk8vBaORWE5Koy4QKe_CEqInI,2016
|
|
38
35
|
synth_ai/cli/commands/filter/__init__.py,sha256=fPU74tFIgsndea2nJ25lKrzBS_JPfLi5M4OvLyqHsOg,260
|
|
39
|
-
synth_ai/cli/commands/filter/core.py,sha256=
|
|
36
|
+
synth_ai/cli/commands/filter/core.py,sha256=mlaLoful0hvmD03PQy86lJYObwiBAYQlJAJA7IX1QyE,16427
|
|
40
37
|
synth_ai/cli/commands/filter/errors.py,sha256=gGpZj2AhDVBco_d10ldHN3ugRpTD7zGqKD87TI2nBxc,1099
|
|
41
|
-
synth_ai/cli/commands/filter/validation.py,sha256=
|
|
38
|
+
synth_ai/cli/commands/filter/validation.py,sha256=0IGyXLhRFPQDhBxzt4cHZezm3bszblKiWr3lgzWRT_Y,2617
|
|
42
39
|
synth_ai/cli/commands/help/__init__.py,sha256=82D9G0ac28ok3W_eRJin1AQi7kl1bV-voHFU3QkzW8E,5429
|
|
43
40
|
synth_ai/cli/commands/help/core.py,sha256=q4vwdagxeVoxHaADGikiEQBq1RDSI147Akxi6IAJ4e0,2090
|
|
44
41
|
synth_ai/cli/commands/scan/__init__.py,sha256=NOqTmD-DXmyVRy6112GuSxEqy3gAgH-_9mCW9D3cpsQ,294
|
|
@@ -48,29 +45,28 @@ synth_ai/cli/commands/scan/health_checker.py,sha256=AVIYQlyqM5ApPCeK5wMB-TkQg6Lc
|
|
|
48
45
|
synth_ai/cli/commands/scan/local_scanner.py,sha256=iEwhpBABoyxztIblTGHLQTlGA_RiIi3z1rcVJeZshOo,10654
|
|
49
46
|
synth_ai/cli/commands/scan/models.py,sha256=qKcleWG4zdzU2HKhD2-YjX-uKs90gQpjRF9HSum5AGo,3740
|
|
50
47
|
synth_ai/cli/commands/smoke/__init__.py,sha256=gE7gaBh19yTRyTRgn5ztk7MmdsIoLdU8bkFxRvHNvJA,109
|
|
51
|
-
synth_ai/cli/commands/smoke/core.py,sha256=
|
|
52
|
-
synth_ai/cli/commands/status/__init__.py,sha256=
|
|
53
|
-
synth_ai/cli/commands/status/client.py,sha256=
|
|
54
|
-
synth_ai/cli/commands/status/config.py,sha256=
|
|
55
|
-
synth_ai/cli/commands/status/errors.py,sha256=
|
|
56
|
-
synth_ai/cli/commands/status/
|
|
57
|
-
synth_ai/cli/commands/status/
|
|
58
|
-
synth_ai/cli/commands/status/subcommands/
|
|
59
|
-
synth_ai/cli/commands/status/subcommands/files.py,sha256=
|
|
60
|
-
synth_ai/cli/commands/status/subcommands/jobs.py,sha256=
|
|
61
|
-
synth_ai/cli/commands/status/subcommands/models.py,sha256=
|
|
62
|
-
synth_ai/cli/commands/status/subcommands/
|
|
63
|
-
synth_ai/cli/commands/status/subcommands/
|
|
64
|
-
synth_ai/cli/commands/status/subcommands/
|
|
65
|
-
synth_ai/cli/commands/status/subcommands/
|
|
66
|
-
synth_ai/cli/commands/
|
|
67
|
-
synth_ai/cli/commands/train/__init__.py,sha256=9zGDNfVkRpAMddsvB3qS-NILIlTh1dYRVUe2dTZSPDY,1242
|
|
48
|
+
synth_ai/cli/commands/smoke/core.py,sha256=i6oPNMITNB14OTPk3D3ocn6P9NGBySSKyPwRHXrFQTM,61698
|
|
49
|
+
synth_ai/cli/commands/status/__init__.py,sha256=U9DbHXnwGvbus243mjH0_wFYej-y5cVCoWFvoKBpOXQ,66
|
|
50
|
+
synth_ai/cli/commands/status/client.py,sha256=GFsgUryVSSlTx4Ibp_Iypw3mSYHly8poG2GHthy7BW8,3244
|
|
51
|
+
synth_ai/cli/commands/status/config.py,sha256=9FZy-rtW_FmrqioHlE6mwoJap4cA8D4-hp3jdzgUfUo,222
|
|
52
|
+
synth_ai/cli/commands/status/errors.py,sha256=xv4IRsSMJDyd4l7vfqPe0z5_m-Cx6ZYil7fBxV3eb-8,311
|
|
53
|
+
synth_ai/cli/commands/status/utils.py,sha256=bybYV5xEcpkiDe0LRBRZesjBOVyHmQc0MFYCq_U1Ngk,648
|
|
54
|
+
synth_ai/cli/commands/status/subcommands/__init__.py,sha256=AU_hgMoT6xHg_BWu1di1PNFZrFvFKnvYyIrB1HitbFw,62
|
|
55
|
+
synth_ai/cli/commands/status/subcommands/config.py,sha256=aekcbYddWzeNzlqeUd1ud-uOpQ7No5u8vZl6UFO-ILU,189
|
|
56
|
+
synth_ai/cli/commands/status/subcommands/files.py,sha256=ox5zZD1hFOuN5_ZKfkK_hQ1eVv1z5pLagNp5ZkWkfLE,774
|
|
57
|
+
synth_ai/cli/commands/status/subcommands/jobs.py,sha256=v8G3RPegK36wqxO0FHWURcppLNqc1rfLx1lRHQBTN9w,1375
|
|
58
|
+
synth_ai/cli/commands/status/subcommands/models.py,sha256=edXcYv7Yiy88KBmalSIMY0qf0cAB_1ZrgeNaR1eplt4,916
|
|
59
|
+
synth_ai/cli/commands/status/subcommands/runs.py,sha256=dbApDFHdQergU_TRCgOXiyjRQQHBOGXt-gB3ZWtsghs,773
|
|
60
|
+
synth_ai/cli/commands/status/subcommands/session.py,sha256=aOzS5N60Lo18cUNvX6TK-amoDtue0ITIeJYKdB6bvic,2422
|
|
61
|
+
synth_ai/cli/commands/status/subcommands/summary.py,sha256=HF7gxG0kky7SYi6FXBZ3n9mYW9REASlrxC3eL-vYFR4,1002
|
|
62
|
+
synth_ai/cli/commands/status/subcommands/utils.py,sha256=-AJU_7yqYAkAMBvkemvV9Q35ipjHmmrSO8OF0_2jx-o,992
|
|
63
|
+
synth_ai/cli/commands/train/__init__.py,sha256=bw8JbXwDVmAr_Tn4LIxlWGvDnQm9dwiDhcCZBML3Wq8,1228
|
|
68
64
|
synth_ai/cli/commands/train/core.py,sha256=nKKFnrmzaw0YqKtpG1cmaFCAFgunlreHz-lLyy4xYy0,505
|
|
69
|
-
synth_ai/cli/commands/train/errors.py,sha256=
|
|
70
|
-
synth_ai/cli/commands/train/
|
|
71
|
-
synth_ai/cli/commands/train/
|
|
72
|
-
synth_ai/cli/commands/train/
|
|
73
|
-
synth_ai/cli/commands/train/
|
|
65
|
+
synth_ai/cli/commands/train/errors.py,sha256=ATFvEzoxgWzMRCQDmy-NnP01pnyeCvF7Sl4vSGirUl4,2752
|
|
66
|
+
synth_ai/cli/commands/train/prompt_learning_validation.py,sha256=FgOvjuG7VjUbNp_FgG3xc_jg69nuDWCBfdwye8f1sQA,18811
|
|
67
|
+
synth_ai/cli/commands/train/validation.py,sha256=DiwFkvJIuOX7UbrjqpbYiw7imhyZgYawT4Mjy_Q0fM0,13914
|
|
68
|
+
synth_ai/cli/commands/train/verifier_schemas.py,sha256=j7dMQ0q7YGwam1hPUyiOsdXQJIY_mw0tPL3ZqkHnfzk,6551
|
|
69
|
+
synth_ai/cli/commands/train/verifier_validation.py,sha256=YKwp8jFXHJXpteDeNO1Znqf_7PBXfy_VQG6ig6k2aqQ,6983
|
|
74
70
|
synth_ai/cli/demo_apps/__init__.py,sha256=JH-OIpwYS4fqJ7MfOd16y4378mdD3uhr675iEG2zBys,473
|
|
75
71
|
synth_ai/cli/demo_apps/demo_registry.py,sha256=y49Tb-iVVQAfMSyQlfqQ_2i3CsVPw9PAJr2wFx32m6g,5826
|
|
76
72
|
synth_ai/cli/demo_apps/core/__init__.py,sha256=uC3ZUzEjUnr5Az_FoRZJovGhCeqfMZVZggjXr2DkKio,806
|
|
@@ -88,19 +84,19 @@ synth_ai/cli/demo_apps/demo_task_apps/crafter/configs/rl_from_base_qwen4b.toml,s
|
|
|
88
84
|
synth_ai/cli/demo_apps/demo_task_apps/math/__init__.py,sha256=WBzpZwSn7pRarBmhopQi34i9bEm05-71eM3siboOavY,43
|
|
89
85
|
synth_ai/cli/demo_apps/demo_task_apps/math/_common.py,sha256=FvWvZ3BwZzX38RjZcukPlmk0FN_DT03lBbZe-mjF7tg,532
|
|
90
86
|
synth_ai/cli/demo_apps/demo_task_apps/math/app.py,sha256=1sdVhcQR60jLc8Vc5B2Jelh1ouo7y8gVkVgf_VcJdPg,1168
|
|
91
|
-
synth_ai/cli/demo_apps/demo_task_apps/math/config.toml,sha256=
|
|
87
|
+
synth_ai/cli/demo_apps/demo_task_apps/math/config.toml,sha256=gmOkVUdUuaDq2PseNYP7eXK_fvqwrcHbbB0oc-omWCQ,1323
|
|
92
88
|
synth_ai/cli/demo_apps/demo_task_apps/math/deploy_modal.py,sha256=hLdUvOl3tGQi_mQgYWva5NUh-vIXUj4e-isGZ6Mk-14,2256
|
|
93
|
-
synth_ai/cli/demo_apps/demo_task_apps/math/modal_task_app.py,sha256=
|
|
89
|
+
synth_ai/cli/demo_apps/demo_task_apps/math/modal_task_app.py,sha256=7BDY8sAWL7AJJl22t25_rcvo9t-vb-_HEsa75Z9Q5Qs,28474
|
|
94
90
|
synth_ai/cli/demo_apps/demo_task_apps/math/task_app_entry.py,sha256=F1-F-qeiVTQAW9HxSv2ko-hERkgSL4QKEplR9HtMCMc,1044
|
|
95
91
|
synth_ai/cli/demo_apps/math/__init__.py,sha256=WBzpZwSn7pRarBmhopQi34i9bEm05-71eM3siboOavY,43
|
|
96
92
|
synth_ai/cli/demo_apps/math/_common.py,sha256=FvWvZ3BwZzX38RjZcukPlmk0FN_DT03lBbZe-mjF7tg,532
|
|
97
93
|
synth_ai/cli/demo_apps/math/app.py,sha256=1sdVhcQR60jLc8Vc5B2Jelh1ouo7y8gVkVgf_VcJdPg,1168
|
|
98
|
-
synth_ai/cli/demo_apps/math/config.toml,sha256=
|
|
94
|
+
synth_ai/cli/demo_apps/math/config.toml,sha256=w8_TPsKA2wl_dn2ge90GIPUUgCrZu6EOzYyrRzjXnhg,1336
|
|
99
95
|
synth_ai/cli/demo_apps/math/deploy_modal.py,sha256=DpqSUxVGjqDy1GoUQJWFQSsI0_osRpuCw8svD4rm5Cw,2063
|
|
100
|
-
synth_ai/cli/demo_apps/math/modal_task_app.py,sha256=
|
|
96
|
+
synth_ai/cli/demo_apps/math/modal_task_app.py,sha256=wh0afSz30q3-H8FdHxecIS4Y-26Hii4KiIVtnjeF5Xw,26481
|
|
101
97
|
synth_ai/cli/demo_apps/math/task_app_entry.py,sha256=VGxRi34Bxj51z8yZGmwjQJTVaUJySdH1XhWpWq3nUKU,1455
|
|
102
98
|
synth_ai/cli/demo_apps/mipro/main.py,sha256=_DIy7xSuVnZrwDUilJwWJfFdgHp8BJMs4qasdZHnldo,10505
|
|
103
|
-
synth_ai/cli/demo_apps/mipro/task_app.py,sha256=
|
|
99
|
+
synth_ai/cli/demo_apps/mipro/task_app.py,sha256=yr62n49IOoJAWbTaYJ4_ZkMi5OFXhhnXEMdMSh6_LC4,37208
|
|
104
100
|
synth_ai/cli/demo_apps/mipro/train_cfg.toml,sha256=LGQPpgrmHGh_C0NuQSYV3MyRSf6FJHyc-jvdAWpjgv4,4099
|
|
105
101
|
synth_ai/cli/demos/__init__.py,sha256=BnoTqDZ0FelPjSy8gAnV5N0SriEqhhwjZBTagrwlVL4,155
|
|
106
102
|
synth_ai/cli/demos/demo.py,sha256=hEFLW40S9Pw75cR8k4lZ2k8rl_Bamj3HGW175ZRpKvU,846
|
|
@@ -122,12 +118,12 @@ synth_ai/cli/lib/plotting.py,sha256=qXCRUtmnnfIHtWUteBHchyk5D6fMMNocgSYLThQLCmU,
|
|
|
122
118
|
synth_ai/cli/lib/prompt_args.py,sha256=TunI29ECroh9NI_U4Za2GknRnFdcric8hkRzSUnkwX8,1328
|
|
123
119
|
synth_ai/cli/lib/prompts.py,sha256=osHwSEGasyxQ4c8-0pPsyHDRwKKTeURk0Pk-iX4V4_I,9228
|
|
124
120
|
synth_ai/cli/lib/sqld.py,sha256=cHOPGywLTMdQDqURIxdrNoXWFUTdZrikDo7c1oyIXP0,3908
|
|
125
|
-
synth_ai/cli/lib/task_app_discovery.py,sha256=
|
|
121
|
+
synth_ai/cli/lib/task_app_discovery.py,sha256=W-FrUZjdVfaPFfmLddDoDuqKNZqxrYQ2uUGC7G55GFI,30972
|
|
126
122
|
synth_ai/cli/lib/task_app_env.py,sha256=IaJQsep1Ky2S8JdMRhQXCQQmTk78sI1Yw7S-xUYqbJg,11270
|
|
127
|
-
synth_ai/cli/lib/train_cfgs.py,sha256=
|
|
123
|
+
synth_ai/cli/lib/train_cfgs.py,sha256=i3wxdaBHhwNBSFyz3th7X1-jQuiMJxqaIQGhqejnWOs,10801
|
|
128
124
|
synth_ai/cli/lib/tunnel_records.py,sha256=AChs1EtdJSVrvUP3dJv3mW0CQxSopY9w22lSpqC5bi8,6024
|
|
129
125
|
synth_ai/cli/lib/apps/modal_app.py,sha256=yQMmGwM1Htaq5Rw0uWFWsn1L-Mv0jwj7agiqCVmsjM4,3375
|
|
130
|
-
synth_ai/cli/lib/apps/task_app.py,sha256=
|
|
126
|
+
synth_ai/cli/lib/apps/task_app.py,sha256=6pCxrwIAN76FartT_WXlhYZMmvVKqIoJ-62P0YYY_c4,26329
|
|
131
127
|
synth_ai/cli/local/__init__.py,sha256=Jjn5l6keOk57fBpPMWxecZD_n6Z2ubSLk0Cq9OzMW3c,379
|
|
132
128
|
synth_ai/cli/local/experiment_queue/__init__.py,sha256=rRgmTjPh1zqTddgPDqEVccgbTi__ckTfAbjNIcWILtY,1226
|
|
133
129
|
synth_ai/cli/local/experiment_queue/api_schemas.py,sha256=SAIdxazAJlAT5eBMbFxoaOjgqM9sJ6AZJO8vloralQQ,9737
|
|
@@ -153,8 +149,8 @@ synth_ai/cli/local/session/exceptions.py,sha256=-WCrdiJKyplWoPsjlSSClwiDSZoGrdM_
|
|
|
153
149
|
synth_ai/cli/local/session/manager.py,sha256=cwuJFHbaZJfA_YWOnSLjvLMGoB89P6zHwnKF9Oq_7v4,4489
|
|
154
150
|
synth_ai/cli/local/session/models.py,sha256=wIL0DWltnZfSMeQHldQyrJ3L1YO_eC0BzTcIg-vCgCY,2495
|
|
155
151
|
synth_ai/cli/local/session/query.py,sha256=zp3CVAxg6a85fbjnUwZp89wiAi3C5lgzuxG9BwJPiHU,3824
|
|
156
|
-
synth_ai/cli/task_apps/__init__.py,sha256=
|
|
157
|
-
synth_ai/cli/task_apps/commands.py,sha256
|
|
152
|
+
synth_ai/cli/task_apps/__init__.py,sha256=6DPH5xVUc1d_Ae4vU5NjaG8u0lhqvfVoYBSTvLAMP7w,820
|
|
153
|
+
synth_ai/cli/task_apps/commands.py,sha256=SLZ4WMPT8g2D_iehy_12smWtU0XU8lTiB2drjsnmdX8,116017
|
|
158
154
|
synth_ai/cli/task_apps/deploy.py,sha256=eCkz7Vae3BWoW0j2tL0A16k1pN_OKPXq5mTgklT_pLc,215
|
|
159
155
|
synth_ai/cli/task_apps/list.py,sha256=HPTAHlPgsscGDyn1DsGrm7FJj_3WIVah40JuG5BPyeQ,579
|
|
160
156
|
synth_ai/cli/task_apps/main.py,sha256=dfmiJR3bhlusoSBvUiDztdoGb5gRB0YeAMw13kuydZU,974
|
|
@@ -173,8 +169,8 @@ synth_ai/contracts/__init__.py,sha256=rKO44QW529EyQCK8boIkHDXlHs-3GaJFE8wZX5MSk9
|
|
|
173
169
|
synth_ai/core/__init__.py,sha256=OnILdX0-tLML66_xn1mNxUFBgcqgqgYyi-JveRDwMSU,1863
|
|
174
170
|
synth_ai/core/auth.py,sha256=gRuxaCSdLD2erKqUMNKIvXpC16h1r_fFrLADpgBIh-g,2995
|
|
175
171
|
synth_ai/core/cfgs.py,sha256=SWz_qlO9r9mq-ITS30pgpHDez7-CxrD9l-wIyyH5cGg,8413
|
|
176
|
-
synth_ai/core/env.py,sha256=
|
|
177
|
-
synth_ai/core/errors.py,sha256=
|
|
172
|
+
synth_ai/core/env.py,sha256=rfU5hkfMP-tc11QCuxzSPSiqaCXfuRE2OuobMmBFXBI,7127
|
|
173
|
+
synth_ai/core/errors.py,sha256=2aj1v24CmPkvr3eLdXRVVuHn02QPqQM3KcGQmbof8b0,2927
|
|
178
174
|
synth_ai/core/http.py,sha256=IWftgT9wkxrRS1vy1XfQrj96Z3URifsVBkColoiKIBU,7097
|
|
179
175
|
synth_ai/core/json.py,sha256=cplc_iAeQh3bbb6FoAZNCCDMgz8vVg7q9MSybryCiVg,1793
|
|
180
176
|
synth_ai/core/log_filter.py,sha256=VG1nsEVop1VG-pdRW9Bf8QnmGIFA6Fi0fZ8YrA1DwNg,3525
|
|
@@ -200,7 +196,7 @@ synth_ai/core/config/__init__.py,sha256=CkwqJGTH_nIhZD512-850SGmlfwBYBI91UJrbttJ
|
|
|
200
196
|
synth_ai/core/config/base.py,sha256=ZauohJ_RwqssMmPOjJB_PITlY_tHYicWP5WP_jeaxWQ,5198
|
|
201
197
|
synth_ai/core/config/resolver.py,sha256=zUr_6bh6DOl_VHS8gxdb3DC3gv9y3hbvTacHHj_j_8w,2750
|
|
202
198
|
synth_ai/core/integrations/__init__.py,sha256=toqa4Fl0iPb-9x3n5OTw8kefoEMjc7EYLSWIlazDGe4,205
|
|
203
|
-
synth_ai/core/integrations/cloudflare.py,sha256=
|
|
199
|
+
synth_ai/core/integrations/cloudflare.py,sha256=A3jX9ncB9zqS9ZwecRQAVvh5ccOW3VXtiZ4iwaNDpSM,72792
|
|
204
200
|
synth_ai/core/integrations/modal.py,sha256=0epn8_ZaAbUelqoqFmyPxycCq6pD8hpmAVzNIpMG3PY,10946
|
|
205
201
|
synth_ai/core/integrations/mcp/__init__.py,sha256=xmJMxYXTaBHv7E8ryDeA7ELeNjZnsR2Ft7ayD-267Aw,118
|
|
206
202
|
synth_ai/core/integrations/mcp/__main__.py,sha256=BGpZrCfzjzWkY-9KUs9Fj2x1yYtp3uJbI0S5HLeJOew,177
|
|
@@ -209,7 +205,7 @@ synth_ai/core/integrations/mcp/main.py,sha256=3t3VzPXH-2z8eIvb7kp_0d9zI29qPAnBaC
|
|
|
209
205
|
synth_ai/core/integrations/mcp/setup.py,sha256=_3paE9bCJ8dJI4Pt9qk8tBqWShvtGnlsHLAKXBz8HCM,3076
|
|
210
206
|
synth_ai/core/storage/__init__.py,sha256=eyTmfhYl_HTSemDepifg3VjJygO_7gQR_qva6DhP-LM,1681
|
|
211
207
|
synth_ai/core/tracing_v3/__init__.py,sha256=CndO-mSSiSA-JVdw9DxsEw-bdP47opx0opek61zvz28,3386
|
|
212
|
-
synth_ai/core/tracing_v3/abstractions.py,sha256=
|
|
208
|
+
synth_ai/core/tracing_v3/abstractions.py,sha256=jSvInmrMMD5EhyyZY9daQ1RHoWdrZCzrk-urCI-NV54,14009
|
|
213
209
|
synth_ai/core/tracing_v3/config.py,sha256=MWCCWACcbwoEYCd9RmLytGUTlWTCyXQWP4Ccn9BYOJc,8769
|
|
214
210
|
synth_ai/core/tracing_v3/constants.py,sha256=hPsHWSfRAQKWo5p0ULypuvya0Uta76c5tLgnW8htCNE,714
|
|
215
211
|
synth_ai/core/tracing_v3/db_config.py,sha256=zEzUr3gurpmx3-p2egumCjzM85vY5GD63kbXTI0kv10,6540
|
|
@@ -235,145 +231,139 @@ synth_ai/core/tracing_v3/turso/__init__.py,sha256=hcwysYjh1_ckqrn2DW4QSc2l0jdfN-
|
|
|
235
231
|
synth_ai/core/tracing_v3/turso/daemon.py,sha256=HQOcAITKVB1V3WCCC-3coYAftVIdgmtWcGQVCOWGwds,9628
|
|
236
232
|
synth_ai/core/tracing_v3/turso/models.py,sha256=BGQVPxJeefgZW8Qd-yV1BSIlQrHVIm0wp4CWNQfQLN4,16394
|
|
237
233
|
synth_ai/core/tracing_v3/turso/native_manager.py,sha256=w-J4KcBCzO4GapnkovwDTZcrMp8dmI-1WsimTRKSpUQ,52463
|
|
238
|
-
synth_ai/data/__init__.py,sha256=
|
|
239
|
-
synth_ai/data/enums.py,sha256=
|
|
240
|
-
synth_ai/data/rewards.py,sha256=
|
|
241
|
-
synth_ai/data/specs.py,sha256=VP6XfDqoi4RJ4yAoX61Bqsd5eox0aqW2bL4zEWMnRb4,704
|
|
234
|
+
synth_ai/data/__init__.py,sha256=4XjTCtx_D6dwgTEihyw7pJnjmclj-5daGfLO375u3ZU,1750
|
|
235
|
+
synth_ai/data/enums.py,sha256=NU_AOPxe1_DXjzS6JOfI-uAXnPoUlx9mdovR8vX-4Rs,2397
|
|
236
|
+
synth_ai/data/rewards.py,sha256=_89lgMzqQBw_NSli04hbWAHNjIQrpO4JgbjwcpFcfdo,9300
|
|
242
237
|
synth_ai/data/traces.py,sha256=9DvaLDMj93d6tNoWPGxgZi1G3JX-WEzNEXZq43yjIFI,779
|
|
243
238
|
synth_ai/products/__init__.py,sha256=4ImFYMOJAvgBpRZtoJlqe-XrzDenRAzVX-AERno-A7I,198
|
|
244
|
-
synth_ai/products/graph_evolve/__init__.py,sha256=
|
|
239
|
+
synth_ai/products/graph_evolve/__init__.py,sha256=VfQwk3bS6aIp_W4Ggbun7TDKiPllVOBs-7WInSVoX4M,1316
|
|
245
240
|
synth_ai/products/graph_evolve/client.py,sha256=r7GJgpAjO9LaK5H-Bm_OvcI6JsiKa1wtTVHb8VHbY28,6934
|
|
246
|
-
synth_ai/products/graph_evolve/config.py,sha256=
|
|
241
|
+
synth_ai/products/graph_evolve/config.py,sha256=mK04GxjPhvIzO323ZWHhtQwOy8ODW4Pxb2L1FesryDI,23809
|
|
247
242
|
synth_ai/products/graph_evolve/run.py,sha256=mrV-uv0pY46ig8pZZ3dHcKkte-LnToeDYVJ3K1S9yWg,7700
|
|
248
|
-
synth_ai/products/graph_evolve/converters/__init__.py,sha256=
|
|
249
|
-
synth_ai/products/graph_evolve/converters/openai_sft.py,sha256=
|
|
250
|
-
synth_ai/products/graph_evolve/examples/hotpotqa/config.toml,sha256=
|
|
251
|
-
synth_ai/
|
|
243
|
+
synth_ai/products/graph_evolve/converters/__init__.py,sha256=pL3j2EVmVCPiu3_Hgr27WGgFKBvpIM4bJ0tUBClqlos,1109
|
|
244
|
+
synth_ai/products/graph_evolve/converters/openai_sft.py,sha256=W22TtHfKZclFNKcFdPHqY9dgX_Y1UakwEhicnadJPCM,15304
|
|
245
|
+
synth_ai/products/graph_evolve/examples/hotpotqa/config.toml,sha256=I4TAIFxOZRzbxqcTV0owz7zXxXdMBFF1PRGrbLxvhbg,4303
|
|
246
|
+
synth_ai/products/graph_gepa/__init__.py,sha256=fkgycuZUe40WE6BTXIXTTgjkxGexaaJNqpITWT-5ZsA,509
|
|
247
|
+
synth_ai/products/graph_gepa/converters/__init__.py,sha256=U7B3YUupy_FVrYinX7YqS87BLPxDcxm7XgXPz5QcmDE,399
|
|
248
|
+
synth_ai/products/graph_gepa/converters/openai_sft.py,sha256=GpV9ZvvSIk_RXRN0IRFpQipCvInzG7B2DdkoXkvHCG0,656
|
|
249
|
+
synth_ai/sdk/__init__.py,sha256=0dys-dPB-O0AUHe7_-s9td-sTPksKCng-6aoO5Biyks,2935
|
|
252
250
|
synth_ai/sdk/api/__init__.py,sha256=_CrikBpuPlD3fOFBCpbudO2QP_WozrRLQWvtReNahnY,24
|
|
251
|
+
synth_ai/sdk/api/eval/__init__.py,sha256=L7UG_4xvvlstCoQ7fkDSf47kkRy3eVP75i8JVvNRd-w,1053
|
|
252
|
+
synth_ai/sdk/api/eval/job.py,sha256=Y3EhBUfQB6giEsmKatwDsk6ak7JdmoEOEzgXuEfvqHQ,26860
|
|
253
253
|
synth_ai/sdk/api/models/supported.py,sha256=zxozXZkHaP70CvscKT1S8SuzJoHmLTy0VwH-p48rpxc,17709
|
|
254
|
-
synth_ai/sdk/api/research_agent/__init__.py,sha256=
|
|
255
|
-
synth_ai/sdk/api/research_agent/cli.py,sha256=RYpnbH9KLkt8p678kJPByu6OB6iCxayCiF6u2_zpJz0,12171
|
|
256
|
-
synth_ai/sdk/api/research_agent/config.py,sha256=3vVIkwAxJJrOqJI7AZq2mis4ggZr3iUYTVwuu_3Gj_s,11355
|
|
257
|
-
synth_ai/sdk/api/research_agent/job.py,sha256=jdj2hXVoTRdoKGCHwYpQhMVFCFdbrSX_trkb1_LEf5s,24496
|
|
254
|
+
synth_ai/sdk/api/research_agent/__init__.py,sha256=GgdlzrCnkfVS9p9bCuglzP-mVne_qFAc0TJlDd39VZg,9691
|
|
258
255
|
synth_ai/sdk/api/train/__init__.py,sha256=y3DlgTTlwyI5BQiE2Ap5CwMcRS1G-DP288pMTrveBiw,2011
|
|
259
|
-
synth_ai/sdk/api/train/builders.py,sha256=
|
|
260
|
-
synth_ai/sdk/api/train/cli.py,sha256=
|
|
256
|
+
synth_ai/sdk/api/train/builders.py,sha256=54fld0VxxsSiZLyxi7pbCFRV2i5HowB8iR5MyTSIxJk,51919
|
|
257
|
+
synth_ai/sdk/api/train/cli.py,sha256=ySbVs5nBdPPtIpEa7mZ5KWEdi_9i9wqbJtNMC81zRGQ,93196
|
|
261
258
|
synth_ai/sdk/api/train/config_finder.py,sha256=dQe1P1QtIJT4NM-pvhpt_BT2608lFohqJ_5aM1Ty6Ho,8932
|
|
262
259
|
synth_ai/sdk/api/train/context_learning.py,sha256=nItcZcyUJVN6xqXS2QrngNshVKpRO0dTPtf4MNSdTPQ,10548
|
|
263
260
|
synth_ai/sdk/api/train/env_resolver.py,sha256=fZH5vP8jZg_XqVFDmuLWex5bvhNQ8cDZGTTWM9Yqff8,15039
|
|
264
|
-
synth_ai/sdk/api/train/graph_validators.py,sha256=
|
|
265
|
-
synth_ai/sdk/api/train/graphgen.py,sha256=
|
|
266
|
-
synth_ai/sdk/api/train/graphgen_models.py,sha256=
|
|
261
|
+
synth_ai/sdk/api/train/graph_validators.py,sha256=JUGHf-aWRRm7cKoSrcamJQPZtY9-d2BY-tBj3oe2rbo,7667
|
|
262
|
+
synth_ai/sdk/api/train/graphgen.py,sha256=xUzVzXMddNQNy7mT-jSOKh9XkznUMprDumpAOfbNII8,42464
|
|
263
|
+
synth_ai/sdk/api/train/graphgen_models.py,sha256=9MgjZNc45GYLJHD9G1JUbCZ2Z_6GpO2rKfkRikCXiVI,32637
|
|
267
264
|
synth_ai/sdk/api/train/graphgen_validators.py,sha256=f81KVsT1h0OYbDLy3b__Fs0Gse1EvhOVMtTDdnCnCjU,3348
|
|
268
|
-
synth_ai/sdk/api/train/
|
|
269
|
-
synth_ai/sdk/api/train/
|
|
270
|
-
synth_ai/sdk/api/train/
|
|
271
|
-
synth_ai/sdk/api/train/
|
|
265
|
+
synth_ai/sdk/api/train/local_api.py,sha256=anRlexquLy8bK4lOcIE9Alah5ec003phM71pKp4yPLs,286
|
|
266
|
+
synth_ai/sdk/api/train/pollers.py,sha256=MZC6H3EbFDscjPjtkJlam4HIkiZxR_Xqq7QeX7XR7PE,5496
|
|
267
|
+
synth_ai/sdk/api/train/prompt_learning.py,sha256=x1apfTtUtOXoduuo7VDm3kSxBRj0dvDKKC6Z5Qqh2M8,29625
|
|
268
|
+
synth_ai/sdk/api/train/rl.py,sha256=LO8rvowN-DDH6_D7KRbXbytngQoLjq5mwdvIv1WKYb8,17716
|
|
269
|
+
synth_ai/sdk/api/train/sft.py,sha256=oa48cJ4VHemBja302-sLlc72aOh1PT3kK4-kGQLmNhg,13206
|
|
272
270
|
synth_ai/sdk/api/train/summary.py,sha256=LG0fkarwnoiuHopDnOYniA0GBOOPmcbSe-F0j4w7_Bg,25298
|
|
273
271
|
synth_ai/sdk/api/train/supported_algos.py,sha256=T-8tlh97OY3aM6MvTahqR0TtnCjSedE0jVAZSeYt6q0,5324
|
|
274
|
-
synth_ai/sdk/api/train/task_app.py,sha256=
|
|
272
|
+
synth_ai/sdk/api/train/task_app.py,sha256=WVGeEL7wdXaS3CpMHJVgpU8RyoxpA-M5Dj5UXPO6S34,13290
|
|
275
273
|
synth_ai/sdk/api/train/utils.py,sha256=ILijLXj673vxPwrm2fzKfdjoNrXMB9M00TS9L-lzzlM,7898
|
|
276
|
-
synth_ai/sdk/api/train/validators.py,sha256=
|
|
277
|
-
synth_ai/sdk/api/train/configs/__init__.py,sha256=
|
|
278
|
-
synth_ai/sdk/api/train/configs/prompt_learning.py,sha256=
|
|
279
|
-
synth_ai/sdk/api/train/configs/rl.py,sha256=
|
|
280
|
-
synth_ai/sdk/api/train/configs/sft.py,sha256=
|
|
274
|
+
synth_ai/sdk/api/train/validators.py,sha256=CcgigxpSK7kbsaJYT8q_JgF2pXWBRquosGMUuA7j4Vc,124821
|
|
275
|
+
synth_ai/sdk/api/train/configs/__init__.py,sha256=OxYQ6H8wJEHapYiT0woAvKhF1gxmU6y5ZU7_QVBe5Is,1524
|
|
276
|
+
synth_ai/sdk/api/train/configs/prompt_learning.py,sha256=ZbcBtLeNnGrlb4GHxj1067i5NUOzfKfTXjqG1o5Tj0U,82482
|
|
277
|
+
synth_ai/sdk/api/train/configs/rl.py,sha256=oh2LRITE2aDgr6aik2raYTFY-LMAadI03s2MsP4y2UM,15861
|
|
278
|
+
synth_ai/sdk/api/train/configs/sft.py,sha256=OF9ePbgYQ-CBLhhJSzuL41IthdIpLcMCS8SIdxGpZzQ,8562
|
|
281
279
|
synth_ai/sdk/api/train/configs/shared.py,sha256=UeNRmfyCwV7X7xfrthfhIbD4h3RLoo9an6VvI7QJfeE,2579
|
|
282
280
|
synth_ai/sdk/api/train/progress/__init__.py,sha256=8UK3934c_-BbM3DlFRBHxd1uxi2cdPB603GwxWWXUbI,2212
|
|
283
281
|
synth_ai/sdk/api/train/progress/dataclasses.py,sha256=dsi36wsWesMkk0q-mMnPIBdpHN6gorB5fewW3m4q7MU,20966
|
|
284
282
|
synth_ai/sdk/api/train/progress/events.py,sha256=VV_g7A9au0_JkQExKRPgci9HBwOgSBgvlfhc3ExCAkg,10973
|
|
285
283
|
synth_ai/sdk/api/train/progress/results.py,sha256=9geCkGOE6PHUVgn-3umaLt9wTAYBSFI8FiXu62gbNj8,14211
|
|
286
284
|
synth_ai/sdk/api/train/progress/tracker.py,sha256=aA0dR3hf_hODaaBNmClqagEY3kOvysmc7i5OnU5C6UI,24492
|
|
287
|
-
synth_ai/sdk/baseline/__init__.py,sha256=XBhLlIm5b5IjgO1xefpMpQ-NV1uyarv_i1vuRPBBUR0,591
|
|
288
|
-
synth_ai/sdk/baseline/config.py,sha256=01VuEXqPocuX76JUKe0a62H_b2GSIhwzQ3IM4h4pi9w,6845
|
|
289
|
-
synth_ai/sdk/baseline/discovery.py,sha256=fPfDY7vRtTtxldccHjaiNBhYudJqOhg9oRm5t1teYEU,7172
|
|
290
|
-
synth_ai/sdk/baseline/execution.py,sha256=Nx4SFCkRN9dmjBpfuLeFTBWHzBzWrO_uIMdEJuO9_Rg,5303
|
|
291
285
|
synth_ai/sdk/graphs/__init__.py,sha256=E-8SrhCCvRvAGJQdnjXc8qbYYSGy0dNUThm5PRQYkvU,262
|
|
292
|
-
synth_ai/sdk/graphs/completions.py,sha256=
|
|
286
|
+
synth_ai/sdk/graphs/completions.py,sha256=NO9izXbuVIoDGuqHBNfKi2IZtDKSSxFNCjIy4QAzc90,28433
|
|
287
|
+
synth_ai/sdk/graphs/verifier_schemas.py,sha256=56ipixqsdZQHXgNIGotjZmavhphYDl_dsOGDbfVQWho,8713
|
|
293
288
|
synth_ai/sdk/inference/__init__.py,sha256=R8NSo1Z2p4il71cJbXKfACaSz2Tn0uLhYcEnsjENVyE,75
|
|
294
289
|
synth_ai/sdk/inference/client.py,sha256=7PqED9BDav8l0jCwaFO7Vu57VmN41rcss0zAdjX5V6E,4945
|
|
295
290
|
synth_ai/sdk/jobs/__init__.py,sha256=JHofV9KgQfGUuiU1oM693WlF5J9TmV32YbfOeqxsCtQ,254
|
|
296
291
|
synth_ai/sdk/jobs/client.py,sha256=Htk7_2B0KHn--hu8gahvFdIXAIYQNU9M1Emjd0NDj-8,13235
|
|
297
|
-
synth_ai/sdk/
|
|
298
|
-
synth_ai/sdk/judging/base.py,sha256=eXEVrkEhocmO_9A9aF2BGTWiQ9i5C9ozabQlwlRNO-0,580
|
|
299
|
-
synth_ai/sdk/judging/client.py,sha256=plbMwigQfYYA5YvwOHb8702SDZsEU4qxnls0VsS58ZU,7855
|
|
300
|
-
synth_ai/sdk/judging/schemas.py,sha256=2uWocuaNFHvm4suV-9RdZg0mWccR5hFG70VJsdtV2yE,8612
|
|
301
|
-
synth_ai/sdk/judging/types.py,sha256=vpg2u4vLi7EqXJYgMM44TPXKKQKDxkcK3_KzYeHU6l0,930
|
|
302
|
-
synth_ai/sdk/learning/__init__.py,sha256=ZseQjl8UPliV4Jreuq7AinUTGm1PFDGfKPKYXXdRjAM,1814
|
|
292
|
+
synth_ai/sdk/learning/__init__.py,sha256=EiGr1q6U8Xv5hPv0fjsw10A6iOHVwUz-JY--kwP2IYM,2695
|
|
303
293
|
synth_ai/sdk/learning/algorithms.py,sha256=N2sXJ-U5QfvmSCtB2KUkTMyg46_pibYXHdIrYSKGyxA,342
|
|
304
294
|
synth_ai/sdk/learning/client.py,sha256=7lV5fw5F3vE9OcrqJ-sZeZ30579_WjuaMO7kNsRxYa0,9552
|
|
305
295
|
synth_ai/sdk/learning/config.py,sha256=-mh2thnHfuwivKnEt4VYCfPPrgwpQvY9QeMg-7HW1H4,98
|
|
306
296
|
synth_ai/sdk/learning/constants.py,sha256=QaunQg7Xru0S6AQv_-zoDprMB0ssn9sPHnhaTxz8reY,536
|
|
297
|
+
synth_ai/sdk/learning/context_learning_client.py,sha256=ajxGND54kvCSNtDU0_RD8u1sN78E-7EhEhN3xhJDMBo,17231
|
|
298
|
+
synth_ai/sdk/learning/context_learning_types.py,sha256=jUbehRMmQN1EVoy51Y9TabVuIzE6Uf7vzJ-ZbRaIL-4,10697
|
|
307
299
|
synth_ai/sdk/learning/core.py,sha256=bA_Ng3YKeCJb1scnrSapp48HildL7Pd2fHkZ4zxurZU,440
|
|
308
300
|
synth_ai/sdk/learning/ft_client.py,sha256=JMNAa0SwXbhqKo0pFPK7c8q9zVWBtyKP-lWrP6RR2s4,183
|
|
309
301
|
synth_ai/sdk/learning/gateway.py,sha256=8plVu9V_0PTt1ZI6awuh9wSFT4BqS-mLshaN77wGyDk,31
|
|
310
302
|
synth_ai/sdk/learning/health.py,sha256=6egq7mszJCi7QxZE2q8di76JsorvLGanIgoAQ1dF1CY,1593
|
|
311
303
|
synth_ai/sdk/learning/jobs.py,sha256=VDoRZ_uHZJScXbOHdHhaL6c8_nRP0rpubLsWNJ2Br_E,9261
|
|
312
304
|
synth_ai/sdk/learning/prompt_extraction.py,sha256=sG7lL3-Ve8Jg9TDhVQfX8q8fOKlOtNlbz7aKL0VfcCk,12111
|
|
313
|
-
synth_ai/sdk/learning/prompt_learning_client.py,sha256=
|
|
314
|
-
synth_ai/sdk/learning/prompt_learning_types.py,sha256=
|
|
305
|
+
synth_ai/sdk/learning/prompt_learning_client.py,sha256=vluDN2deJpfqeIi8j4Do9bXSekr6SNivLHASUIECVOs,18957
|
|
306
|
+
synth_ai/sdk/learning/prompt_learning_types.py,sha256=PqNfNxUsoID87ISDiS0Cyn5ib1s7RMNX7Tn4AAVssME,5834
|
|
315
307
|
synth_ai/sdk/learning/rl_client.py,sha256=zJfY3M-9i45lfStN7_ptk8XUAM8z7MUrk_NN4OIBqkA,92
|
|
316
308
|
synth_ai/sdk/learning/sse.py,sha256=E95hgsHK27hxyl4xcgGH_6hmn-GHk3qhgcI8H7_-7c4,1796
|
|
317
309
|
synth_ai/sdk/learning/validators.py,sha256=rBddzoMMKpK7tZ9M3kSZB43cDH6MBZibcHcj66pBdLw,1644
|
|
318
|
-
synth_ai/sdk/learning/rl/__init__.py,sha256=
|
|
310
|
+
synth_ai/sdk/learning/rl/__init__.py,sha256=QvQpTSve-W6eTYzIfaFio9ojJxFHK8z3m9aU6juNyog,788
|
|
319
311
|
synth_ai/sdk/learning/rl/client.py,sha256=InEu7BGCAap7MepkDkTb8TenwJZhGL8puf5fM8jtYjs,11479
|
|
320
312
|
synth_ai/sdk/learning/rl/config.py,sha256=T70JlL4i6tSft09-jOs84hFgAiD2XpcVCtC5Rfz7Ehk,864
|
|
321
|
-
synth_ai/sdk/learning/rl/contracts.py,sha256=
|
|
313
|
+
synth_ai/sdk/learning/rl/contracts.py,sha256=kgVuE5MCKbpSIk5VfmbeRc2zoXsVa_s2PHZPpeDPQA4,490
|
|
322
314
|
synth_ai/sdk/learning/rl/env_keys.py,sha256=WqkU0WutklwAZfdoxbgDzDrsPDYjapirELOEoPn9XIY,5586
|
|
323
315
|
synth_ai/sdk/learning/rl/secrets.py,sha256=MJkyJbiedtZmNz0L_VwSgbTk4LSmbjElmYHOf34WfEc,272
|
|
324
316
|
synth_ai/sdk/learning/sft/__init__.py,sha256=6SOcXUwYebySuy1QGLApv5U6zbAOobcSE6NsInouwPA,564
|
|
325
317
|
synth_ai/sdk/learning/sft/client.py,sha256=Q3HoAM4umeSyHo1i4Ate8NSrAJPpYRWifx-5pe4xaTo,3619
|
|
326
318
|
synth_ai/sdk/learning/sft/config.py,sha256=oDG2g7U-j8PoPcL_myBrqcgBtLJSnknXng1_c1tCTnU,9795
|
|
327
319
|
synth_ai/sdk/learning/sft/data.py,sha256=oaJr79u0I-hzngE2G-nBUAzrl6rbnaCo7ilMTy7NX6k,23590
|
|
328
|
-
synth_ai/sdk/
|
|
329
|
-
synth_ai/sdk/
|
|
330
|
-
synth_ai/sdk/
|
|
331
|
-
synth_ai/sdk/
|
|
332
|
-
synth_ai/sdk/
|
|
333
|
-
synth_ai/sdk/
|
|
334
|
-
synth_ai/sdk/
|
|
335
|
-
synth_ai/sdk/
|
|
336
|
-
synth_ai/sdk/specs/serializer.py,sha256=HOpU3jdtn8BDIwrPorKgxQhE1KIeuixNOK50ih83cxs,7505
|
|
337
|
-
synth_ai/sdk/specs/validation.py,sha256=gGdUhVZ9RXkhqImRmgZVADMPz8xZOM-cJgiO04rCs-E,8902
|
|
320
|
+
synth_ai/sdk/localapi/__init__.py,sha256=Ie5N61lGKaZ1juE3Qper04JHk18EUCZPHUQa8vdQ6tk,1001
|
|
321
|
+
synth_ai/sdk/localapi/client.py,sha256=m3ECzi5MSocXLagdCnxqDMRoeuKbWOf_w-DE0wIwJn0,254
|
|
322
|
+
synth_ai/sdk/localapi/contracts.py,sha256=vhm7NlYEwQEguXeAiHfGgcCXrcZ3ZDQ9db_F3nOYdso,274
|
|
323
|
+
synth_ai/sdk/localapi/helpers.py,sha256=UUVBD8cdJ1Lmb_CbigZNTfWfM5QLQwPnwlUrjzMYjBk,20183
|
|
324
|
+
synth_ai/sdk/localapi/rollouts.py,sha256=1ALXGqI_0TWcMcTGUSb_EmCj4PqPO5fFxasbzB1z6uw,2920
|
|
325
|
+
synth_ai/sdk/localapi/server.py,sha256=aGcKOOXyEuVzte_jThZymC2KVC5Qspx_m8rqSLKvvws,551
|
|
326
|
+
synth_ai/sdk/localapi/template.py,sha256=BOwbsZuqDkfCUObI2X1yHX4f4RXK4hl9rslCIlNvfzk,1608
|
|
327
|
+
synth_ai/sdk/localapi/apps/__init__.py,sha256=XaVL0PoA4vN0e5gI8eUIepJuVLM6X3JyqlrKraayKSc,572
|
|
338
328
|
synth_ai/sdk/streaming/__init__.py,sha256=n4NMivfc2sdCSeB1QdnrSlmf4ok3p2eXxKNVtLqceEQ,767
|
|
339
329
|
synth_ai/sdk/streaming/config.py,sha256=lx2Zn0oBG5cuWgXNz2RoBMmI_nOrnuT1px7Zy2eQ8Jw,3580
|
|
340
|
-
synth_ai/sdk/streaming/handlers.py,sha256=
|
|
341
|
-
synth_ai/sdk/streaming/streamer.py,sha256=
|
|
330
|
+
synth_ai/sdk/streaming/handlers.py,sha256=lVfl328j0gL40JYuAyOdoqtGZjanOL-wd4Nhum22ZSk,87663
|
|
331
|
+
synth_ai/sdk/streaming/streamer.py,sha256=pgQ1QNu-O4HL-sFo2wCnSTbT4sz66wmFfwmiXO_FLSI,31322
|
|
342
332
|
synth_ai/sdk/streaming/types.py,sha256=Vz1llmdZMegDKURhvFLYSFYwLZT9RNIpPGOK6hJFyM0,3720
|
|
343
|
-
synth_ai/sdk/task/__init__.py,sha256=
|
|
333
|
+
synth_ai/sdk/task/__init__.py,sha256=rrnU9pF57fk2XN6Pc3YNXS_0jJWHQnXExwNrHSu-LsE,4186
|
|
344
334
|
synth_ai/sdk/task/auth.py,sha256=IUD3DcU-43qczWV9sSccXsjDOkZe8sJHmcQtues1YWQ,5652
|
|
345
|
-
synth_ai/sdk/task/client.py,sha256=
|
|
346
|
-
synth_ai/sdk/task/config.py,sha256=
|
|
347
|
-
synth_ai/sdk/task/contracts.py,sha256=
|
|
335
|
+
synth_ai/sdk/task/client.py,sha256=B02qQ6VV1nP99XCIzv-dXgLLa6X7PatlCBqrzI06YFw,5967
|
|
336
|
+
synth_ai/sdk/task/config.py,sha256=AcwS9nOOk8N6eV93f4WsflQmnw54nFmndGx7J0vcAyc,8663
|
|
337
|
+
synth_ai/sdk/task/contracts.py,sha256=sizvuInWUq7K2jLwTGEdbMHHb9rKPRRvPH5I49CZJtk,10871
|
|
348
338
|
synth_ai/sdk/task/datasets.py,sha256=QCQIzFj580YEfUths60tYNM3UGPB9gYgQ9aMVHOS0UI,3974
|
|
349
339
|
synth_ai/sdk/task/errors.py,sha256=BOdWz0fgJVprx2-mGRJTnTilAGHmc4WRpUVFA7eLrlc,1524
|
|
350
340
|
synth_ai/sdk/task/health.py,sha256=wfNNLYlWLmwoPpHA8ahDdqb0YAZ8JTyHzs8bdIX-pOI,1139
|
|
351
|
-
synth_ai/sdk/task/in_process.py,sha256=
|
|
352
|
-
synth_ai/sdk/task/in_process_runner.py,sha256
|
|
341
|
+
synth_ai/sdk/task/in_process.py,sha256=p7KcKXRS-9j-uhpPaofMrSynGsZDsU7K2UmViS_fHgo,52892
|
|
342
|
+
synth_ai/sdk/task/in_process_runner.py,sha256=-gKNaEQ76i9_jCjflspnWUmBg-Le_UvyQnrjQte8tR8,11694
|
|
353
343
|
synth_ai/sdk/task/inference_api.py,sha256=nwDhU9U5hcnuGbPCUz3tveHsnjTkTf5gNa59IrnH_20,11957
|
|
354
344
|
synth_ai/sdk/task/json.py,sha256=SB9XdHFloJha9WeClq4mvaL8B21-fRl9kb1d1JlNfIc,3612
|
|
355
345
|
synth_ai/sdk/task/proxy.py,sha256=0iZw9vSuRJ8p5QTWzGj3bTXFja9wIeuP_pBKkNN375M,10126
|
|
356
346
|
synth_ai/sdk/task/rubrics.py,sha256=_qqAvl1NFGW6nJlzmI3UwjxuvWbOQeLcMwrZpmpMQGk,7180
|
|
357
|
-
synth_ai/sdk/task/server.py,sha256=
|
|
358
|
-
synth_ai/sdk/task/trace_correlation_helpers.py,sha256=
|
|
347
|
+
synth_ai/sdk/task/server.py,sha256=ryhnd4gLeUn8ikgavCriLcvH3Rov_JYsxYm0g0e9PBQ,23981
|
|
348
|
+
synth_ai/sdk/task/trace_correlation_helpers.py,sha256=P6gbRalFk9XPN1x7MXpXEUdQJ_mtE3IK1oD0EoW4A1Y,20031
|
|
359
349
|
synth_ai/sdk/task/tracing_utils.py,sha256=6tztut5Aolh_5Vf9PnNxeBOrWik4SHlODQk5fG5pKps,3112
|
|
360
|
-
synth_ai/sdk/task/validators.py,sha256=
|
|
350
|
+
synth_ai/sdk/task/validators.py,sha256=Kn26P2WeOJShhI8U5L-hzCxNIte2KX2SigNtQy8D2so,17930
|
|
361
351
|
synth_ai/sdk/task/vendors.py,sha256=a5t_1HGwPnPUoPMbzNB87jOTCyA4S7W7eIgJ-E4Gfew,1626
|
|
362
|
-
synth_ai/sdk/task/apps/__init__.py,sha256=
|
|
363
|
-
synth_ai/sdk/task/rubrics/__init__.py,sha256=
|
|
364
|
-
synth_ai/sdk/task/rubrics/loaders.py,sha256=
|
|
352
|
+
synth_ai/sdk/task/apps/__init__.py,sha256=RMZaXOJEkNI8xpE748FQXp0RTUMJjKa3-eqauhWrTUc,5340
|
|
353
|
+
synth_ai/sdk/task/rubrics/__init__.py,sha256=t-n3kHjV16-QBvxySpEPuG7oycrrIkf4zt8xVHy9J6Y,1372
|
|
354
|
+
synth_ai/sdk/task/rubrics/loaders.py,sha256=4w8S6Jvtr7DQ982Qa5J23E0QGrANQN7FpDSZW36_HdM,5286
|
|
365
355
|
synth_ai/sdk/task/rubrics/models.py,sha256=wCwv8DzVOZ724yoGi-fduFWAEglR1tg2H3ct_4SdVks,1703
|
|
366
356
|
synth_ai/sdk/task/rubrics/scoring.py,sha256=eea5KXnlJWUASFf2kYXClbZEW48SGv0mlvvvX-265rU,3752
|
|
367
|
-
synth_ai/sdk/task/rubrics/strict.py,sha256=
|
|
368
|
-
synth_ai/sdk/
|
|
369
|
-
synth_ai/sdk/
|
|
370
|
-
synth_ai/sdk/
|
|
371
|
-
synth_ai/sdk/
|
|
372
|
-
synth_ai/sdk/
|
|
357
|
+
synth_ai/sdk/task/rubrics/strict.py,sha256=ku3Brz71bVdYz0Ejp_dm8EO1remsUwORJ1wDhzJoJUQ,4354
|
|
358
|
+
synth_ai/sdk/training/__init__.py,sha256=WzO8Kk1LKR5ungOmfeJ7jsNAW_0i0y1Cp-d1aP80vYU,2736
|
|
359
|
+
synth_ai/sdk/tunnels/__init__.py,sha256=XzyL_QDgSg39aHggB9lsdqKTbOJ-bO74PdjMnsgLy-0,3497
|
|
360
|
+
synth_ai/sdk/tunnels/cleanup.py,sha256=urAwd9VPPZVJmBfrCPaplHbkSpi1gMCbgDcJqINviDo,2337
|
|
361
|
+
synth_ai/sdk/tunnels/ports.py,sha256=eudnZSV09Asse5zD3fTIZ3eOLMnQQEQhIon7PV98ZiU,3693
|
|
362
|
+
synth_ai/sdk/tunnels/tunneled_api.py,sha256=ExdsnRvjk8kZKmoLQFe4JD63Q7hA7LJbGnTg7Yni3dA,12481
|
|
373
363
|
synth_ai/utils/__init__.py,sha256=jMc6oUg5p7wIgKaZ7R8H-RNzSP_JAFux-5rkOraYjQA,6922
|
|
374
|
-
synth_ai-0.4.
|
|
375
|
-
synth_ai-0.4.
|
|
376
|
-
synth_ai-0.4.
|
|
377
|
-
synth_ai-0.4.
|
|
378
|
-
synth_ai-0.4.
|
|
379
|
-
synth_ai-0.4.
|
|
364
|
+
synth_ai-0.4.4.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
|
|
365
|
+
synth_ai-0.4.4.dist-info/METADATA,sha256=ShdkTgWAtZgHOpK7pSzuDUbQ1eIo1c_02Zs9tzHZYLk,9676
|
|
366
|
+
synth_ai-0.4.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
367
|
+
synth_ai-0.4.4.dist-info/entry_points.txt,sha256=GSFXaJreq4PJXbixkUI0GHZwGh2dZDG5pYaoVmqr_KE,46
|
|
368
|
+
synth_ai-0.4.4.dist-info/top_level.txt,sha256=fBmtZyVHuKaGa29oHBaaUkrUIWTqSpoVMPiVdCDP3k8,9
|
|
369
|
+
synth_ai-0.4.4.dist-info/RECORD,,
|