openlit 1.28.0__py3-none-any.whl → 1.29.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.
@@ -132,13 +132,18 @@ class GPUInstrumentor(BaseInstrumentor):
132
132
  gpu_index, e)
133
133
  return 0
134
134
 
135
+ def safe_decode(byte_string):
136
+ if isinstance(byte_string, bytes):
137
+ return byte_string.decode('utf-8')
138
+ return byte_string
139
+
135
140
  attributes = {
136
141
  TELEMETRY_SDK_NAME: "openlit",
137
142
  SemanticConvetion.GEN_AI_APPLICATION_NAME: application_name,
138
143
  SemanticConvetion.GEN_AI_ENVIRONMENT: environment,
139
144
  SemanticConvetion.GPU_INDEX: str(gpu_index),
140
- SemanticConvetion.GPU_UUID: pynvml.nvmlDeviceGetUUID(handle).decode('utf-8'),
141
- SemanticConvetion.GPU_NAME: pynvml.nvmlDeviceGetName(handle).decode('utf-8')
145
+ SemanticConvetion.GPU_UUID: safe_decode(pynvml.nvmlDeviceGetUUID(handle)),
146
+ SemanticConvetion.GPU_NAME: safe_decode(pynvml.nvmlDeviceGetName(handle))
142
147
  }
143
148
  yield Observation(get_metric_value(handle, metric_name), attributes)
144
149
 
@@ -6,6 +6,7 @@ from opentelemetry.instrumentation.instrumentor import BaseInstrumentor
6
6
  from wrapt import wrap_function_wrapper
7
7
 
8
8
  from openlit.instrumentation.qdrant.qdrant import general_wrap
9
+ from openlit.instrumentation.qdrant.async_qdrant import async_general_wrap
9
10
 
10
11
  _instruments = ("qdrant-client >= 1.9.0",)
11
12
 
