synth-ai 0.2.9.dev6__py3-none-any.whl → 0.2.9.dev8__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 +7 -0
- synth_ai/main.py +4 -0
- {synth_ai-0.2.9.dev6.dist-info → synth_ai-0.2.9.dev8.dist-info}/METADATA +1 -1
- {synth_ai-0.2.9.dev6.dist-info → synth_ai-0.2.9.dev8.dist-info}/RECORD +8 -7
- {synth_ai-0.2.9.dev6.dist-info → synth_ai-0.2.9.dev8.dist-info}/WHEEL +0 -0
- {synth_ai-0.2.9.dev6.dist-info → synth_ai-0.2.9.dev8.dist-info}/entry_points.txt +0 -0
- {synth_ai-0.2.9.dev6.dist-info → synth_ai-0.2.9.dev8.dist-info}/licenses/LICENSE +0 -0
- {synth_ai-0.2.9.dev6.dist-info → synth_ai-0.2.9.dev8.dist-info}/top_level.txt +0 -0
synth_ai/__init__.py
CHANGED
|
@@ -17,6 +17,12 @@ try:
|
|
|
17
17
|
except Exception:
|
|
18
18
|
AsyncOpenAI = OpenAI = None # type: ignore
|
|
19
19
|
|
|
20
|
+
# For LLMs
|
|
21
|
+
try:
|
|
22
|
+
from .main import SynthAI
|
|
23
|
+
except Exception:
|
|
24
|
+
SynthAI = None
|
|
25
|
+
|
|
20
26
|
# Legacy tracing v1 is not required for v3 usage and can be unavailable in minimal envs.
|
|
21
27
|
tracing = None # type: ignore
|
|
22
28
|
EventPartitionElement = RewardSignal = SystemTrace = TrainingQuestion = None # type: ignore
|
|
@@ -49,4 +55,5 @@ __all__ = [
|
|
|
49
55
|
"AsyncAnthropic",
|
|
50
56
|
"environments",
|
|
51
57
|
"help",
|
|
58
|
+
"SynthAI"
|
|
52
59
|
] # Explicitly define public API (v1 tracing omitted in minimal env)
|
synth_ai/main.py
ADDED
|
@@ -123,12 +123,13 @@ examples/warming_up_to_rl/task_app/synth_envs_hosted/inference/openai_client.py,
|
|
|
123
123
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/__init__.py,sha256=1nwfPuiIFXPjj6JnxoudYq6GE4tpg5tiPL0uIpGsIUc,134
|
|
124
124
|
examples/warming_up_to_rl/task_app/synth_envs_hosted/storage/volume.py,sha256=1YJt5gpKhhJaFT8Cs7DdK_QDZCdUBAXQmpZfC5TX5Q4,6517
|
|
125
125
|
synth/__init__.py,sha256=jTIZ_Zfjmx7yrrce0S58BSpsAp-IW-MfQtbeYQ7s1F0,267
|
|
126
|
-
synth_ai/__init__.py,sha256=
|
|
126
|
+
synth_ai/__init__.py,sha256=ptP2QNL5u-Xu-sW3YuI1_yRZgTuB79oz_-T_q3ilVog,1671
|
|
127
127
|
synth_ai/__main__.py,sha256=Kh1xBKkTE5Vs2qNMtDuuOXerHUptMcOiF3YziOpC6DA,146
|
|
128
128
|
synth_ai/demo_registry.py,sha256=vqt_E7-YdjXc-Q4qcY36wfvwHPGyYBb7lw_sPjKiH3w,9949
|
|
129
129
|
synth_ai/handshake.py,sha256=Qxe0aLNcBVH5V02fNKq96GPF_2Z8GOAToDR_2HyaeaA,3739
|
|
130
130
|
synth_ai/http.py,sha256=ACzDOkwa7kIniZVOZngPc6Zfp05h6rQE1oNqsWG_FKo,1038
|
|
131
131
|
synth_ai/http_client.py,sha256=5AkwvGf7HpvYUpxr_IIM1xdsDjLYois7xTht5ueHYkk,5058
|
|
132
|
+
synth_ai/main.py,sha256=M-Zm6jzKDUC6cHFBU2g9YDHptmxLBIJTY0WST1v7An4,85
|
|
132
133
|
synth_ai/api/models/supported.py,sha256=vQu6Ahw1jn1X3-nL190pH_Z45tkQj8hdDyTTda8t5LQ,12671
|
|
133
134
|
synth_ai/api/train/__init__.py,sha256=aBwlmrj1HWVwDcvUrX4TqpS0BgvkE7Pv7npoIZmtTFU,118
|
|
134
135
|
synth_ai/api/train/builders.py,sha256=8TXHDDA2cyKYd7GmLeAMpocn1VS4LYQjNucF0f9674s,10378
|
|
@@ -562,9 +563,9 @@ synth_ai/v0/tracing_v3/abstractions.py,sha256=7IHKkzicFEJ4UXJbodK11Pi8YYq7Vt8Ev_
|
|
|
562
563
|
synth_ai/v0/tracing_v3/decorators.py,sha256=fRyVBKEbxAPZoDsBH7t8OVLVixvgD_Lw_1ONF1TuZxU,108
|
|
563
564
|
synth_ai/v0/tracing_v3/llm_call_record_helpers.py,sha256=JYSpGtW-RC-DnhUIPdVADNF3rK5x8Tl8DOymbmRI99I,121
|
|
564
565
|
synth_ai/v0/tracing_v3/session_tracer.py,sha256=TSUzb_fUUlpwOqFE1X-Fs14nG2CNe7MZLKOvH7cV2kE,112
|
|
565
|
-
synth_ai-0.2.9.
|
|
566
|
-
synth_ai-0.2.9.
|
|
567
|
-
synth_ai-0.2.9.
|
|
568
|
-
synth_ai-0.2.9.
|
|
569
|
-
synth_ai-0.2.9.
|
|
570
|
-
synth_ai-0.2.9.
|
|
566
|
+
synth_ai-0.2.9.dev8.dist-info/licenses/LICENSE,sha256=ynhjRQUfqA_RdGRATApfFA_fBAy9cno04sLtLUqxVFM,1069
|
|
567
|
+
synth_ai-0.2.9.dev8.dist-info/METADATA,sha256=PKlFWRRE0XP9SouzSdWERvpg6y5ZQR7CWYGqBUfONv8,5973
|
|
568
|
+
synth_ai-0.2.9.dev8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
569
|
+
synth_ai-0.2.9.dev8.dist-info/entry_points.txt,sha256=Neq-3bT7TAijjgOIR77pKL-WYg6TWBDeO8pp_nL4vGY,91
|
|
570
|
+
synth_ai-0.2.9.dev8.dist-info/top_level.txt,sha256=2cSIzycTn0tayJXquy_uquOpwcd8eKqKPnVIwnRmwDE,24
|
|
571
|
+
synth_ai-0.2.9.dev8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|