paid-python 0.3.4__py3-none-any.whl → 0.3.5__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.
- paid/_vendor/__init__.py +0 -0
- paid/_vendor/opentelemetry/__init__.py +0 -0
- paid/_vendor/opentelemetry/instrumentation/__init__.py +0 -0
- paid/_vendor/opentelemetry/instrumentation/openai/__init__.py +54 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/__init__.py +399 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/chat_wrappers.py +1192 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/completion_wrappers.py +292 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/config.py +15 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py +311 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/event_emitter.py +108 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/event_models.py +41 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py +68 -0
- paid/_vendor/opentelemetry/instrumentation/openai/shared/span_utils.py +0 -0
- paid/_vendor/opentelemetry/instrumentation/openai/utils.py +190 -0
- paid/_vendor/opentelemetry/instrumentation/openai/v0/__init__.py +176 -0
- paid/_vendor/opentelemetry/instrumentation/openai/v1/__init__.py +358 -0
- paid/_vendor/opentelemetry/instrumentation/openai/v1/assistant_wrappers.py +329 -0
- paid/_vendor/opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py +134 -0
- paid/_vendor/opentelemetry/instrumentation/openai/v1/responses_wrappers.py +996 -0
- paid/_vendor/opentelemetry/instrumentation/openai/version.py +1 -0
- paid/tracing/autoinstrumentation.py +2 -1
- {paid_python-0.3.4.dist-info → paid_python-0.3.5.dist-info}/METADATA +1 -2
- {paid_python-0.3.4.dist-info → paid_python-0.3.5.dist-info}/RECORD +25 -5
- {paid_python-0.3.4.dist-info → paid_python-0.3.5.dist-info}/LICENSE +0 -0
- {paid_python-0.3.4.dist-info → paid_python-0.3.5.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.48.1"
|
|
@@ -22,7 +22,8 @@ except ImportError:
|
|
|
22
22
|
ANTHROPIC_AVAILABLE = False
|
|
23
23
|
|
|
24
24
|
try:
|
|
25
|
-
from opentelemetry.instrumentation.openai import OpenAIInstrumentor
|
|
25
|
+
# from opentelemetry.instrumentation.openai import OpenAIInstrumentor
|
|
26
|
+
from paid._vendor.opentelemetry.instrumentation.openai import OpenAIInstrumentor # remove once openai instrumentor is upstream
|
|
26
27
|
|
|
27
28
|
OPENAI_AVAILABLE = True
|
|
28
29
|
except ImportError:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: paid-python
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.9,<3.14
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -26,7 +26,6 @@ Requires-Dist: opentelemetry-api (>=1.23.0)
|
|
|
26
26
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.23.0)
|
|
27
27
|
Requires-Dist: opentelemetry-instrumentation-anthropic (>=0.47.0)
|
|
28
28
|
Requires-Dist: opentelemetry-instrumentation-langchain (>=0.47.0)
|
|
29
|
-
Requires-Dist: opentelemetry-instrumentation-openai (>=0.47.0)
|
|
30
29
|
Requires-Dist: opentelemetry-sdk (>=1.23.0)
|
|
31
30
|
Requires-Dist: pydantic (>=1.9.0)
|
|
32
31
|
Requires-Dist: pydantic-core (>=2.18.0)
|
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
paid/__init__.py,sha256=D1SeLoeTlySo_vZCZrxFX3y5KhKGrHflphLXoewImfk,1826
|
|
2
|
+
paid/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
paid/_vendor/opentelemetry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
paid/_vendor/opentelemetry/instrumentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
paid/_vendor/opentelemetry/instrumentation/openai/__init__.py,sha256=pCv_Z7FJVlR7XumomPX6AAmuIFDzik_PeAA6rpkgO80,2171
|
|
6
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/__init__.py,sha256=hpn2hQFg-VnXdNaXJHd8CKDCBx5P4gTOqsrlOD8ispQ,12731
|
|
7
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/chat_wrappers.py,sha256=X8Wu8zdXmOCCC1Cu-tpiOTZUdK2dKAd_Uhc8URjTwXc,40552
|
|
8
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/completion_wrappers.py,sha256=gNzYfU6niiRmx-qkz39nV_hWBZjk1g4GYFC8KamDBXs,9418
|
|
9
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/config.py,sha256=xMSz47vDPboU3Vciulf6lZkyWXTFA6eaLJHk-tYfkus,479
|
|
10
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py,sha256=lswpTs4aqH_7tchfHEFcp7rDsmmN4y_wTiV2Fn_iAGQ,9429
|
|
11
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/event_emitter.py,sha256=hxZ1y3Ie8e_mUq655jDDMIZ1ko49QsRUVuHMPQdESlE,3263
|
|
12
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/event_models.py,sha256=PCfCGxrrArwZqR-4wFcXrhwQq0sBMAxmSrpC4PUMtaM,876
|
|
13
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py,sha256=E_fRtkqHAX9tWIsBKCbd4jSIlgCKipaH7vGhLMrlQZI,2159
|
|
14
|
+
paid/_vendor/opentelemetry/instrumentation/openai/shared/span_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
paid/_vendor/opentelemetry/instrumentation/openai/utils.py,sha256=i-HqIUMNf6lIvfj9dBarCEWzFquEU5Ak7_O9hzPrRVg,5106
|
|
16
|
+
paid/_vendor/opentelemetry/instrumentation/openai/v0/__init__.py,sha256=SWemnoZhnXwoSb0qZ5H_dpnTFtCryyfpAGmhMuUJAbs,6393
|
|
17
|
+
paid/_vendor/opentelemetry/instrumentation/openai/v1/__init__.py,sha256=sEf6lTWoIIxkdmOeqyaYiZzq2DP-lpjudygCddzE7Ww,13334
|
|
18
|
+
paid/_vendor/opentelemetry/instrumentation/openai/v1/assistant_wrappers.py,sha256=EOwYdg4GbQ4TMnGrGNABwNyhoYNanPyrYRKqNMELhl0,11538
|
|
19
|
+
paid/_vendor/opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py,sha256=tzTKrKEXZMuSr98G4A-s10YHIJPzKvxkvck9ZrPnFZk,4462
|
|
20
|
+
paid/_vendor/opentelemetry/instrumentation/openai/v1/responses_wrappers.py,sha256=XfBeUfzzrxOEvEkXFHFkaMYMHoARL6qkjjGu0o96hAs,38538
|
|
21
|
+
paid/_vendor/opentelemetry/instrumentation/openai/version.py,sha256=BlW7lOSPQf4pAwU6T5nih5Vp6GJ_QyPSV_8_zA7WSp0,23
|
|
2
22
|
paid/agents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
3
23
|
paid/agents/client.py,sha256=ojc3H-nx4MqDrb74_i6JE_wjHSJaVAErsIunfNeffMo,23305
|
|
4
24
|
paid/agents/raw_client.py,sha256=jN9LvPK2-bGeNQzcV3iRmprpegXKtO2JaOEXjnPfz9Y,26833
|
|
@@ -37,7 +57,7 @@ paid/orders/lines/raw_client.py,sha256=KZN_yBokCOkf1lUb4ZJtX_NZbqmTqCdJNoaIOdWar
|
|
|
37
57
|
paid/orders/raw_client.py,sha256=650e1Sj2vi9KVJc15M3ENXIKYoth0qMz66dzvXy1Sb4,16245
|
|
38
58
|
paid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
59
|
paid/tracing/__init__.py,sha256=Pe55koIwqJ6Vv5-9Wqi8xIdwCS2BbxZds-MK5fD-F5Y,506
|
|
40
|
-
paid/tracing/autoinstrumentation.py,sha256=
|
|
60
|
+
paid/tracing/autoinstrumentation.py,sha256=Vdd0PrjLSzyxXujY45S9a0tAKjtLs8-SHbg81v23WkY,7784
|
|
41
61
|
paid/tracing/context_data.py,sha256=oiLocz-9qDqB5nQzJlrLsc2Mkr9MaNt_yF_hjppobKc,3298
|
|
42
62
|
paid/tracing/context_manager.py,sha256=ZQtsJ9JPxTwn2t4AW26WpYboaOEZdI2T1Sw0Rwsbf-E,8470
|
|
43
63
|
paid/tracing/distributed_tracing.py,sha256=Vht3U8QJmT5jlRVnrybTn-cI1RPuVtyb3V4eTu6gA4g,3991
|
|
@@ -99,7 +119,7 @@ paid/usage/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
|
|
|
99
119
|
paid/usage/client.py,sha256=280WJuepoovk3BAVbAx2yN2Q_qBdvx3CcPkLu8lXslc,3030
|
|
100
120
|
paid/usage/raw_client.py,sha256=2acg5C4lxuZodZjepU9QYF0fmBxgG-3ZgXs1zUJG-wM,3709
|
|
101
121
|
paid/version.py,sha256=QIpDFnOrxMxrs86eL0iNH0mSZ1DO078wWHYY9TYAoew,78
|
|
102
|
-
paid_python-0.3.
|
|
103
|
-
paid_python-0.3.
|
|
104
|
-
paid_python-0.3.
|
|
105
|
-
paid_python-0.3.
|
|
122
|
+
paid_python-0.3.5.dist-info/LICENSE,sha256=Nz4baY1zvv0Qy7lqrQtbaiMhmEeGr2Q7A93aqzpml4c,1071
|
|
123
|
+
paid_python-0.3.5.dist-info/METADATA,sha256=V99x_8mHOv0uUo6pwD7rcf2AEOYhSouqgMlJZAawyDI,23632
|
|
124
|
+
paid_python-0.3.5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
125
|
+
paid_python-0.3.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|