@@ -118,7 +119,146 @@ WRAPPED_METHODS = [
118
119
  "object": "QdrantClient.recommend",
119
120
  "endpoint": "qdrant.recommend",
120
121
  "wrapper": general_wrap,
121
- }
122
+ },
123
+ {
124
+
125
+ "package": "qdrant_client",
126
+ "object": "QdrantClient.create_payload_index",
127
+ "endpoint": "qdrant.create_payload_index",
128
+ "wrapper": general_wrap,
129
+ },
130
+ {
131
+
132
+ "package": "qdrant_client",
133
+ "object": "QdrantClient.query_points",
134
+ "endpoint": "qdrant.query_points",
135
+ "wrapper": general_wrap,
136
+ },
137
+
138
+ # Async Client
139
+ {
140
+ "package": "qdrant_client",
141
+ "object": "AsyncQdrantClient.create_collection",
142
+ "endpoint": "qdrant.create_collection",
143
+ "wrapper": async_general_wrap,
144
+ },
145
+ {
146
+ "package": "qdrant_client",
147
+ "object": "AsyncQdrantClient.delete_collection",
148
+ "endpoint": "qdrant.delete_collection",
149
+ "wrapper": async_general_wrap,
150
+ },
151
+ {
152
+ "package": "qdrant_client",
153
+ "object": "AsyncQdrantClient.update_collection",
154
+ "endpoint": "qdrant.update_collection",
155
+ "wrapper": async_general_wrap,
156
+ },
157
+ {
158
+ "package": "qdrant_client",
159
+ "object": "AsyncQdrantClient.upload_collection",
160
+ "endpoint": "qdrant.upload_collection",
161
+ "wrapper": async_general_wrap,
162
+ },
163
+ {
164
+ "package": "qdrant_client",
165
+ "object": "AsyncQdrantClient.upsert",
166
+ "endpoint": "qdrant.upsert",
167
+ "wrapper": async_general_wrap,
168
+ },
169
+ {
170
+ "package": "qdrant_client",
171
+ "object": "AsyncQdrantClient.set_payload",
172
+ "endpoint": "qdrant.set_payload",
173
+ "wrapper": async_general_wrap,
174
+ },
175
+ {
176
+ "package": "qdrant_client",
177
+ "object": "AsyncQdrantClient.overwrite_payload",
178
+ "endpoint": "qdrant.overwrite_payload",
179
+ "wrapper": async_general_wrap,
180
+ },
181
+ {
182
+ "package": "qdrant_client",
183
+ "object": "AsyncQdrantClient.clear_payload",
184
+ "endpoint": "qdrant.clear_payload",
185
+ "wrapper": async_general_wrap,
186
+ },
187
+ {
188
+ "package": "qdrant_client",
189
+ "object": "AsyncQdrantClient.delete_payload",
190
+ "endpoint": "qdrant.delete_payload",
191
+ "wrapper": async_general_wrap,
192
+ },
193
+ {
194
+ "package": "qdrant_client",
195
+ "object": "AsyncQdrantClient.upload_points",
196
+ "endpoint": "qdrant.upload_points",
197
+ "wrapper": async_general_wrap,
198
+ },
199
+ {
200
+ "package": "qdrant_client",
201
+ "object": "AsyncQdrantClient.update_vectors",
202
+ "endpoint": "qdrant.update_vectors",
203
+ "wrapper": async_general_wrap,
204
+ },
205
+ {
206
+ "package": "qdrant_client",
207
+ "object": "AsyncQdrantClient.delete_vectors",
208
+ "endpoint": "qdrant.delete_vectors",
209
+ "wrapper": async_general_wrap,
210
+ },
211
+ {
212
+ "package": "qdrant_client",
213
+ "object": "AsyncQdrantClient.delete",
214
+ "endpoint": "qdrant.delete",
215
+ "wrapper": async_general_wrap,
216
+ },
217
+ {
218
+ "package": "qdrant_client",
219
+ "object": "AsyncQdrantClient.retrieve",
220
+ "endpoint": "qdrant.retrieve",
221
+ "wrapper": async_general_wrap,
222
+ },
223
+ {
224
+ "package": "qdrant_client",
225
+ "object": "AsyncQdrantClient.scroll",
226
+ "endpoint": "qdrant.scroll",
227
+ "wrapper": async_general_wrap,
228
+ },
229
+ {
230
+ "package": "qdrant_client",
231
+ "object": "AsyncQdrantClient.search",
232
+ "endpoint": "qdrant.search",
233
+ "wrapper": async_general_wrap,
234
+ },
235
+ {
236
+ "package": "qdrant_client",
237
+ "object": "AsyncQdrantClient.search_groups",
238
+ "endpoint": "qdrant.search_groups",
239
+ "wrapper": async_general_wrap,
240
+ },
241
+ {
242
+
243
+ "package": "qdrant_client",
244
+ "object": "AsyncQdrantClient.recommend",
245
+ "endpoint": "qdrant.recommend",
246
+ "wrapper": async_general_wrap,
247
+ },
248
+ {
249
+
250
+ "package": "qdrant_client",
251
+ "object": "AsyncQdrantClient.create_payload_index",
252
+ "endpoint": "qdrant.create_payload_index",
253
+ "wrapper": async_general_wrap,
254
+ },
255
+ {
256
+
257
+ "package": "qdrant_client",
258
+ "object": "AsyncQdrantClient.query_points",
259
+ "endpoint": "qdrant.query_points",
260
+ "wrapper": async_general_wrap,
261
+ },
122
262
  ]
123
263
 
124
264
  class QdrantInstrumentor(BaseInstrumentor):
