promptlayer 1.0.71__py3-none-any.whl → 1.0.73__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 promptlayer might be problematic. Click here for more details.
- promptlayer/__init__.py +37 -2
- promptlayer/exceptions.py +119 -0
- promptlayer/groups/__init__.py +9 -5
- promptlayer/groups/groups.py +4 -6
- promptlayer/promptlayer.py +76 -28
- promptlayer/promptlayer_base.py +19 -9
- promptlayer/promptlayer_mixins.py +5 -3
- promptlayer/span_exporter.py +16 -9
- promptlayer/templates.py +11 -7
- promptlayer/track/__init__.py +18 -10
- promptlayer/track/track.py +53 -28
- promptlayer/utils.py +717 -306
- {promptlayer-1.0.71.dist-info → promptlayer-1.0.73.dist-info}/METADATA +3 -1
- promptlayer-1.0.73.dist-info/RECORD +23 -0
- promptlayer-1.0.71.dist-info/RECORD +0 -22
- {promptlayer-1.0.71.dist-info → promptlayer-1.0.73.dist-info}/WHEEL +0 -0
- {promptlayer-1.0.71.dist-info → promptlayer-1.0.73.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: promptlayer
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.73
|
|
4
4
|
Summary: PromptLayer is a platform for prompt engineering and tracks your LLM requests.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
@@ -17,11 +17,13 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.14
|
|
18
18
|
Requires-Dist: ably (>=2.0.11,<3.0.0)
|
|
19
19
|
Requires-Dist: aiohttp (>=3.10.10,<4.0.0)
|
|
20
|
+
Requires-Dist: centrifuge-python (>=0.4.1,<0.5.0)
|
|
20
21
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
21
22
|
Requires-Dist: nest-asyncio (>=1.6.0,<2.0.0)
|
|
22
23
|
Requires-Dist: opentelemetry-api (>=1.26.0,<2.0.0)
|
|
23
24
|
Requires-Dist: opentelemetry-sdk (>=1.26.0,<2.0.0)
|
|
24
25
|
Requires-Dist: requests (>=2.31.0,<3.0.0)
|
|
26
|
+
Requires-Dist: tenacity (>=9.1.2,<10.0.0)
|
|
25
27
|
Description-Content-Type: text/markdown
|
|
26
28
|
|
|
27
29
|
<div align="center">
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
promptlayer/__init__.py,sha256=1pJtyuoR0bZkhStJmT2ecsAKUU0bGv6-9IXqZbBhcdk,1130
|
|
2
|
+
promptlayer/exceptions.py,sha256=uERG7eGVrpFxT6Liuhl1BM0ntQTYmfVvulyRit2rxFc,2782
|
|
3
|
+
promptlayer/groups/__init__.py,sha256=pUBynk9iWzX8e2alhyiLn5tloc5PmWA4SvFzDdE9DTw,724
|
|
4
|
+
promptlayer/groups/groups.py,sha256=4rut8h2LvqAPNr5MG97vdvOAt1URzObl0aWEgRESHWU,368
|
|
5
|
+
promptlayer/promptlayer.py,sha256=-QIdRVgcVVXb_g5YvfsBeAYXX7x59TF5tHCKEEnotpY,25191
|
|
6
|
+
promptlayer/promptlayer_base.py,sha256=4iv1jA8gRw2nT5C-0dKEMS3x-FI5gmg8S4eMXFcnxeU,7477
|
|
7
|
+
promptlayer/promptlayer_mixins.py,sha256=E8LmNqh6VOKtmqKi4AvQCEZ9tFKgeufKhcFU-d4pr1I,15820
|
|
8
|
+
promptlayer/span_exporter.py,sha256=5dufK_Qu__RazRXs3HV7kqn2YVWsxBwt9R4tmXlVdzU,2725
|
|
9
|
+
promptlayer/streaming/__init__.py,sha256=nKWwUsAy4FjJLT6rxntXCyVlKOov-xT2dk7sOXrgpUs,1897
|
|
10
|
+
promptlayer/streaming/blueprint_builder.py,sha256=lz4aGo_1tytuPB7AkA3y-xyl1ZQHnHOA2fZZl5CaK2Q,12769
|
|
11
|
+
promptlayer/streaming/response_handlers.py,sha256=wtl9ubb0kEB-ZuIpl0_kOvw9wZI4XRKyKqT3-d4EtWE,35410
|
|
12
|
+
promptlayer/streaming/stream_processor.py,sha256=atnaBg31kmTPSF433DF7uV3jiLuJOnA5Vz8tVCQ5v2Y,4083
|
|
13
|
+
promptlayer/templates.py,sha256=tiCKgTzytzNOwFdq_UFbaQrCGakWeYAPjF5n9uM0nao,1641
|
|
14
|
+
promptlayer/track/__init__.py,sha256=a1rCuaxNeweBNZVXPoNnmBXKeiU_PXjOLqxapYopEeo,2276
|
|
15
|
+
promptlayer/track/track.py,sha256=hvCQSY6JlDsk4NzmibF1Zbg1DairOpmFLcmVLeJ1cu0,4567
|
|
16
|
+
promptlayer/types/__init__.py,sha256=xJcvQuOk91ZBBePb40-1FDNDKYrZoH5lPE2q6_UhprM,111
|
|
17
|
+
promptlayer/types/prompt_template.py,sha256=cqxNX9QQHKh1lwpwSp-IjNI8Yw9jOVNI3frAflz23sQ,5155
|
|
18
|
+
promptlayer/types/request_log.py,sha256=xU6bcxQar6GaBOJlgZTavXUV3FjE8sF_nSjPu4Ya_00,174
|
|
19
|
+
promptlayer/utils.py,sha256=0kDMSqs8p_i-50Z19VTgDUeiiw8iXroxgZGTtNjYZTI,78231
|
|
20
|
+
promptlayer-1.0.73.dist-info/METADATA,sha256=HFZQHOnlso77duiGjwXE_6Xa1HOapPIOyxKBLXCDeAY,4984
|
|
21
|
+
promptlayer-1.0.73.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
22
|
+
promptlayer-1.0.73.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
23
|
+
promptlayer-1.0.73.dist-info/RECORD,,
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
promptlayer/__init__.py,sha256=R1toGawVL32byfVpvRnZ1Kt5zuCtw7qm2dfxuWb7EBc,140
|
|
2
|
-
promptlayer/groups/__init__.py,sha256=xhOAolLUBkr76ZHvJr29OwjCIk1V9qKQXjZCuyTJUIY,429
|
|
3
|
-
promptlayer/groups/groups.py,sha256=YPROicy-TzpkrpA8vOpZS2lwvJ6VRtlbQ1S2oT1N0vM,338
|
|
4
|
-
promptlayer/promptlayer.py,sha256=hxzzq5bXkOJXvRCbBmtDLCSb4JlozpTJ00Ofk5Y_pQg,22901
|
|
5
|
-
promptlayer/promptlayer_base.py,sha256=jOgXzNZlV1LKOOsXSSAOgn8o4hXn_EV0oY9Nf3Bsu_s,6872
|
|
6
|
-
promptlayer/promptlayer_mixins.py,sha256=fFh36b4nOjCuktuii-Doi6BEJtXQwWQaxk_KexS75kA,15686
|
|
7
|
-
promptlayer/span_exporter.py,sha256=Pc1-zWAcjVCSykh-4rYPqiEZvzkG9xaYLVoHFY_TWaQ,2410
|
|
8
|
-
promptlayer/streaming/__init__.py,sha256=nKWwUsAy4FjJLT6rxntXCyVlKOov-xT2dk7sOXrgpUs,1897
|
|
9
|
-
promptlayer/streaming/blueprint_builder.py,sha256=lz4aGo_1tytuPB7AkA3y-xyl1ZQHnHOA2fZZl5CaK2Q,12769
|
|
10
|
-
promptlayer/streaming/response_handlers.py,sha256=wtl9ubb0kEB-ZuIpl0_kOvw9wZI4XRKyKqT3-d4EtWE,35410
|
|
11
|
-
promptlayer/streaming/stream_processor.py,sha256=atnaBg31kmTPSF433DF7uV3jiLuJOnA5Vz8tVCQ5v2Y,4083
|
|
12
|
-
promptlayer/templates.py,sha256=oRCuELDet8SAKhtqNvyLQpOAa9sVesJwIBEFX1PbXd4,1231
|
|
13
|
-
promptlayer/track/__init__.py,sha256=tyweLTAY7UpYpBHWwY-T3pOPDIlGjcgccYXqU_r0694,1710
|
|
14
|
-
promptlayer/track/track.py,sha256=A-awcYwsSwxktrlCMchy8NITIquwxU1UXbgLZMwqrA0,3164
|
|
15
|
-
promptlayer/types/__init__.py,sha256=xJcvQuOk91ZBBePb40-1FDNDKYrZoH5lPE2q6_UhprM,111
|
|
16
|
-
promptlayer/types/prompt_template.py,sha256=cqxNX9QQHKh1lwpwSp-IjNI8Yw9jOVNI3frAflz23sQ,5155
|
|
17
|
-
promptlayer/types/request_log.py,sha256=xU6bcxQar6GaBOJlgZTavXUV3FjE8sF_nSjPu4Ya_00,174
|
|
18
|
-
promptlayer/utils.py,sha256=8O5SDJidRYfDX0bkl4J3IiNvS6lH03KQZ0bYA9yMueg,61196
|
|
19
|
-
promptlayer-1.0.71.dist-info/METADATA,sha256=W1xBEkS2_JIGWvYM_7BhWMHJEFvvgEnmdNrVl3ZJa_A,4892
|
|
20
|
-
promptlayer-1.0.71.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
21
|
-
promptlayer-1.0.71.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
22
|
-
promptlayer-1.0.71.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|