payi 0.1.0a78__py3-none-any.whl → 0.1.0a79__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 payi might be problematic. Click here for more details.
- payi/_version.py +1 -1
- payi/lib/GoogleGenAiInstrumentor.py +7 -2
- payi/lib/VertexInstrumentor.py +7 -2
- {payi-0.1.0a78.dist-info → payi-0.1.0a79.dist-info}/METADATA +1 -1
- {payi-0.1.0a78.dist-info → payi-0.1.0a79.dist-info}/RECORD +7 -7
- {payi-0.1.0a78.dist-info → payi-0.1.0a79.dist-info}/WHEEL +0 -0
- {payi-0.1.0a78.dist-info → payi-0.1.0a79.dist-info}/licenses/LICENSE +0 -0
payi/_version.py
CHANGED
|
@@ -279,8 +279,13 @@ class _GoogleGenAiRequest(_ProviderRequest):
|
|
|
279
279
|
kwargs: Any) -> Any:
|
|
280
280
|
response_dict = response.to_json_dict()
|
|
281
281
|
|
|
282
|
-
|
|
283
|
-
|
|
282
|
+
id: Optional[str] = response_dict.get("response_id", None)
|
|
283
|
+
if id:
|
|
284
|
+
self._ingest["provider_response_id"] = id
|
|
285
|
+
|
|
286
|
+
model: Optional[str] = response_dict.get("model_version", None)
|
|
287
|
+
if model:
|
|
288
|
+
self._ingest["resource"] = "google." + model
|
|
284
289
|
|
|
285
290
|
self._compute_usage(response_dict)
|
|
286
291
|
|
payi/lib/VertexInstrumentor.py
CHANGED
|
@@ -225,8 +225,13 @@ class _GoogleVertexRequest(_ProviderRequest):
|
|
|
225
225
|
kwargs: Any) -> Any:
|
|
226
226
|
response_dict = response.to_dict()
|
|
227
227
|
|
|
228
|
-
|
|
229
|
-
|
|
228
|
+
id: Optional[str] = response_dict.get("response_id", None)
|
|
229
|
+
if id:
|
|
230
|
+
self._ingest["provider_response_id"] = id
|
|
231
|
+
|
|
232
|
+
model: Optional[str] = response_dict.get("model_version", None)
|
|
233
|
+
if model:
|
|
234
|
+
self._ingest["resource"] = "google." + model
|
|
230
235
|
|
|
231
236
|
self._compute_usage(response_dict)
|
|
232
237
|
|
|
@@ -11,7 +11,7 @@ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
|
11
11
|
payi/_response.py,sha256=rh9oJAvCKcPwQFm4iqH_iVrmK8bNx--YP_A2a4kN1OU,28776
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
13
|
payi/_types.py,sha256=7jE5MoQQFVoVxw5vVzvZ2Ao0kcjfNOGsBgyJfLBEnMo,6195
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=MLgow-cNbiMJNJyd_AiRF-v6Uf2iehuCmP-7NoWXwME,165
|
|
15
15
|
payi/pagination.py,sha256=k2356QGPOUSjRF2vHpwLBdF6P-2vnQzFfRIJQAHGQ7A,1258
|
|
16
16
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
payi/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
@@ -27,10 +27,10 @@ payi/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
|
27
27
|
payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
28
28
|
payi/lib/AnthropicInstrumentor.py,sha256=q1Iq2NG06OHUwcwTgYjHa1_kwhbSxE3vrGk_fm5IGSM,8749
|
|
29
29
|
payi/lib/BedrockInstrumentor.py,sha256=cIjHlPQmVEAixabUoT3mV8h50lfzdc1u8iLj0gQNukE,14076
|
|
30
|
-
payi/lib/GoogleGenAiInstrumentor.py,sha256=
|
|
30
|
+
payi/lib/GoogleGenAiInstrumentor.py,sha256=isfuYH0y9LZZPcjPkynRQzwhtsN9H2p4DqtPYTm8hqI,13549
|
|
31
31
|
payi/lib/OpenAIInstrumentor.py,sha256=iMOriAm-2zcRNjQDkEAG-NfZhBJUnkBDrNNbO920ajc,17468
|
|
32
32
|
payi/lib/Stopwatch.py,sha256=7OJlxvr2Jyb6Zr1LYCYKczRB7rDVKkIR7gc4YoleNdE,764
|
|
33
|
-
payi/lib/VertexInstrumentor.py,sha256=
|
|
33
|
+
payi/lib/VertexInstrumentor.py,sha256=aW4ZT7YVXy8V_g91KkSEapzI7Cy6UQfaU1D0ZOU4eBE,11886
|
|
34
34
|
payi/lib/helpers.py,sha256=K1KAfWrpPT1UUGNxspLe1lHzQjP3XV5Pkh9IU4pKMok,4624
|
|
35
35
|
payi/lib/instrument.py,sha256=UpZ6SGg3YI9lSxmwH5ziwe1xt_ca6FS35CcNJpG9ONM,58214
|
|
36
36
|
payi/resources/__init__.py,sha256=1rtrPLWbNt8oJGOp6nwPumKLJ-ftez0B6qwLFyfcoP4,2972
|
|
@@ -142,7 +142,7 @@ payi/types/use_cases/definitions/kpi_retrieve_response.py,sha256=uQXliSvS3k-yDYw
|
|
|
142
142
|
payi/types/use_cases/definitions/kpi_update_params.py,sha256=jbawdWAdMnsTWVH0qfQGb8W7_TXe3lq4zjSRu44d8p8,373
|
|
143
143
|
payi/types/use_cases/definitions/kpi_update_response.py,sha256=zLyEoT0S8d7XHsnXZYT8tM7yDw0Aze0Mk-_Z6QeMtc8,459
|
|
144
144
|
payi/types/use_cases/definitions/limit_config_create_params.py,sha256=pzQza_16N3z8cFNEKr6gPbFvuGFrwNuGxAYb--Kbo2M,449
|
|
145
|
-
payi-0.1.
|
|
146
|
-
payi-0.1.
|
|
147
|
-
payi-0.1.
|
|
148
|
-
payi-0.1.
|
|
145
|
+
payi-0.1.0a79.dist-info/METADATA,sha256=q1w_end8QNRR1SHmVtO422PWiNIwmZFxobjFZuqnxRE,15180
|
|
146
|
+
payi-0.1.0a79.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
147
|
+
payi-0.1.0a79.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
|
|
148
|
+
payi-0.1.0a79.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|