@@ -0,0 +1,267 @@
1
+ # pylint: disable=duplicate-code, broad-exception-caught, too-many-statements, unused-argument, possibly-used-before-assignment, too-many-branches
2
+ """
3
+ Module for monitoring Qdrant.
4
+ """
5
+
6
+ import logging
7
+ from opentelemetry.trace import SpanKind, Status, StatusCode
8
+ from opentelemetry.sdk.resources import TELEMETRY_SDK_NAME
9
+ from openlit.__helpers import handle_exception
10
+ from openlit.semcov import SemanticConvetion
11
+
12
+ # Initialize logger for logging potential issues and operations
13
+ logger = logging.getLogger(__name__)
14
+
15
+ def object_count(obj):
16
+ """
17
+ Counts Length of object if it exists, Else returns None
18
+ """
19
+ try:
20
+ cnt = len(obj)
21
+ # pylint: disable=bare-except
22
+ except:
23
+ cnt = 0
24
+
25
+ return cnt
26
+
27
+ def async_general_wrap(gen_ai_endpoint, version, environment, application_name,
28
+ tracer, pricing_info, trace_content, metrics, disable_metrics):
29
+ """
30
+ Creates a wrapper around a function call to trace and log its execution metrics.
31
+
32
+ This function wraps any given function to measure its execution time,
33
+ log its operation, and trace its execution using OpenTelemetry.
34
+
35
+ Parameters:
36
+ - gen_ai_endpoint (str): A descriptor or name for the endpoint being traced.
37
+ - version (str): The version of the Langchain application.
38
+ - environment (str): The deployment environment (e.g., 'production', 'development').
39
+ - application_name (str): Name of the Langchain application.
40
+ - tracer (opentelemetry.trace.Tracer): The tracer object used for OpenTelemetry tracing.
41
+ - pricing_info (dict): Information about the pricing for internal metrics (currently not used).
42
+ - trace_content (bool): Flag indicating whether to trace the content of the response.
43
+
44
+ Returns:
45
+ - function: A higher-order function that takes a function 'wrapped' and returns
46
+ a new function that wraps 'wrapped' with additional tracing and logging.
47
+ """
48
+
49
+ async def wrapper(wrapped, instance, args, kwargs):
50
+ """
51
+ An inner wrapper function that executes the wrapped function, measures execution
52
+ time, and records trace data using OpenTelemetry.
53
+
54
+ Parameters:
55
+ - wrapped (Callable): The original function that this wrapper will execute.
56
+ - instance (object): The instance to which the wrapped function belongs. This
57
+ is used for instance methods. For static and classmethods,
58
+ this may be None.
59
+ - args (tuple): Positional arguments passed to the wrapped function.
60
+ - kwargs (dict): Keyword arguments passed to the wrapped function.
61
+
62
+ Returns:
63
+ - The result of the wrapped function call.
64
+
65
+ The wrapper initiates a span with the provided tracer, sets various attributes
66
+ on the span based on the function's execution and response, and ensures
67
+ errors are handled and logged appropriately.
68
+ """
69
+ with tracer.start_as_current_span(gen_ai_endpoint, kind= SpanKind.CLIENT) as span:
70
+ response = await wrapped(*args, **kwargs)
71
+
72
+ try:
73
+ span.set_attribute(TELEMETRY_SDK_NAME, "openlit")
74
+ span.set_attribute(SemanticConvetion.GEN_AI_ENDPOINT,
75
+ gen_ai_endpoint)
76
+ span.set_attribute(SemanticConvetion.GEN_AI_ENVIRONMENT,
77
+ environment)
78
+ span.set_attribute(SemanticConvetion.GEN_AI_APPLICATION_NAME,
79
+ application_name)
80
+ span.set_attribute(SemanticConvetion.GEN_AI_TYPE,
81
+ SemanticConvetion.GEN_AI_TYPE_VECTORDB)
82
+ span.set_attribute(SemanticConvetion.DB_SYSTEM,
83
+ SemanticConvetion.DB_SYSTEM_QDRANT)
84
+
85
+ if gen_ai_endpoint == "qdrant.create_collection":
86
+ db_operation = SemanticConvetion.DB_OPERATION_CREATE_COLLECTION
87
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
88
+ SemanticConvetion.DB_OPERATION_CREATE_COLLECTION)
89
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
90
+ kwargs.get("collection_name", ""))
91
+
92
+ elif gen_ai_endpoint == "qdrant.upload_collection":
93
+ db_operation = SemanticConvetion.DB_OPERATION_CREATE_COLLECTION
94
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
95
+ SemanticConvetion.DB_OPERATION_CREATE_COLLECTION)
96
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
97
+ kwargs.get("collection_name", ""))
98
+
99
+ elif gen_ai_endpoint == "qdrant.delete_collection":
100
+ db_operation = SemanticConvetion.DB_OPERATION_DELETE_COLLECTION
101
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
102
+ SemanticConvetion.DB_OPERATION_DELETE_COLLECTION)
103
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
104
+ kwargs.get("collection_name", ""))
105
+
106
+ elif gen_ai_endpoint == "qdrant.update_collection":
107
+ db_operation = SemanticConvetion.DB_OPERATION_UPDATE_COLLECTION
108
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
109
+ SemanticConvetion.DB_OPERATION_UPDATE_COLLECTION)
110
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
111
+ kwargs.get("collection_name", ""))
112
+
113
+ elif gen_ai_endpoint == "qdrant.set_payload":
114
+ db_operation = SemanticConvetion.DB_OPERATION_ADD
115
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
116
+ SemanticConvetion.DB_OPERATION_ADD)
117
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
118
+ kwargs.get("collection_name", ""))
119
+ span.set_attribute(SemanticConvetion.DB_OPERATION_STATUS,
120
+ response.status)
121
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
122
+ object_count(kwargs.get("points", [])))
123
+ span.set_attribute(SemanticConvetion.DB_PAYLOAD_COUNT,
124
+ object_count(kwargs.get("payload", [])))
125
+
126
+ elif gen_ai_endpoint == "qdrant.retrieve":
127
+ db_operation = SemanticConvetion.DB_OPERATION_QUERY
128
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
129
+ SemanticConvetion.DB_OPERATION_QUERY)
130
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
131
+ kwargs.get("collection_name", ""))
132
+ span.set_attribute(SemanticConvetion.DB_STATEMENT,
133
+ str(kwargs.get("ids", "")))
134
+
135
+ elif gen_ai_endpoint == "qdrant.scroll":
136
+ db_operation = SemanticConvetion.DB_OPERATION_QUERY
137
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
138
+ SemanticConvetion.DB_OPERATION_QUERY)
139
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
140
+ kwargs.get("collection_name", ""))
141
+ span.set_attribute(SemanticConvetion.DB_STATEMENT,
142
+ str(kwargs.get("scroll_filter", "")))
143
+
144
+ elif gen_ai_endpoint in ["qdrant.search", "qdrant.search_groups"]:
145
+ db_operation = SemanticConvetion.DB_OPERATION_QUERY
146
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
147
+ SemanticConvetion.DB_OPERATION_QUERY)
148
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
149
+ kwargs.get("collection_name", ""))
150
+ span.set_attribute(SemanticConvetion.DB_STATEMENT,
151
+ str(kwargs.get("query_vector", "")))
152
+
153
+ elif gen_ai_endpoint == "qdrant.recommend":
154
+ db_operation = SemanticConvetion.DB_OPERATION_QUERY
155
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
156
+ SemanticConvetion.DB_OPERATION_QUERY)
157
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
158
+ kwargs.get("collection_name", ""))
159
+ span.set_attribute(SemanticConvetion.DB_STATEMENT,
160
+ "positive:" + str(kwargs.get("positive", "")) +
161
+ " negative:" + str(kwargs.get("negative", "")))
162
+
163
+ elif gen_ai_endpoint == "qdrant.upload_points":
164
+ db_operation = SemanticConvetion.DB_OPERATION_ADD
165
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
166
+ SemanticConvetion.DB_OPERATION_ADD)
167
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
168
+ kwargs.get("collection_name", ""))
169
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
170
+ object_count(kwargs.get("points")))
171
+
172
+ elif gen_ai_endpoint == "qdrant.update_vectors":
173
+ db_operation = SemanticConvetion.DB_OPERATION_UPDATE
174
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
175
+ SemanticConvetion.DB_OPERATION_UPDATE)
176
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
177
+ kwargs.get("collection_name", ""))
178
+ span.set_attribute(SemanticConvetion.DB_OPERATION_STATUS,
179
+ response.status)
180
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
181
+ object_count(kwargs.get("points")))
182
+
183
+ elif gen_ai_endpoint == "qdrant.overwrite_payload":
184
+ db_operation = SemanticConvetion.DB_OPERATION_UPDATE
185
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
186
+ SemanticConvetion.DB_OPERATION_UPDATE)
187
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
188
+ kwargs.get("collection_name", ""))
189
+ span.set_attribute(SemanticConvetion.DB_OPERATION_STATUS,
190
+ response.status)
191
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
192
+ object_count(kwargs.get("points")))
193
+ span.set_attribute(SemanticConvetion.DB_PAYLOAD_COUNT,
194
+ object_count(kwargs.get("payload")))
195
+
196
+ elif gen_ai_endpoint == "qdrant.upsert":
197
+ db_operation = SemanticConvetion.DB_OPERATION_UPSERT
198
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
199
+ kwargs.get("collection_name", ""))
200
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
201
+ SemanticConvetion.DB_OPERATION_UPSERT)
202
+ span.set_attribute(SemanticConvetion.DB_OPERATION_STATUS,
203
+ response.status)
204
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
205
+ object_count(kwargs.get("points")))
206
+
207
+ elif gen_ai_endpoint in ["qdrant.delete_payload", "qdrant.delete_vectors"]:
208
+ db_operation = SemanticConvetion.DB_OPERATION_DELETE
209
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
210
+ SemanticConvetion.DB_OPERATION_DELETE)
211
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
212
+ kwargs.get("collection_name", ""))
213
+ span.set_attribute(SemanticConvetion.DB_OPERATION_STATUS,
214
+ response.status)
215
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
216
+ object_count(kwargs.get("points")))
217
+
218
+ elif gen_ai_endpoint in ["qdrant.clear_payload", "qdrant.delete"]:
219
+ db_operation = SemanticConvetion.DB_OPERATION_DELETE
220
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
221
+ SemanticConvetion.DB_OPERATION_DELETE)
222
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
223
+ kwargs.get("collection_name", ""))
224
+ span.set_attribute(SemanticConvetion.DB_OPERATION_STATUS,
225
+ response.status)
226
+ span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
227
+ object_count(kwargs.get("points_selector")))
228
+
229
+ elif gen_ai_endpoint == "qdrant.create_payload_index":
230
+ db_operation = SemanticConvetion.DB_OPERATION_CREATE_INDEX
231
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
232
+ SemanticConvetion.DB_OPERATION_CREATE_INDEX)
233
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
234
+ kwargs.get("collection_name", ""))
235
+ span.set_attribute(SemanticConvetion.DB_STATEMENT,
236
+ str(kwargs.get("query", "")))
237
+
238
+ span.set_status(Status(StatusCode.OK))
239
+
240
+ if disable_metrics is False:
241
+ attributes = {
242
+ TELEMETRY_SDK_NAME:
243
+ "openlit",
244
+ SemanticConvetion.GEN_AI_APPLICATION_NAME:
245
+ application_name,
246
+ SemanticConvetion.DB_SYSTEM:
247
+ SemanticConvetion.DB_SYSTEM_QDRANT,
248
+ SemanticConvetion.GEN_AI_ENVIRONMENT:
249
+ environment,
250
+ SemanticConvetion.GEN_AI_TYPE:
251
+ SemanticConvetion.GEN_AI_TYPE_VECTORDB,
252
+ SemanticConvetion.DB_OPERATION:
253
+ db_operation
254
+ }
255
+
256
+ metrics["db_requests"].add(1, attributes)
257
+
258
+ return response
259
+
260
+ except Exception as e:
261
+ handle_exception(span, e)
262
+ logger.error("Error in trace creation: %s", e)
263
+
264
+ # Return original response
265
+ return response
266
+
267
+ return wrapper
@@ -226,6 +226,22 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
226
226
  span.set_attribute(SemanticConvetion.DB_VECTOR_COUNT,
227
227
  object_count(kwargs.get("points_selector")))
