paid-python 0.3.6__py3-none-any.whl → 0.4.1__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.
Files changed (30) hide show
  1. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/__init__.py +6 -6
  2. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/__init__.py +2 -2
  3. opentelemetry/instrumentation/openai/shared/audio_wrappers.py +247 -0
  4. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/chat_wrappers.py +5 -5
  5. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/completion_wrappers.py +5 -5
  6. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/embeddings_wrappers.py +5 -5
  7. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/event_emitter.py +2 -2
  8. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/image_gen_wrappers.py +3 -3
  9. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/utils.py +24 -1
  10. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/v0/__init__.py +6 -6
  11. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/v1/__init__.py +45 -9
  12. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/v1/assistant_wrappers.py +6 -6
  13. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/v1/event_handler_wrapper.py +4 -4
  14. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/v1/responses_wrappers.py +186 -69
  15. opentelemetry/instrumentation/openai/version.py +1 -0
  16. paid/client.py +23 -2
  17. paid/tracing/__init__.py +2 -1
  18. paid/tracing/autoinstrumentation.py +1 -2
  19. paid/tracing/tracing.py +16 -0
  20. {paid_python-0.3.6.dist-info → paid_python-0.4.1.dist-info}/METADATA +9 -1
  21. {paid_python-0.3.6.dist-info → paid_python-0.4.1.dist-info}/RECORD +26 -28
  22. paid/_vendor/__init__.py +0 -0
  23. paid/_vendor/opentelemetry/__init__.py +0 -0
  24. paid/_vendor/opentelemetry/instrumentation/__init__.py +0 -0
  25. paid/_vendor/opentelemetry/instrumentation/openai/version.py +0 -1
  26. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/config.py +0 -0
  27. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/event_models.py +0 -0
  28. {paid/_vendor/opentelemetry → opentelemetry}/instrumentation/openai/shared/span_utils.py +0 -0
  29. {paid_python-0.3.6.dist-info → paid_python-0.4.1.dist-info}/LICENSE +0 -0
  30. {paid_python-0.3.6.dist-info → paid_python-0.4.1.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: paid-python
3
- Version: 0.3.6
3
+ Version: 0.4.1
4
4
  Summary:
5
5
  Requires-Python: >=3.9,<3.14
6
6
  Classifier: Intended Audience :: Developers
@@ -767,6 +767,14 @@ async def do_work():
767
767
  await do_work()
768
768
  ```
769
769
 
770
+ ### Paid OTEL Tracer Provider
771
+
772
+ If you would like to use the Paid OTEL tracer provider:
773
+ ```python
774
+ from paid.tracing import get_paid_tracer_provider
775
+ paid_tracer_provider = get_paid_tracer_provider()
776
+ ```
777
+
770
778
  ## Contributing
771
779
 
772
780
  While we value open-source contributions to this SDK, this library is generated programmatically.
@@ -1,28 +1,8 @@
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
22
2
  paid/agents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
23
3
  paid/agents/client.py,sha256=ojc3H-nx4MqDrb74_i6JE_wjHSJaVAErsIunfNeffMo,23305
24
4
  paid/agents/raw_client.py,sha256=jN9LvPK2-bGeNQzcV3iRmprpegXKtO2JaOEXjnPfz9Y,26833
25
- paid/client.py,sha256=2GGQByab__kDKaWeNy4wK_T6RkS36TX_mA6fsO08Ww4,23035
5
+ paid/client.py,sha256=6S5X8rzTJmDlI5dTBLGVor5RUfxLir5nt_sVsIaG-tE,23905
26
6
  paid/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
27
7
  paid/contacts/client.py,sha256=sNm-yAg4dR9AyYWL7-RC_CuCCvOXX7YlDAUqn47yZhE,14058
28
8
  paid/contacts/raw_client.py,sha256=ZYNWuekHiL2sqK_gHR0IzcrLAopUKRXIqMUi-fuLGe4,19211
@@ -56,13 +36,13 @@ paid/orders/lines/client.py,sha256=GqSwiXdlu49KLHt7uccS_H4nkVQosM1_PQOcPA9v82A,4
56
36
  paid/orders/lines/raw_client.py,sha256=KZN_yBokCOkf1lUb4ZJtX_NZbqmTqCdJNoaIOdWar8I,4590
57
37
  paid/orders/raw_client.py,sha256=650e1Sj2vi9KVJc15M3ENXIKYoth0qMz66dzvXy1Sb4,16245
58
38
  paid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- paid/tracing/__init__.py,sha256=Pe55koIwqJ6Vv5-9Wqi8xIdwCS2BbxZds-MK5fD-F5Y,506
60
- paid/tracing/autoinstrumentation.py,sha256=kH2d1wGPLE6Ore60nNAwFUKAWkH-3N_B_6urJYoobMg,7732
39
+ paid/tracing/__init__.py,sha256=fwjE0SnDWxNZKpYFnLB9IfTMa5ZIfLejs1aM4UA57yY,564
40
+ paid/tracing/autoinstrumentation.py,sha256=8te1SHvSAUpyigPmKHGyQtuT6NTPgSmCQ5C6V3jjw9g,7598
61
41
  paid/tracing/context_data.py,sha256=oiLocz-9qDqB5nQzJlrLsc2Mkr9MaNt_yF_hjppobKc,3298
62
42
  paid/tracing/context_manager.py,sha256=ZQtsJ9JPxTwn2t4AW26WpYboaOEZdI2T1Sw0Rwsbf-E,8470
63
43
  paid/tracing/distributed_tracing.py,sha256=Vht3U8QJmT5jlRVnrybTn-cI1RPuVtyb3V4eTu6gA4g,3991
64
44
  paid/tracing/signal.py,sha256=PfYxF6EFQS8j7RY5_C5NXrCBVu9Hq2E2tyG4fdQScJk,3252
65
- paid/tracing/tracing.py,sha256=Gl1DMz4YXcFTe3QRbGWAAbNYGNsBJ-QdONkMNBVQIos,16034
45
+ paid/tracing/tracing.py,sha256=MCIqzRELFB6VbvFrnpIp7bLX7HYfpHnmUapDLcAEioE,16478
66
46
  paid/tracing/wrappers/__init__.py,sha256=IIleLB_JUbzLw7FshrU2VHZAKF3dZHMGy1O5zCBwwqM,1588
67
47
  paid/tracing/wrappers/anthropic/__init__.py,sha256=_x1fjySAQxuT5cIGO_jU09LiGcZH-WQLqKg8mUFAu2w,115
68
48
  paid/tracing/wrappers/anthropic/anthropicWrapper.py,sha256=pGchbOb41CbTxc7H8xXoM-LjR085spqrzXqCVC_rrFk,4913
@@ -119,7 +99,25 @@ paid/usage/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
119
99
  paid/usage/client.py,sha256=280WJuepoovk3BAVbAx2yN2Q_qBdvx3CcPkLu8lXslc,3030
120
100
  paid/usage/raw_client.py,sha256=2acg5C4lxuZodZjepU9QYF0fmBxgG-3ZgXs1zUJG-wM,3709
121
101
  paid/version.py,sha256=QIpDFnOrxMxrs86eL0iNH0mSZ1DO078wWHYY9TYAoew,78
122
- paid_python-0.3.6.dist-info/LICENSE,sha256=Nz4baY1zvv0Qy7lqrQtbaiMhmEeGr2Q7A93aqzpml4c,1071
123
- paid_python-0.3.6.dist-info/METADATA,sha256=1z2fAr0_DoxcW9K249iiqR7HKQOs4VW5UsOcdwT3VXM,23632
124
- paid_python-0.3.6.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
125
- paid_python-0.3.6.dist-info/RECORD,,
102
+ opentelemetry/instrumentation/openai/__init__.py,sha256=Mx_nwMl0TlhUjrQOR4qdx6MEhBUKp5cuUIIXFzi3mXo,2093
103
+ opentelemetry/instrumentation/openai/shared/__init__.py,sha256=CnGrqxyUCP8aQivAmPKTW-SEm97ewhhgRNACkzc0kU0,12705
104
+ opentelemetry/instrumentation/openai/shared/audio_wrappers.py,sha256=kkb4mM9WW_MBI5X8RHWmaFYDMsYjWr9nFT1atGAhTAc,7184
105
+ opentelemetry/instrumentation/openai/shared/chat_wrappers.py,sha256=0c4csAv_lM39vjg43Q70K5AExnCqWolFA3cGoSqBPeg,40487
106
+ opentelemetry/instrumentation/openai/shared/completion_wrappers.py,sha256=OAy-tp-jHFvZKb-n_AyZPuXPI3F2lpEmGmnAgIhH6a0,9353
107
+ opentelemetry/instrumentation/openai/shared/config.py,sha256=xMSz47vDPboU3Vciulf6lZkyWXTFA6eaLJHk-tYfkus,479
108
+ opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py,sha256=eb4HU7cklpR0vi_H9OlpkLZmKH0touWYIipuacJipA0,9364
109
+ opentelemetry/instrumentation/openai/shared/event_emitter.py,sha256=zQ4ZCz7VnWWDGHIdlYm8T3MGFpldpOOy8M15iB_HuK8,3237
110
+ opentelemetry/instrumentation/openai/shared/event_models.py,sha256=PCfCGxrrArwZqR-4wFcXrhwQq0sBMAxmSrpC4PUMtaM,876
111
+ opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py,sha256=y_jN9oqjiOCoht3z-L1vuxaYehZRcpqUB4x3FyoqdrI,2120
112
+ opentelemetry/instrumentation/openai/shared/span_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ opentelemetry/instrumentation/openai/utils.py,sha256=LN5CcmbNoOto9HXJRkx578e47bhSo5JgDZ_ztvMCsvk,5680
114
+ opentelemetry/instrumentation/openai/v0/__init__.py,sha256=g4wONoGVqyFjyoYmT1kL3qrB808sawxd9fOY_BoLCgg,6315
115
+ opentelemetry/instrumentation/openai/v1/__init__.py,sha256=TK9qP6VCoLoQ4SoUu0RQJUtB4bVmkDSmgHPEiuQl_OI,14629
116
+ opentelemetry/instrumentation/openai/v1/assistant_wrappers.py,sha256=gXpQUY0KAi0HMcRLztq_3a5Olbg2IqvTUwgdSkXrjr4,11460
117
+ opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py,sha256=IjmMDnX7EFOuaOi34YIOfHG07pGWDhEssMQhu9AS9XY,4410
118
+ opentelemetry/instrumentation/openai/v1/responses_wrappers.py,sha256=bfovvrFPI-2v7xxgTBBO3X_D4fzwJffBaYHAGXLq90o,44463
119
+ opentelemetry/instrumentation/openai/version.py,sha256=lqGEr9tvmZ_6Qa2559q1rV0OQ1kC9xcQ9JVV0A-9nt4,23
120
+ paid_python-0.4.1.dist-info/LICENSE,sha256=Nz4baY1zvv0Qy7lqrQtbaiMhmEeGr2Q7A93aqzpml4c,1071
121
+ paid_python-0.4.1.dist-info/METADATA,sha256=jPKYNlUFZ-qXFTqu_djl2qwEGbxwh1jxslAS8Y1jfbA,23834
122
+ paid_python-0.4.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
123
+ paid_python-0.4.1.dist-info/RECORD,,
paid/_vendor/__init__.py DELETED
File without changes
File without changes
File without changes
@@ -1 +0,0 @@
1
- __version__ = "0.48.1"