228
228
 
229
+ elif gen_ai_endpoint == "qdrant.create_payload_index":
230
+ db_operation = SemanticConvetion.DB_OPERATION_CREATE_INDEX
231
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
232
+ SemanticConvetion.DB_OPERATION_CREATE_INDEX)
233
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
234
+ kwargs.get("collection_name", ""))
235
+
236
+ elif gen_ai_endpoint == "qdrant.query_points":
237
+ db_operation = SemanticConvetion.DB_OPERATION_QUERY
238
+ span.set_attribute(SemanticConvetion.DB_OPERATION,
239
+ SemanticConvetion.DB_OPERATION_QUERY)
240
+ span.set_attribute(SemanticConvetion.DB_COLLECTION_NAME,
241
+ kwargs.get("collection_name", ""))
242
+ span.set_attribute(SemanticConvetion.DB_STATEMENT,
243
+ str(kwargs.get("query", "")))
244
+
229
245
  span.set_status(Status(StatusCode.OK))
230
246
 
231
247
  if disable_metrics is False:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: openlit
3
- Version: 1.28.0
3
+ Version: 1.29.1
4
4
  Summary: OpenTelemetry-native Auto instrumentation library for monitoring LLM Applications and GPUs, facilitating the integration of observability into your GenAI-driven projects
5
5
  Home-page: https://github.com/openlit/openlit/tree/main/openlit/python
6
6
  Keywords: OpenTelemetry,otel,otlp,llm,tracing,openai,anthropic,claude,cohere,llm monitoring,observability,monitoring,gpt,Generative AI,chatGPT,gpu
@@ -34,7 +34,7 @@ openlit/instrumentation/google_ai_studio/async_google_ai_studio.py,sha256=20MHsp
34
34
  openlit/instrumentation/google_ai_studio/google_ai_studio.py,sha256=vIJjzl5Fkgsf3vfaqmxhtSFvOpXK-wGC-JFhEXGP50M,13636
35
35
  openlit/instrumentation/gpt4all/__init__.py,sha256=-59CP2B3-HGZJ_vC-fI9Dt-0BuQXRhSCWCjnaGeU15Q,1802
36
36
  openlit/instrumentation/gpt4all/gpt4all.py,sha256=dbxqZeuTrv_y6wyDOIEmC8-Dc4iCGgLpj3l5JiodLMI,18787
37
- openlit/instrumentation/gpu/__init__.py,sha256=wahEF66rCRVT8XafJkif6Yac8JcIMTMMm9fN1X2lwhI,10882
37
+ openlit/instrumentation/gpu/__init__.py,sha256=niMQS-tmVcHSFPGC39JWOnQK306Ve6GhsOUCMneOC88,11076
38
38
  openlit/instrumentation/groq/__init__.py,sha256=uW_0G6HSanQyK2dIXYhzR604pDiyPQfybzc37DsfSew,1911
39
39
  openlit/instrumentation/groq/async_groq.py,sha256=myob-d9V66YiNmkFd9rtmMaXjlLiSMVHi_US16L-rZw,20011
40
40
  openlit/instrumentation/groq/groq.py,sha256=m4gFPbYzjUUIgjXZ0Alu2Zy1HcO5takCFA2XFnkcGVo,19975
@@ -59,8 +59,9 @@ openlit/instrumentation/openai/azure_openai.py,sha256=dZUc5MtCwg_sZJWiruG6exYGhP
59
59
  openlit/instrumentation/openai/openai.py,sha256=pOeehRgd0GMITGMYUU6PUsjvPDUWmF-L_ER9ry1hL_c,48214
60
60
  openlit/instrumentation/pinecone/__init__.py,sha256=Mv9bElqNs07_JQkYyNnO0wOM3hdbprmw7sttdMeKC7g,2526
61
61
  openlit/instrumentation/pinecone/pinecone.py,sha256=0EhLmtOuvwWVvAKh3e56wyd8wzQq1oaLOmF15SVHxVE,8765
62
- openlit/instrumentation/qdrant/__init__.py,sha256=OJIg17-IGmBEvBYVKjCHcJ0hFXuEL7XV_jzUTqkolN8,4799
63
- openlit/instrumentation/qdrant/qdrant.py,sha256=4uHKYGvWQtRAEVLUWo3o4joJw7hFm2NxVuBu5YKZKiI,14456
62
+ openlit/instrumentation/qdrant/__init__.py,sha256=GMlZgRBKoQMgrL4cFbAKwytfdTHLzJEIuTQMxp0uZO0,8940
63
+ openlit/instrumentation/qdrant/async_qdrant.py,sha256=Xuyw2N75mRIjltrmY8wJes5DHal0Ku3A8VcUqfbsOl0,15071
64
+ openlit/instrumentation/qdrant/qdrant.py,sha256=K0cvEUbNx0hnk8AbEheYPSHcCgjFC482IZyHF9-P_b8,15488
64
65
  openlit/instrumentation/transformers/__init__.py,sha256=4GBtjzcJU4XiPexIUYEqF3pNZMeQw4Gm5B-cyumaFjs,1468
65
66
  openlit/instrumentation/transformers/transformers.py,sha256=KNAT2ROjziW6OAP6Y0Ec4oS2T2jx9y2mzpBgR_e78bI,7625
66
67
  openlit/instrumentation/vertexai/__init__.py,sha256=N3E9HtzefD-zC0fvmfGYiDmSqssoavp_i59wfuYLyMw,6079
@@ -71,7 +72,7 @@ openlit/instrumentation/vllm/vllm.py,sha256=lDzM7F5pgxvh8nKL0dcKB4TD0Mc9wXOWeXOs
71
72
  openlit/otel/metrics.py,sha256=FYAk4eBAmNtFKUIp4hbRbpdq4LME6MapyCQOIeuhmEg,4337
72
73
  openlit/otel/tracing.py,sha256=2kSj7n7uXSkRegcGFDC8IbnDOxqWTA8dGODs__Yn_yA,3719
73
74
  openlit/semcov/__init__.py,sha256=xPsw1aPonDSGYVuga-ZdoGt4yyA16wNFi5AEc7_xIrQ,8114
74
- openlit-1.28.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
75
- openlit-1.28.0.dist-info/METADATA,sha256=egvLD1EGcwE-1eRjIErX_kIqhRYTXRO6hm8EtwYOR0M,20806
76
- openlit-1.28.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
77
- openlit-1.28.0.dist-info/RECORD,,
75
+ openlit-1.29.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
76
+ openlit-1.29.1.dist-info/METADATA,sha256=P0UGoYZet2xaQ9u26ypsW_oCLd3PvvwstffkW5I13NQ,20806
77
+ openlit-1.29.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
78
+ openlit-1.29.1.dist-info/RECORD,,