openlit 1.33.18__py3-none-any.whl → 1.33.20__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.
- openlit/__helpers.py +11 -41
- openlit/__init__.py +3 -3
- openlit/evals/utils.py +7 -7
- openlit/guard/utils.py +7 -7
- openlit/instrumentation/ag2/ag2.py +24 -24
- openlit/instrumentation/ai21/ai21.py +3 -3
- openlit/instrumentation/ai21/async_ai21.py +3 -3
- openlit/instrumentation/ai21/utils.py +59 -59
- openlit/instrumentation/anthropic/anthropic.py +2 -2
- openlit/instrumentation/anthropic/async_anthropic.py +2 -2
- openlit/instrumentation/anthropic/utils.py +34 -34
- openlit/instrumentation/assemblyai/assemblyai.py +24 -24
- openlit/instrumentation/astra/astra.py +3 -3
- openlit/instrumentation/astra/async_astra.py +3 -3
- openlit/instrumentation/astra/utils.py +39 -39
- openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py +10 -10
- openlit/instrumentation/azure_ai_inference/azure_ai_inference.py +10 -10
- openlit/instrumentation/azure_ai_inference/utils.py +38 -38
- openlit/instrumentation/bedrock/__init__.py +2 -1
- openlit/instrumentation/bedrock/bedrock.py +32 -214
- openlit/instrumentation/bedrock/utils.py +252 -0
- openlit/instrumentation/chroma/chroma.py +57 -57
- openlit/instrumentation/cohere/async_cohere.py +88 -88
- openlit/instrumentation/cohere/cohere.py +88 -88
- openlit/instrumentation/controlflow/controlflow.py +15 -15
- openlit/instrumentation/crawl4ai/async_crawl4ai.py +14 -14
- openlit/instrumentation/crawl4ai/crawl4ai.py +14 -14
- openlit/instrumentation/crewai/crewai.py +22 -22
- openlit/instrumentation/dynamiq/dynamiq.py +19 -19
- openlit/instrumentation/elevenlabs/async_elevenlabs.py +24 -25
- openlit/instrumentation/elevenlabs/elevenlabs.py +23 -25
- openlit/instrumentation/embedchain/embedchain.py +15 -15
- openlit/instrumentation/firecrawl/firecrawl.py +10 -10
- openlit/instrumentation/google_ai_studio/async_google_ai_studio.py +33 -33
- openlit/instrumentation/google_ai_studio/google_ai_studio.py +33 -33
- openlit/instrumentation/gpt4all/gpt4all.py +78 -78
- openlit/instrumentation/gpu/__init__.py +8 -8
- openlit/instrumentation/groq/async_groq.py +74 -74
- openlit/instrumentation/groq/groq.py +74 -74
- openlit/instrumentation/haystack/haystack.py +6 -6
- openlit/instrumentation/julep/async_julep.py +14 -14
- openlit/instrumentation/julep/julep.py +14 -14
- openlit/instrumentation/langchain/async_langchain.py +39 -39
- openlit/instrumentation/langchain/langchain.py +39 -39
- openlit/instrumentation/letta/letta.py +26 -26
- openlit/instrumentation/litellm/async_litellm.py +94 -94
- openlit/instrumentation/litellm/litellm.py +94 -94
- openlit/instrumentation/llamaindex/llamaindex.py +7 -7
- openlit/instrumentation/mem0/mem0.py +13 -13
- openlit/instrumentation/milvus/milvus.py +47 -47
- openlit/instrumentation/mistral/async_mistral.py +88 -88
- openlit/instrumentation/mistral/mistral.py +88 -88
- openlit/instrumentation/multion/async_multion.py +21 -21
- openlit/instrumentation/multion/multion.py +21 -21
- openlit/instrumentation/ollama/async_ollama.py +3 -3
- openlit/instrumentation/ollama/ollama.py +3 -3
- openlit/instrumentation/ollama/utils.py +50 -50
- openlit/instrumentation/openai/async_openai.py +225 -225
- openlit/instrumentation/openai/openai.py +225 -225
- openlit/instrumentation/openai_agents/openai_agents.py +11 -11
- openlit/instrumentation/phidata/phidata.py +15 -15
- openlit/instrumentation/pinecone/pinecone.py +43 -43
- openlit/instrumentation/premai/premai.py +86 -86
- openlit/instrumentation/qdrant/async_qdrant.py +95 -95
- openlit/instrumentation/qdrant/qdrant.py +99 -99
- openlit/instrumentation/reka/async_reka.py +33 -33
- openlit/instrumentation/reka/reka.py +33 -33
- openlit/instrumentation/together/async_together.py +90 -90
- openlit/instrumentation/together/together.py +90 -90
- openlit/instrumentation/transformers/transformers.py +26 -26
- openlit/instrumentation/vertexai/async_vertexai.py +64 -64
- openlit/instrumentation/vertexai/vertexai.py +64 -64
- openlit/instrumentation/vllm/vllm.py +24 -24
- openlit/otel/metrics.py +11 -11
- openlit/semcov/__init__.py +3 -3
- {openlit-1.33.18.dist-info → openlit-1.33.20.dist-info}/METADATA +8 -8
- openlit-1.33.20.dist-info/RECORD +131 -0
- {openlit-1.33.18.dist-info → openlit-1.33.20.dist-info}/WHEEL +1 -1
- openlit-1.33.18.dist-info/RECORD +0 -130
- {openlit-1.33.18.dist-info → openlit-1.33.20.dist-info}/LICENSE +0 -0
openlit/otel/metrics.py
CHANGED
@@ -8,7 +8,7 @@ from opentelemetry.sdk.metrics import MeterProvider
|
|
8
8
|
from opentelemetry.sdk.metrics.export import PeriodicExportingMetricReader, ConsoleMetricExporter
|
9
9
|
from opentelemetry.sdk.resources import SERVICE_NAME, TELEMETRY_SDK_NAME, DEPLOYMENT_ENVIRONMENT
|
10
10
|
from opentelemetry.sdk.resources import Resource
|
11
|
-
from openlit.semcov import
|
11
|
+
from openlit.semcov import SemanticConvention
|
12
12
|
|
13
13
|
if os.environ.get("OTEL_EXPORTER_OTLP_PROTOCOL") == "grpc":
|
14
14
|
from opentelemetry.exporter.otlp.proto.grpc.metric_exporter import OTLPMetricExporter
|
@@ -156,31 +156,31 @@ def setup_meter(application_name, environment, meter, otlp_endpoint, otlp_header
|
|
156
156
|
metrics_dict = {
|
157
157
|
# OTel Semconv
|
158
158
|
"genai_client_usage_tokens": meter.create_histogram(
|
159
|
-
name=
|
159
|
+
name=SemanticConvention.GEN_AI_CLIENT_TOKEN_USAGE,
|
160
160
|
description="Measures number of input and output tokens used",
|
161
161
|
unit="{token}",
|
162
162
|
explicit_bucket_boundaries_advisory=_GEN_AI_CLIENT_TOKEN_USAGE_BUCKETS,
|
163
163
|
),
|
164
164
|
"genai_client_operation_duration": meter.create_histogram(
|
165
|
-
name=
|
165
|
+
name=SemanticConvention.GEN_AI_CLIENT_OPERATION_DURATION,
|
166
166
|
description="GenAI operation duration",
|
167
167
|
unit="s",
|
168
168
|
explicit_bucket_boundaries_advisory=_GEN_AI_CLIENT_OPERATION_DURATION_BUCKETS,
|
169
169
|
),
|
170
170
|
"genai_server_tbt": meter.create_histogram(
|
171
|
-
name=
|
171
|
+
name=SemanticConvention.GEN_AI_SERVER_TBT,
|
172
172
|
description="Time per output token generated after the first token for successful responses",
|
173
173
|
unit="s",
|
174
174
|
explicit_bucket_boundaries_advisory=_GEN_AI_SERVER_TBT,
|
175
175
|
),
|
176
176
|
"genai_server_ttft": meter.create_histogram(
|
177
|
-
name=
|
177
|
+
name=SemanticConvention.GEN_AI_SERVER_TTFT,
|
178
178
|
description="Time to generate first token for successful responses",
|
179
179
|
unit="s",
|
180
180
|
explicit_bucket_boundaries_advisory=_GEN_AI_SERVER_TFTT,
|
181
181
|
),
|
182
182
|
"db_client_operation_duration": meter.create_histogram(
|
183
|
-
name=
|
183
|
+
name=SemanticConvention.DB_CLIENT_OPERATION_DURATION,
|
184
184
|
description="DB operation duration",
|
185
185
|
unit="s",
|
186
186
|
explicit_bucket_boundaries_advisory=_DB_CLIENT_OPERATION_DURATION_BUCKETS,
|
@@ -188,27 +188,27 @@ def setup_meter(application_name, environment, meter, otlp_endpoint, otlp_header
|
|
188
188
|
|
189
189
|
# Extra
|
190
190
|
"genai_requests": meter.create_counter(
|
191
|
-
name=
|
191
|
+
name=SemanticConvention.GEN_AI_REQUESTS,
|
192
192
|
description="Number of requests to GenAI",
|
193
193
|
unit="1",
|
194
194
|
),
|
195
195
|
"genai_prompt_tokens": meter.create_counter(
|
196
|
-
name=
|
196
|
+
name=SemanticConvention.GEN_AI_USAGE_INPUT_TOKENS,
|
197
197
|
description="Number of prompt tokens processed.",
|
198
198
|
unit="1",
|
199
199
|
),
|
200
200
|
"genai_completion_tokens": meter.create_counter(
|
201
|
-
name=
|
201
|
+
name=SemanticConvention.GEN_AI_USAGE_OUTPUT_TOKENS,
|
202
202
|
description="Number of completion tokens processed.",
|
203
203
|
unit="1",
|
204
204
|
),
|
205
205
|
"genai_cost": meter.create_histogram(
|
206
|
-
name=
|
206
|
+
name=SemanticConvention.GEN_AI_USAGE_COST,
|
207
207
|
description="The distribution of GenAI request costs.",
|
208
208
|
unit="USD",
|
209
209
|
),
|
210
210
|
"db_requests": meter.create_counter(
|
211
|
-
name=
|
211
|
+
name=SemanticConvention.DB_REQUESTS,
|
212
212
|
description="Number of requests to VectorDBs",
|
213
213
|
unit="1",
|
214
214
|
),
|
openlit/semcov/__init__.py
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# pylint: disable=too-few-public-methods
|
2
2
|
"""
|
3
|
-
This module defines the `
|
3
|
+
This module defines the `SemanticConvention` class which encapsulates various constants used
|
4
4
|
for semantic tagging within a generalized AI application context. These constants are
|
5
5
|
intended for use across different components of AI applications, including request handling,
|
6
6
|
response processing, usage metrics, and interaction with vector databases and AI systems.
|
7
7
|
The purpose is to standardize the semantics for easier integration, analytics, and maintenance.
|
8
8
|
"""
|
9
|
-
class
|
9
|
+
class SemanticConvention:
|
10
10
|
"""
|
11
|
-
The
|
11
|
+
The SemanticConvention class provides a centralized repository of constant values that
|
12
12
|
represent the keys for various semantic conventions within AI applications. These
|
13
13
|
conventions cover a broad range of areas including general AI configurations, request
|
14
14
|
parameters, usage metrics, response attributes, and integrations with external AI and
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: openlit
|
3
|
-
Version: 1.33.
|
3
|
+
Version: 1.33.20
|
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
|
License: Apache-2.0
|
6
6
|
Keywords: OpenTelemetry,otel,otlp,llm,tracing,openai,anthropic,claude,cohere,llm monitoring,observability,monitoring,gpt,Generative AI,chatGPT,gpu
|
7
7
|
Author: OpenLIT
|
8
|
-
Requires-Python: >=3.
|
8
|
+
Requires-Python: >=3.8.0,<4.0.0
|
9
9
|
Classifier: License :: OSI Approved :: Apache Software License
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: Programming Language :: Python :: 3.8
|
@@ -14,18 +14,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
17
|
-
Requires-Dist: anthropic (>=0.42.0,<0.
|
17
|
+
Requires-Dist: anthropic (>=0.42.0,<1.0.0)
|
18
18
|
Requires-Dist: boto3 (>=1.34.0,<2.0.0)
|
19
19
|
Requires-Dist: botocore (>=1.34.0,<2.0.0)
|
20
20
|
Requires-Dist: openai (>=1.1.1,<2.0.0)
|
21
|
-
Requires-Dist: opentelemetry-api (>=1.
|
22
|
-
Requires-Dist: opentelemetry-exporter-otlp (>=1.
|
23
|
-
Requires-Dist: opentelemetry-instrumentation (>=0.
|
24
|
-
Requires-Dist: opentelemetry-sdk (>=1.
|
21
|
+
Requires-Dist: opentelemetry-api (>=1.30.0,<2.0.0)
|
22
|
+
Requires-Dist: opentelemetry-exporter-otlp (>=1.30.0,<2.0.0)
|
23
|
+
Requires-Dist: opentelemetry-instrumentation (>=0.52b0,<1.0.0)
|
24
|
+
Requires-Dist: opentelemetry-sdk (>=1.30.0,<2.0.0)
|
25
25
|
Requires-Dist: pydantic (>=2.0.0,<3.0.0)
|
26
26
|
Requires-Dist: requests (>=2.26.0,<3.0.0)
|
27
27
|
Requires-Dist: schedule (>=1.2.2,<2.0.0)
|
28
|
-
Requires-Dist: xmltodict (>=0.13.0,<0.
|
28
|
+
Requires-Dist: xmltodict (>=0.13.0,<1.0.0)
|
29
29
|
Project-URL: Homepage, https://github.com/openlit/openlit/tree/main/openlit/python
|
30
30
|
Project-URL: Repository, https://github.com/openlit/openlit/tree/main/openlit/python
|
31
31
|
Description-Content-Type: text/markdown
|
@@ -0,0 +1,131 @@
|
|
1
|
+
openlit/__helpers.py,sha256=mbcQvTwjf0R3POo2vDPc0Ms94pNCmAAu9OWXeenFHC4,9068
|
2
|
+
openlit/__init__.py,sha256=1OzJQmiZrTlT3Aze_l8GOf1GXH7dAHztJn0Uzd1LAPc,23924
|
3
|
+
openlit/evals/__init__.py,sha256=nJe99nuLo1b5rf7pt9U9BCdSDedzbVi2Fj96cgl7msM,380
|
4
|
+
openlit/evals/all.py,sha256=oWrue3PotE-rB5WePG3MRYSA-ro6WivkclSHjYlAqGs,7154
|
5
|
+
openlit/evals/bias_detection.py,sha256=mCdsfK7x1vX7S3psC3g641IMlZ-7df3h-V6eiICj5N8,8154
|
6
|
+
openlit/evals/hallucination.py,sha256=Yn5OfWVJKynAiImV_aAqCvc0zqYjdJ3XUppCnMTy1pg,7507
|
7
|
+
openlit/evals/toxicity.py,sha256=Ii_kX2GToO9fDstDBuK4iN0tEQUkMoPWUBDMFFfeMC4,7000
|
8
|
+
openlit/evals/utils.py,sha256=dxi4tv1bMBPp8u78WkyVyB8--3XnplMe_VfV3Eypww8,8479
|
9
|
+
openlit/guard/__init__.py,sha256=B-D7iPadGFn5i7nEsQfVbS6feL1ViRht3zWTQ45Jgkg,417
|
10
|
+
openlit/guard/all.py,sha256=VNHQERad-4qAMWsJJrpW9QNkhM7U8v_wy20KtDtQgzM,9755
|
11
|
+
openlit/guard/prompt_injection.py,sha256=3e4DKxB7QDzM-xPCpwEuureiH_2s_OTJ9BSckknPpzY,5784
|
12
|
+
openlit/guard/restrict_topic.py,sha256=KTuWa7XeMsV4oXxOrD1CYZV0wXWxTfA0H3p_6q_IOsk,6444
|
13
|
+
openlit/guard/sensitive_topic.py,sha256=RgVw_laFERv0nNdzBsAd2_3yLomMOK-gVq-P7oj1bTk,5552
|
14
|
+
openlit/guard/utils.py,sha256=6hE3rCRjFXYjKRQYUo8YsqUSlvod48nOWp8MwoQEYdw,7670
|
15
|
+
openlit/instrumentation/ag2/__init__.py,sha256=KgyLJBmwAxRWu7Z0S8FDDK4TZ13EFoAAIalvG5Oq4wc,1839
|
16
|
+
openlit/instrumentation/ag2/ag2.py,sha256=eNQziyeZl4396GsIp5qI1Dne2KcnQMmhftW7joKQvNU,6934
|
17
|
+
openlit/instrumentation/ai21/__init__.py,sha256=QXMByKCUhFITUIwUR01m0Fjpr20txV_GWcRJ66dTu_Q,2703
|
18
|
+
openlit/instrumentation/ai21/ai21.py,sha256=J1QlBg56LWhkiD9IDmu0tJMOGnqKz0AiHtrMnACjU0Y,6814
|
19
|
+
openlit/instrumentation/ai21/async_ai21.py,sha256=fIIGrAjF2xfGlAJiW6itqL88PSaA9vxy7F8nFpyVjZg,6918
|
20
|
+
openlit/instrumentation/ai21/utils.py,sha256=7PcxzAwrLNTF5df5SR0Mp6UAkLGTATWxYrKS98c9iig,19770
|
21
|
+
openlit/instrumentation/anthropic/__init__.py,sha256=QEsiwdxcQDzzlVYR4_x7KTdf0-UJDJt8FjwNQMspnxM,1929
|
22
|
+
openlit/instrumentation/anthropic/anthropic.py,sha256=NxJJjhsu9sSFIlBp322olGkPlLt9Bn5sndaugYA68dE,5149
|
23
|
+
openlit/instrumentation/anthropic/async_anthropic.py,sha256=ivJGygKWVTS2hWWX12_g1tiq-5mpeHXETZsWoFZL3UE,5235
|
24
|
+
openlit/instrumentation/anthropic/utils.py,sha256=g15QqkHdl2N5WsRCNvxWkMwOYpR_n-lrMcvlY71QbSs,11934
|
25
|
+
openlit/instrumentation/assemblyai/__init__.py,sha256=vW5ifDgwprOSsr2Xa94T8Us0Gm6ynimAPeB3a8VQKZw,1551
|
26
|
+
openlit/instrumentation/assemblyai/assemblyai.py,sha256=lFM6eZvhV6XkFjyPJypM-RbM3bk6cZr_XpZNBF_MYpE,6419
|
27
|
+
openlit/instrumentation/astra/__init__.py,sha256=-JG3_YHQQaOQUr4XtFzqfaYiQKqviAAmikd3YS9H9XM,8252
|
28
|
+
openlit/instrumentation/astra/astra.py,sha256=L_Yw980eEY0AzMqhNreKamlSplTlL8XiG5lx9Sj3D0c,1610
|
29
|
+
openlit/instrumentation/astra/async_astra.py,sha256=87QFKnEQPHywuqMH0dOlnXZ2GqdYDZQgT4TfXB16fPI,1628
|
30
|
+
openlit/instrumentation/astra/utils.py,sha256=qBNpugK0R6wQLFx39ZANY1fQvNAIc5PrpEazz-K69Yw,4976
|
31
|
+
openlit/instrumentation/azure_ai_inference/__init__.py,sha256=ZoMAX_MUNCNMJqLZgl0A_kQ_lsgoz3VddkHiDT3pVF8,2032
|
32
|
+
openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py,sha256=bRH9iJ9fE6RWibffWw6UfLHs2IhIUdcY3opyvPnQTHg,5058
|
33
|
+
openlit/instrumentation/azure_ai_inference/azure_ai_inference.py,sha256=u--3wNMoVRa5pRdMys8osbsCubPESPJw70hdBzAA_tQ,4972
|
34
|
+
openlit/instrumentation/azure_ai_inference/utils.py,sha256=JbIsmmi1Xw_gXLjPkhDkdTEJ4Bq8jVs3H4lmXE8Sxhs,11036
|
35
|
+
openlit/instrumentation/bedrock/__init__.py,sha256=Sfd0vm4Dfm1t-N7vBPRwU57GLTlZP2M4rVYRek_JHXY,1625
|
36
|
+
openlit/instrumentation/bedrock/bedrock.py,sha256=kP9ESKzqhWu-dIWseyaeyendUyo6b7xJwjGo3LGi5Jc,2817
|
37
|
+
openlit/instrumentation/bedrock/utils.py,sha256=_mTUIbioEg4jfoxocUbfc7RgGjhm9ACelbxIoFu4jbM,11636
|
38
|
+
openlit/instrumentation/chroma/__init__.py,sha256=4ZeHY1OInRKQbb4qg8BVvGJtWN1XdzW6mosqi7-6ruE,3353
|
39
|
+
openlit/instrumentation/chroma/chroma.py,sha256=fPIX6vgcDFkBgKGxrkXZWDaBtZa5y-PV3jJjKsFqjDg,10640
|
40
|
+
openlit/instrumentation/cohere/__init__.py,sha256=TIRq1obu-zqBji0HhMbFGfI2q5m-zw0nWbToKeZqpg4,2905
|
41
|
+
openlit/instrumentation/cohere/async_cohere.py,sha256=cFIrQ-maKmM8JKRitX-mgD7Jm_1UDyO_kOp4X_0MQww,30745
|
42
|
+
openlit/instrumentation/cohere/cohere.py,sha256=11QGsBTLiTfF-oH_fIQ9IBbIgtS2vf7M-VvbG8MuO_Q,30628
|
43
|
+
openlit/instrumentation/controlflow/__init__.py,sha256=Y5xSj6bwkGufG989YtRGujzj8qrV4T5kXr4hzGb2nGk,2168
|
44
|
+
openlit/instrumentation/controlflow/controlflow.py,sha256=NNovai9DwRCSaa-shFxAyUIYiRaEBgXkyuXFk3lQlPU,5573
|
45
|
+
openlit/instrumentation/crawl4ai/__init__.py,sha256=TTFFeZkTgPZJAD1Tlr2LK-CTH2A7NkZK-5SHKFfFOtU,1947
|
46
|
+
openlit/instrumentation/crawl4ai/async_crawl4ai.py,sha256=bqtopPKOMCfBx7in08QnpjYnPO09YV_uySR19YTuV98,4893
|
47
|
+
openlit/instrumentation/crawl4ai/crawl4ai.py,sha256=kX5B5ItHBw-_qa-SjSmIjFQg0ZwckB1tMkoemCvg2rc,4875
|
48
|
+
openlit/instrumentation/crewai/__init__.py,sha256=Yh-evzhxG-x3E2oRf71S1NIx_36JGu4TeIqFl1-2H5w,1834
|
49
|
+
openlit/instrumentation/crewai/crewai.py,sha256=0MuubMHnnWeLhc5LnHtr74-hQaq8EAx-pIsocb4IIeE,7223
|
50
|
+
openlit/instrumentation/dynamiq/__init__.py,sha256=LuIYSQpQH5Pk5Ngl_3Jy3bImGjZgh61La6sbVJfC1Io,2391
|
51
|
+
openlit/instrumentation/dynamiq/dynamiq.py,sha256=0x-76VL5KG_HytmzAOi4ERPN0Wm5KLyMxHZmFbaWxxg,5309
|
52
|
+
openlit/instrumentation/elevenlabs/__init__.py,sha256=LNbHWxnkq3ZPOnXKP01Wo0ger-YwC0G2rNzquivYMGQ,2691
|
53
|
+
openlit/instrumentation/elevenlabs/async_elevenlabs.py,sha256=oX7A4xJ3FI8hd26r6O-Wojx8S5BUYjuF-wvf-UdjQQ4,6747
|
54
|
+
openlit/instrumentation/elevenlabs/elevenlabs.py,sha256=GxkMApwSFezmNuH21z4iXo-iPIpKTVFWq_9gj37pvO8,6729
|
55
|
+
openlit/instrumentation/embedchain/__init__.py,sha256=x2_qvJTwWog_mH6IY987Bp9mWxHtasqX2nZ3rwA7mb4,1959
|
56
|
+
openlit/instrumentation/embedchain/embedchain.py,sha256=f4hyOr1Xr0RC4PNHRu46aV-jmEh-lIeKN8XLjgY7aWM,7929
|
57
|
+
openlit/instrumentation/firecrawl/__init__.py,sha256=kyVsAiDBC2djifqT2w1cPRAotiEyEabNvnBeSQxi9N8,1876
|
58
|
+
openlit/instrumentation/firecrawl/firecrawl.py,sha256=4X38UrLYeGm3uez-edYA6qEc0nKC3p77yfKgKBBud0A,3826
|
59
|
+
openlit/instrumentation/google_ai_studio/__init__.py,sha256=qKWyN5_BQyRnb0XG-v864Pe8t3OXa0ARYNVeE8mxgSE,2049
|
60
|
+
openlit/instrumentation/google_ai_studio/async_google_ai_studio.py,sha256=TOk40HRrFFMJYMeEN-5bnUR9hiwbwngoYvzHAppelOs,11069
|
61
|
+
openlit/instrumentation/google_ai_studio/google_ai_studio.py,sha256=EsANasBGuu5jG-n27UaqMAXMb5bBq5RoMotqBCmqaYU,11051
|
62
|
+
openlit/instrumentation/gpt4all/__init__.py,sha256=cO8mi3hhPDXcNwb9AwQ3-wQ_ydnOeBRwb0cptlQmAM4,1805
|
63
|
+
openlit/instrumentation/gpt4all/gpt4all.py,sha256=EYp0njZ1kF56rTAjYZVtufA5W4xTWGzSIntjJ4MEfl4,24185
|
64
|
+
openlit/instrumentation/gpu/__init__.py,sha256=QQCFVEbRfdeTjmdFe-UeEiy19vEEWSIBpj2B1wYGhUs,11036
|
65
|
+
openlit/instrumentation/groq/__init__.py,sha256=RszPvlPMD1j_uRu9MweyO_F_BRIqEExuB6sVQB2py4o,1901
|
66
|
+
openlit/instrumentation/groq/async_groq.py,sha256=BDiGSS1C5uradPLDyfPCqyLWw7f5Emwe4KA1Zd7nXU8,24770
|
67
|
+
openlit/instrumentation/groq/groq.py,sha256=v_-F3yRuaAzAfPx7V-XK8d13omojN5Tu9UbFM-uo4ls,24684
|
68
|
+
openlit/instrumentation/haystack/__init__.py,sha256=jZPAXRilKTD1vww_4_K4jhYWNrMXngcs5pI29NTnFvI,1788
|
69
|
+
openlit/instrumentation/haystack/haystack.py,sha256=kPkuCJDrccNgAg3yDAHbvEytzyfMOee_LDBhzrcfpkc,3927
|
70
|
+
openlit/instrumentation/julep/__init__.py,sha256=g-hwXjvXAb5IDs5DR_P8rKsnD4beB9tupAzuuviQT3k,3216
|
71
|
+
openlit/instrumentation/julep/async_julep.py,sha256=fPUOGAOIxelBt4cw-PGp5zj_B1nfj5ly3Dj0kelw3-s,5327
|
72
|
+
openlit/instrumentation/julep/julep.py,sha256=6rGgDOB7UzisgYsm12vnTy39dl9HAlRVBVByEr2116g,5330
|
73
|
+
openlit/instrumentation/langchain/__init__.py,sha256=cNlumZ8fwLMlGVFMjNEndOIzooD4FQEOINX9tGVksII,3853
|
74
|
+
openlit/instrumentation/langchain/async_langchain.py,sha256=rdk3INGcsxsfzZcoJo0yYtc8A0tQbWevF_mzf9IPrqg,18341
|
75
|
+
openlit/instrumentation/langchain/langchain.py,sha256=zgfzfOIDsaRoVgWl1T4XX2CLO7ttGOD15TagZtYQ-vE,17012
|
76
|
+
openlit/instrumentation/letta/__init__.py,sha256=K8PtRKxuueyqEYE3LzxWJ74IieNKSI6dmk9sNRd8Mt0,3031
|
77
|
+
openlit/instrumentation/letta/letta.py,sha256=SCIpJ4tdB1l1BmeQx4raaTS4MQO5X15pLvS4PepEKBE,8481
|
78
|
+
openlit/instrumentation/litellm/__init__.py,sha256=qRqfwDMhP5adKGI2vRaelAkN12i0e8jtJrT31VFFM5A,2374
|
79
|
+
openlit/instrumentation/litellm/async_litellm.py,sha256=DUUOmkyDAxwgET4euyLTjaYxgWGdg_aMyFGbH__qg1A,30502
|
80
|
+
openlit/instrumentation/litellm/litellm.py,sha256=xQSqC1HZu7IUVnFAyD442rC6DdO6TSOV9hUTpyPSKW4,30408
|
81
|
+
openlit/instrumentation/llamaindex/__init__.py,sha256=2pmd9BKw3ab0OJ4yuJEg0-Jkn_haDbXvbUm5r2-rOCU,2007
|
82
|
+
openlit/instrumentation/llamaindex/llamaindex.py,sha256=mdT2TvEWD0D9cEkFjXMeTculNoMWkuJ4mj7QWFnvcqY,4085
|
83
|
+
openlit/instrumentation/mem0/__init__.py,sha256=IadP3bKgz2HCbnrh9S7AW24uDauGkzsIWeOQaGkOCc4,2447
|
84
|
+
openlit/instrumentation/mem0/mem0.py,sha256=Y3Y_OWH9fW4vrus5vwPoWyy7sWXB9IR3k5tt6idMJ9E,5348
|
85
|
+
openlit/instrumentation/milvus/__init__.py,sha256=qQqI-mOXEIsXGYwLyUGLEECcIHCm_6_KQZq0vFL90LY,2991
|
86
|
+
openlit/instrumentation/milvus/milvus.py,sha256=G_wUAvwKmm7Jghd-X8xdwZphRjnJSKctU1424pQmJ3U,9220
|
87
|
+
openlit/instrumentation/mistral/__init__.py,sha256=5hh5s2-kudMbfkWD6Lhe5IQvrlZ5qA-Sv3laeXwyaPA,3060
|
88
|
+
openlit/instrumentation/mistral/async_mistral.py,sha256=XgT7ZQ2Dx_UscoljjgKvWb6Fe5FuDs7Yrwau96KpSKQ,31187
|
89
|
+
openlit/instrumentation/mistral/mistral.py,sha256=_2qM8v4RCL-S0Mm1vbW77m5vUm8aPDyiijbP75yHZaY,31083
|
90
|
+
openlit/instrumentation/multion/__init__.py,sha256=Wr3lcDyG_YbOLkCUzBFhraAedF6E113tce8eSWlcz10,3149
|
91
|
+
openlit/instrumentation/multion/async_multion.py,sha256=XutZnayCJOZ_NA9bvE1NUoej41KOGR7FRn2tpoGKMEU,6092
|
92
|
+
openlit/instrumentation/multion/multion.py,sha256=-WqRAcu5qiEMY9XDmlJTQHuQiWfdwms9JDn127QCNb8,6074
|
93
|
+
openlit/instrumentation/ollama/__init__.py,sha256=JjxSqEegmRoRqIVz7ZAq9dLyXPZ2DqV2wGmgXCENNpw,3004
|
94
|
+
openlit/instrumentation/ollama/async_ollama.py,sha256=rQ637cpOenezcbyJPV16LLQ2UKuROrO31-0lbfyGhoA,6541
|
95
|
+
openlit/instrumentation/ollama/ollama.py,sha256=9C-XtUZ9FoR1cjpFdO3BHjF6NZqRhzNLt-z2z0cJIyE,6437
|
96
|
+
openlit/instrumentation/ollama/utils.py,sha256=vAFCWv4qWd-_jThR0IQGoBhjp99uy1QUtJk6Kj6y_Js,14604
|
97
|
+
openlit/instrumentation/openai/__init__.py,sha256=FiL4OHDhs957spa3k9sNC_VLt0-txtwbnujQwnevQ5I,5564
|
98
|
+
openlit/instrumentation/openai/async_openai.py,sha256=CiyBpn8Evnd_gh3Cm1WbfkN7eUpDmFh4KMvxka-B4og,71764
|
99
|
+
openlit/instrumentation/openai/openai.py,sha256=r8ZNVoAFTPuCUf18a5v1Lp48LXwCeT9paEB-3USSiiU,71507
|
100
|
+
openlit/instrumentation/openai_agents/__init__.py,sha256=tRTSIrUtkXc_lfQnVanXmQLd2Sy9RqBNTHF5FhhZx7o,1530
|
101
|
+
openlit/instrumentation/openai_agents/openai_agents.py,sha256=kRWPgjofcOviMi3w7CsRvJO3SCjqPmuq-PM800vIM7g,2678
|
102
|
+
openlit/instrumentation/phidata/__init__.py,sha256=tqls5-UI6FzbjxYgq_qqAfALhWJm8dHn2NtgqiQA4f8,1557
|
103
|
+
openlit/instrumentation/phidata/phidata.py,sha256=ohrxs6i0Oik75P2BrjNGbK71tdZg94ZMmaXixrXwV5M,4834
|
104
|
+
openlit/instrumentation/pinecone/__init__.py,sha256=0guSEPmObaZiOF8yHExpOGY-qW_egHXfZGog3rKGi8M,2596
|
105
|
+
openlit/instrumentation/pinecone/pinecone.py,sha256=7hVUlC0HOj0yQyvLasfdb6kS46hRJQdoSRzZQ4ixIkk,8850
|
106
|
+
openlit/instrumentation/premai/__init__.py,sha256=uyw3sn5iHuO1Clg7iLs6LYpOWg1ahJp_orb2tySshZE,1836
|
107
|
+
openlit/instrumentation/premai/premai.py,sha256=cM7FyMvVD0I0SfM826uFm6bcBOBQpkMSM_UBGG-y7BQ,28046
|
108
|
+
openlit/instrumentation/qdrant/__init__.py,sha256=5prYH46yQt2hSA5zgg7kKM6P_F_7s9OQtfRE_lqsaVc,8970
|
109
|
+
openlit/instrumentation/qdrant/async_qdrant.py,sha256=dwMQx8bI4Lp8Tgze87esIdVMOffbQcK80lKNLjxsNOU,15263
|
110
|
+
openlit/instrumentation/qdrant/qdrant.py,sha256=pafjlAzMPzYLRYFfTtWXsLKYVQls-grkHVO3YmFuNPg,15689
|
111
|
+
openlit/instrumentation/reka/__init__.py,sha256=39ZKj44PPUue8feG3bivAejfL66yD23pCJQ8hHnQKbY,1884
|
112
|
+
openlit/instrumentation/reka/async_reka.py,sha256=GlUGTMy8LgA6qSwM0YyXlSM1Z-hYxyH9rMqIbw2pSRU,9446
|
113
|
+
openlit/instrumentation/reka/reka.py,sha256=L6gH7j94tcYlc_FCkQP6SrxH7yBr4uSgtN8Bzm_mu6k,9428
|
114
|
+
openlit/instrumentation/together/__init__.py,sha256=MLLL2t8FyrytpfMueqcwekiqTKn-JN40HBD_LbZS_jQ,2661
|
115
|
+
openlit/instrumentation/together/async_together.py,sha256=ToSeYqE0mCgSsCNSO0pqoyS7WU6YarHxa3I7ZrzH-d8,30634
|
116
|
+
openlit/instrumentation/together/together.py,sha256=7Da9fjHaZk_ObXMnSZA79-RktgwHRVYevsZAA-OpcXY,30530
|
117
|
+
openlit/instrumentation/transformers/__init__.py,sha256=f-kWX6_VdiOXqDa64iK6oJyYF3xkHuKxIBPTll-W7Lw,1467
|
118
|
+
openlit/instrumentation/transformers/transformers.py,sha256=naSIvynfI16RWboB4cZb728AqubU8lUt-zYSRUg6X_k,9174
|
119
|
+
openlit/instrumentation/vertexai/__init__.py,sha256=mT28WCBvQfRCkAWGL6bd0EjEPHvMjaNcz6T3jsLZh8k,3745
|
120
|
+
openlit/instrumentation/vertexai/async_vertexai.py,sha256=-kpg-eiL76O5_XopUPghCYwJHf0Nrxi00_Z5tCwq6zM,23086
|
121
|
+
openlit/instrumentation/vertexai/vertexai.py,sha256=5NB090aWlm9DnlccNNLRO6A97P_RN-JnHb5JS01tYyw,23000
|
122
|
+
openlit/instrumentation/vllm/__init__.py,sha256=8Su4DEpxdT2wr4Qr17heakzoGSbuq6ey1MmSVR_vbOA,1508
|
123
|
+
openlit/instrumentation/vllm/vllm.py,sha256=FxDIR4WH1VySivi0wop4E1DBo2HXyCr8nZ9x1c7x4eM,7778
|
124
|
+
openlit/otel/events.py,sha256=VrMjTpvnLtYRBHCiFwJojTQqqNpRCxoD4yJYeQrtPsk,3560
|
125
|
+
openlit/otel/metrics.py,sha256=urpadRfC_BjLCPxWgk5J6NGStECeJA55LFkyTD43Jd4,6837
|
126
|
+
openlit/otel/tracing.py,sha256=tjV2bEbEDPUB1Z46gE-UsJsb04sRdFrfbhIDkxViZc0,3103
|
127
|
+
openlit/semcov/__init__.py,sha256=JF9MwflazC8jHOiQdPYshfv1q5Z9bhB4OGa0N_fr9d4,13305
|
128
|
+
openlit-1.33.20.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
129
|
+
openlit-1.33.20.dist-info/METADATA,sha256=GZtU_l6KXa6MR28a4KEa0TzHsNh5d0mwmPnZ2dNFMfQ,23470
|
130
|
+
openlit-1.33.20.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
131
|
+
openlit-1.33.20.dist-info/RECORD,,
|
openlit-1.33.18.dist-info/RECORD
DELETED
@@ -1,130 +0,0 @@
|
|
1
|
-
openlit/__helpers.py,sha256=9K9nz_RunwtnFeAk591uOJZiY3J88HsYv7T2H8elHWA,10262
|
2
|
-
openlit/__init__.py,sha256=iHGwg8XB2DhNVCktU3FLFqubAOiQVQCp1F7L7OHp6cg,23921
|
3
|
-
openlit/evals/__init__.py,sha256=nJe99nuLo1b5rf7pt9U9BCdSDedzbVi2Fj96cgl7msM,380
|
4
|
-
openlit/evals/all.py,sha256=oWrue3PotE-rB5WePG3MRYSA-ro6WivkclSHjYlAqGs,7154
|
5
|
-
openlit/evals/bias_detection.py,sha256=mCdsfK7x1vX7S3psC3g641IMlZ-7df3h-V6eiICj5N8,8154
|
6
|
-
openlit/evals/hallucination.py,sha256=Yn5OfWVJKynAiImV_aAqCvc0zqYjdJ3XUppCnMTy1pg,7507
|
7
|
-
openlit/evals/toxicity.py,sha256=Ii_kX2GToO9fDstDBuK4iN0tEQUkMoPWUBDMFFfeMC4,7000
|
8
|
-
openlit/evals/utils.py,sha256=lXgxyh1OZHeQzlzTLBAEnIYVaUt0YqYA6Uaygjpbv0s,8472
|
9
|
-
openlit/guard/__init__.py,sha256=B-D7iPadGFn5i7nEsQfVbS6feL1ViRht3zWTQ45Jgkg,417
|
10
|
-
openlit/guard/all.py,sha256=VNHQERad-4qAMWsJJrpW9QNkhM7U8v_wy20KtDtQgzM,9755
|
11
|
-
openlit/guard/prompt_injection.py,sha256=3e4DKxB7QDzM-xPCpwEuureiH_2s_OTJ9BSckknPpzY,5784
|
12
|
-
openlit/guard/restrict_topic.py,sha256=KTuWa7XeMsV4oXxOrD1CYZV0wXWxTfA0H3p_6q_IOsk,6444
|
13
|
-
openlit/guard/sensitive_topic.py,sha256=RgVw_laFERv0nNdzBsAd2_3yLomMOK-gVq-P7oj1bTk,5552
|
14
|
-
openlit/guard/utils.py,sha256=x0-_hAtNa_ogYR2GfnwiBF1rlqaXtaJ-rJeGguTDe-Q,7663
|
15
|
-
openlit/instrumentation/ag2/__init__.py,sha256=KgyLJBmwAxRWu7Z0S8FDDK4TZ13EFoAAIalvG5Oq4wc,1839
|
16
|
-
openlit/instrumentation/ag2/ag2.py,sha256=TFqYLyHxGjXMR4s8xoBdysTjZaQYZd8tbf_srw5RYUw,6908
|
17
|
-
openlit/instrumentation/ai21/__init__.py,sha256=QXMByKCUhFITUIwUR01m0Fjpr20txV_GWcRJ66dTu_Q,2703
|
18
|
-
openlit/instrumentation/ai21/ai21.py,sha256=j18n7X1gL15aZlYvqd64r_6hjhiPg7KHyQwQwzyYutg,6811
|
19
|
-
openlit/instrumentation/ai21/async_ai21.py,sha256=Qn4Z0M2TZRN4fkgcy3D4DwIUAqYj_1HKztapVbgf3kw,6915
|
20
|
-
openlit/instrumentation/ai21/utils.py,sha256=nLN4VuczcP6x0mq7tAgBkVxjt1ZY8hFMZ1KFUdayQx0,19705
|
21
|
-
openlit/instrumentation/anthropic/__init__.py,sha256=QEsiwdxcQDzzlVYR4_x7KTdf0-UJDJt8FjwNQMspnxM,1929
|
22
|
-
openlit/instrumentation/anthropic/anthropic.py,sha256=mZbNepBzOtQBCGJCDWaVTpXukii6jjt_fgSOY1RfMoU,5147
|
23
|
-
openlit/instrumentation/anthropic/async_anthropic.py,sha256=DBHFdGKBhnI21Tuh_430kc-Zjaq54yUvfqmCmb1EQqg,5233
|
24
|
-
openlit/instrumentation/anthropic/utils.py,sha256=nfIOV7eTtAReNN5QN0oG6NaqftulGjbgMrALOaDHQ8A,11897
|
25
|
-
openlit/instrumentation/assemblyai/__init__.py,sha256=vW5ifDgwprOSsr2Xa94T8Us0Gm6ynimAPeB3a8VQKZw,1551
|
26
|
-
openlit/instrumentation/assemblyai/assemblyai.py,sha256=TJvzWXtedpRvDybbfpvHURUxndtpVBlpy1AsQHdoiwY,6393
|
27
|
-
openlit/instrumentation/astra/__init__.py,sha256=-JG3_YHQQaOQUr4XtFzqfaYiQKqviAAmikd3YS9H9XM,8252
|
28
|
-
openlit/instrumentation/astra/astra.py,sha256=JH2-7RJBbk6nM9kBEVgbxCXXnzgTuGT0KoBhVGBGeIs,1607
|
29
|
-
openlit/instrumentation/astra/async_astra.py,sha256=mMG22exgduREIe-7s2TdqLM1Ub8wP_ttcIS8wJH5P1Y,1625
|
30
|
-
openlit/instrumentation/astra/utils.py,sha256=-Af5R_g8-x9XeQiepLBW3Qa3Beji4EMxppDtiE_nmzM,4933
|
31
|
-
openlit/instrumentation/azure_ai_inference/__init__.py,sha256=ZoMAX_MUNCNMJqLZgl0A_kQ_lsgoz3VddkHiDT3pVF8,2032
|
32
|
-
openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py,sha256=o5KbVT9UbBZzhdGpw7p1P_7c-IKmy9XVAySZNd1hqAg,5056
|
33
|
-
openlit/instrumentation/azure_ai_inference/azure_ai_inference.py,sha256=WwoAQO5UCeX7bbK8GbtukqqY_s0w0U9Nab_zrU-3T8I,4970
|
34
|
-
openlit/instrumentation/azure_ai_inference/utils.py,sha256=YVzrfumTK29A-igAPxsG_ERggAnLlRnWI5MGRHAXxgI,10997
|
35
|
-
openlit/instrumentation/bedrock/__init__.py,sha256=ZdCBjgwK92cclnbFfF90NC6AsRreom3nT3CklbM7EmM,1555
|
36
|
-
openlit/instrumentation/bedrock/bedrock.py,sha256=jBDzm005Y9rbcTLxo-yShOtRb65NCDFyUYtggi0XRF0,12264
|
37
|
-
openlit/instrumentation/chroma/__init__.py,sha256=4ZeHY1OInRKQbb4qg8BVvGJtWN1XdzW6mosqi7-6ruE,3353
|
38
|
-
openlit/instrumentation/chroma/chroma.py,sha256=Ar0IYfNtCzFbtBl_irn6xpsKlyAPu5TZ_LYpttW1ixk,10583
|
39
|
-
openlit/instrumentation/cohere/__init__.py,sha256=TIRq1obu-zqBji0HhMbFGfI2q5m-zw0nWbToKeZqpg4,2905
|
40
|
-
openlit/instrumentation/cohere/async_cohere.py,sha256=OhhDrQNr6Kc3iNx1oG2FK9WphtDCi1Rdcq0vxowKB1M,30657
|
41
|
-
openlit/instrumentation/cohere/cohere.py,sha256=e_GIwa1wrwWaU62wRYjg5veAFSiildWA9gtDOD-mNek,30540
|
42
|
-
openlit/instrumentation/controlflow/__init__.py,sha256=Y5xSj6bwkGufG989YtRGujzj8qrV4T5kXr4hzGb2nGk,2168
|
43
|
-
openlit/instrumentation/controlflow/controlflow.py,sha256=uWnCRa9nIVgfTpN3_Fc0PSW_3iGeqsoPj-QZ3NW35lg,5558
|
44
|
-
openlit/instrumentation/crawl4ai/__init__.py,sha256=TTFFeZkTgPZJAD1Tlr2LK-CTH2A7NkZK-5SHKFfFOtU,1947
|
45
|
-
openlit/instrumentation/crawl4ai/async_crawl4ai.py,sha256=TC3Pz4UGsLtPrpKgtHerET1W96p4sJUJ0YPbGdqITAs,4879
|
46
|
-
openlit/instrumentation/crawl4ai/crawl4ai.py,sha256=sQ5rL4QSorlBK37Y80vxIIbnMCaq91XWOYj9UEN_cow,4861
|
47
|
-
openlit/instrumentation/crewai/__init__.py,sha256=Yh-evzhxG-x3E2oRf71S1NIx_36JGu4TeIqFl1-2H5w,1834
|
48
|
-
openlit/instrumentation/crewai/crewai.py,sha256=1HBF04j-WZR5dxZCeFyaq3viaX8GsRR3wotW9wRzgOA,7201
|
49
|
-
openlit/instrumentation/dynamiq/__init__.py,sha256=LuIYSQpQH5Pk5Ngl_3Jy3bImGjZgh61La6sbVJfC1Io,2391
|
50
|
-
openlit/instrumentation/dynamiq/dynamiq.py,sha256=nG7nNU52PilyxWPJ9d-U9GOWlpvMD8gop0R9nlEQDyU,5290
|
51
|
-
openlit/instrumentation/elevenlabs/__init__.py,sha256=LNbHWxnkq3ZPOnXKP01Wo0ger-YwC0G2rNzquivYMGQ,2691
|
52
|
-
openlit/instrumentation/elevenlabs/async_elevenlabs.py,sha256=eEr-0SIz28JhvJc4zYlcN9o9kNHoUskYVVd8RYclHWM,6822
|
53
|
-
openlit/instrumentation/elevenlabs/elevenlabs.py,sha256=5L1mpOYt8zRx5GWC5DzFMmKKE1zFVLKhvl9FNp__NcM,6805
|
54
|
-
openlit/instrumentation/embedchain/__init__.py,sha256=x2_qvJTwWog_mH6IY987Bp9mWxHtasqX2nZ3rwA7mb4,1959
|
55
|
-
openlit/instrumentation/embedchain/embedchain.py,sha256=CE5AdyQ1j4GhqPXfetTtk8KLS2z0Ul8INcLl5kDBboo,7914
|
56
|
-
openlit/instrumentation/firecrawl/__init__.py,sha256=kyVsAiDBC2djifqT2w1cPRAotiEyEabNvnBeSQxi9N8,1876
|
57
|
-
openlit/instrumentation/firecrawl/firecrawl.py,sha256=iltF8Qqexz8eL4QddJ5SEYC9fnL9snUWbE1z-bEljGA,3816
|
58
|
-
openlit/instrumentation/google_ai_studio/__init__.py,sha256=qKWyN5_BQyRnb0XG-v864Pe8t3OXa0ARYNVeE8mxgSE,2049
|
59
|
-
openlit/instrumentation/google_ai_studio/async_google_ai_studio.py,sha256=KsK9T7mLJF1RsW4S5iSOZjzZgLhwD27A5LYe6Dk1JeQ,11036
|
60
|
-
openlit/instrumentation/google_ai_studio/google_ai_studio.py,sha256=Q5neTYRDZ692JvABNmLZrSfBusKRHPGrnfO67OUv5sQ,11018
|
61
|
-
openlit/instrumentation/gpt4all/__init__.py,sha256=cO8mi3hhPDXcNwb9AwQ3-wQ_ydnOeBRwb0cptlQmAM4,1805
|
62
|
-
openlit/instrumentation/gpt4all/gpt4all.py,sha256=Ihzn8vj6uJXn_7Re2tm_VYfiGq-4MUI2MCObU6TaSHs,24107
|
63
|
-
openlit/instrumentation/gpu/__init__.py,sha256=flcKWN18lqrSiuqsQAGM7x7gPUr5YuZNSPlrocC1zcE,11028
|
64
|
-
openlit/instrumentation/groq/__init__.py,sha256=RszPvlPMD1j_uRu9MweyO_F_BRIqEExuB6sVQB2py4o,1901
|
65
|
-
openlit/instrumentation/groq/async_groq.py,sha256=ruBpy5amPZIG4as4s13-4X4B2PzthfzndCy1oyZ8TrM,24696
|
66
|
-
openlit/instrumentation/groq/groq.py,sha256=n8_UHC2mJlPHc6KFogDDt1gFhWPa5jAcZznr7nI-_xY,24610
|
67
|
-
openlit/instrumentation/haystack/__init__.py,sha256=jZPAXRilKTD1vww_4_K4jhYWNrMXngcs5pI29NTnFvI,1788
|
68
|
-
openlit/instrumentation/haystack/haystack.py,sha256=83Dbu6WdtpNXOZbzy8w46FWkfHmFB-fQQFtgkJ80pPI,3921
|
69
|
-
openlit/instrumentation/julep/__init__.py,sha256=g-hwXjvXAb5IDs5DR_P8rKsnD4beB9tupAzuuviQT3k,3216
|
70
|
-
openlit/instrumentation/julep/async_julep.py,sha256=URZQsxXEaQ4nHmOTeM1tsADRp4xQSe2-4BfCWVwGWDw,5313
|
71
|
-
openlit/instrumentation/julep/julep.py,sha256=0bGlsdW32JGu1fEdsfc-MDbOqqbcCrlkl-ojE98Zqys,5316
|
72
|
-
openlit/instrumentation/langchain/__init__.py,sha256=cNlumZ8fwLMlGVFMjNEndOIzooD4FQEOINX9tGVksII,3853
|
73
|
-
openlit/instrumentation/langchain/async_langchain.py,sha256=u_f7FZThF9VdsOPBlh8W6aytUUTRt9d5z2KD1zbz4UI,18302
|
74
|
-
openlit/instrumentation/langchain/langchain.py,sha256=tl2kXJU_SSlBAP6w_cb52cFhcP_SPWoTmf-sm6Ro0zo,16973
|
75
|
-
openlit/instrumentation/letta/__init__.py,sha256=K8PtRKxuueyqEYE3LzxWJ74IieNKSI6dmk9sNRd8Mt0,3031
|
76
|
-
openlit/instrumentation/letta/letta.py,sha256=y8yZWGtY6lDv4sA2UlUTZjktXxUOYyXatwz_yso-akA,8455
|
77
|
-
openlit/instrumentation/litellm/__init__.py,sha256=qRqfwDMhP5adKGI2vRaelAkN12i0e8jtJrT31VFFM5A,2374
|
78
|
-
openlit/instrumentation/litellm/async_litellm.py,sha256=BKUdGeJRV0J7ezsYkpVilPUcupcngIJIhEbO93RVTQs,30408
|
79
|
-
openlit/instrumentation/litellm/litellm.py,sha256=r6vdeWHiw9BvMXhQdnRxNrhBEYe7bBcHBXa8tpHLgUk,30314
|
80
|
-
openlit/instrumentation/llamaindex/__init__.py,sha256=2pmd9BKw3ab0OJ4yuJEg0-Jkn_haDbXvbUm5r2-rOCU,2007
|
81
|
-
openlit/instrumentation/llamaindex/llamaindex.py,sha256=MWPM_R1tAaEekMagCwMKpV87ATMNi3VLPbIPj3yMFp4,4078
|
82
|
-
openlit/instrumentation/mem0/__init__.py,sha256=IadP3bKgz2HCbnrh9S7AW24uDauGkzsIWeOQaGkOCc4,2447
|
83
|
-
openlit/instrumentation/mem0/mem0.py,sha256=ZKMU9W2n_mlWhmiQkGMrwR8OqAZuek6tRbdCDyakDIU,5335
|
84
|
-
openlit/instrumentation/milvus/__init__.py,sha256=qQqI-mOXEIsXGYwLyUGLEECcIHCm_6_KQZq0vFL90LY,2991
|
85
|
-
openlit/instrumentation/milvus/milvus.py,sha256=wBTBwA1Taz8j1BXWFVgXMpPNjyAAkP79pmi34HAA3tI,9173
|
86
|
-
openlit/instrumentation/mistral/__init__.py,sha256=5hh5s2-kudMbfkWD6Lhe5IQvrlZ5qA-Sv3laeXwyaPA,3060
|
87
|
-
openlit/instrumentation/mistral/async_mistral.py,sha256=8EDNnLHKei8vdlw4SeOpl6hiYSo7t2M2IlF0EwAvoaM,31099
|
88
|
-
openlit/instrumentation/mistral/mistral.py,sha256=U3X2DplgJwULmAtNzy6ZnxvXOI0Rv75PbPiHPi84hh4,30995
|
89
|
-
openlit/instrumentation/multion/__init__.py,sha256=Wr3lcDyG_YbOLkCUzBFhraAedF6E113tce8eSWlcz10,3149
|
90
|
-
openlit/instrumentation/multion/async_multion.py,sha256=HKp73QOMXxYuou4-S-9WAq3Jigm2Cvc_AysQ8v7loEw,6071
|
91
|
-
openlit/instrumentation/multion/multion.py,sha256=SrO25cv7dob1H4r00MsAa13Bj-WNsEwOeCoVfaCxeK8,6053
|
92
|
-
openlit/instrumentation/ollama/__init__.py,sha256=JjxSqEegmRoRqIVz7ZAq9dLyXPZ2DqV2wGmgXCENNpw,3004
|
93
|
-
openlit/instrumentation/ollama/async_ollama.py,sha256=LhDQPy3wLyNO9JWksUEeCx-DK9oIV3K98Cgwnp4RfKg,6538
|
94
|
-
openlit/instrumentation/ollama/ollama.py,sha256=wVyaX0quoiiCj1J3tyTiQx5Du5CmaWmt9e_lpCr7s6A,6434
|
95
|
-
openlit/instrumentation/ollama/utils.py,sha256=zXsWNqfnZLssrcb-GNbWeZeqTKVzQb1bes8vzgl-gbQ,14549
|
96
|
-
openlit/instrumentation/openai/__init__.py,sha256=FiL4OHDhs957spa3k9sNC_VLt0-txtwbnujQwnevQ5I,5564
|
97
|
-
openlit/instrumentation/openai/async_openai.py,sha256=AMievEMil486B9ibV0Nm54xkxAiHA-XzWWKAGQ4himI,71523
|
98
|
-
openlit/instrumentation/openai/openai.py,sha256=d-I-RyJMNcz1m0vdkEW-l6G0WaUNCavT9BvB_EGEFYg,71266
|
99
|
-
openlit/instrumentation/openai_agents/__init__.py,sha256=tRTSIrUtkXc_lfQnVanXmQLd2Sy9RqBNTHF5FhhZx7o,1530
|
100
|
-
openlit/instrumentation/openai_agents/openai_agents.py,sha256=teVgsn7lIKCGPmdl9RrgPavhdcCXjh3vMeGKskrd2vo,2666
|
101
|
-
openlit/instrumentation/phidata/__init__.py,sha256=tqls5-UI6FzbjxYgq_qqAfALhWJm8dHn2NtgqiQA4f8,1557
|
102
|
-
openlit/instrumentation/phidata/phidata.py,sha256=-BU_g3FpGcttOt-W-QIER5qquCRORob2UFLdaOW3F_s,4819
|
103
|
-
openlit/instrumentation/pinecone/__init__.py,sha256=0guSEPmObaZiOF8yHExpOGY-qW_egHXfZGog3rKGi8M,2596
|
104
|
-
openlit/instrumentation/pinecone/pinecone.py,sha256=ElslpN5SEjsjrdPAlOUjcrctFOWC6bPn4ywg0Z8gcoY,8807
|
105
|
-
openlit/instrumentation/premai/__init__.py,sha256=uyw3sn5iHuO1Clg7iLs6LYpOWg1ahJp_orb2tySshZE,1836
|
106
|
-
openlit/instrumentation/premai/premai.py,sha256=rK039lmhuCLNgOB5Ap_Negz18mth6nrRlzwn1eX457g,27960
|
107
|
-
openlit/instrumentation/qdrant/__init__.py,sha256=5prYH46yQt2hSA5zgg7kKM6P_F_7s9OQtfRE_lqsaVc,8970
|
108
|
-
openlit/instrumentation/qdrant/async_qdrant.py,sha256=CVzQ3wWXPKATsOEyHSagJrqSKonLeMAoSwnsq5rDDDM,15168
|
109
|
-
openlit/instrumentation/qdrant/qdrant.py,sha256=C-p0wY1e5Pfqxt0pCkiU_LJSQl1YFTVAFeU-ndnPIKg,15590
|
110
|
-
openlit/instrumentation/reka/__init__.py,sha256=39ZKj44PPUue8feG3bivAejfL66yD23pCJQ8hHnQKbY,1884
|
111
|
-
openlit/instrumentation/reka/async_reka.py,sha256=3ZBOlOtcAbyzE1A0XRUxdqxQr-sStrRiyaoUop7rqRc,9413
|
112
|
-
openlit/instrumentation/reka/reka.py,sha256=EkOrmAa9quIhmPcA-BcHfiGSXN93wWh_87aH9pYyULk,9395
|
113
|
-
openlit/instrumentation/together/__init__.py,sha256=MLLL2t8FyrytpfMueqcwekiqTKn-JN40HBD_LbZS_jQ,2661
|
114
|
-
openlit/instrumentation/together/async_together.py,sha256=MLfLI347GjPuT0JP51v-Zo-K7Iqg9ME6QCbmzDgjxpY,30544
|
115
|
-
openlit/instrumentation/together/together.py,sha256=D5xRFlgHtv0gszkOXOHcXVjGtrh8OVuqU9JbDgm0zI4,30440
|
116
|
-
openlit/instrumentation/transformers/__init__.py,sha256=f-kWX6_VdiOXqDa64iK6oJyYF3xkHuKxIBPTll-W7Lw,1467
|
117
|
-
openlit/instrumentation/transformers/transformers.py,sha256=gJpOiDZ76XRqgfOSLnFgLvmwzXAXBpOzSUtiU-nt_3g,9148
|
118
|
-
openlit/instrumentation/vertexai/__init__.py,sha256=mT28WCBvQfRCkAWGL6bd0EjEPHvMjaNcz6T3jsLZh8k,3745
|
119
|
-
openlit/instrumentation/vertexai/async_vertexai.py,sha256=BNnVQS_4tXWXAknonBmWBCN8rkoBKIr_RW0rwnlJTCI,23022
|
120
|
-
openlit/instrumentation/vertexai/vertexai.py,sha256=-wrsYOpFxHOikT4lsBHG58r0Aa_e0NU-j_pWrvW3TQ8,22936
|
121
|
-
openlit/instrumentation/vllm/__init__.py,sha256=8Su4DEpxdT2wr4Qr17heakzoGSbuq6ey1MmSVR_vbOA,1508
|
122
|
-
openlit/instrumentation/vllm/vllm.py,sha256=MD02lonL6QP0GYUF9sZx-ZC0R-je442ufiE1bH5dNeU,7754
|
123
|
-
openlit/otel/events.py,sha256=VrMjTpvnLtYRBHCiFwJojTQqqNpRCxoD4yJYeQrtPsk,3560
|
124
|
-
openlit/otel/metrics.py,sha256=Iwx6baEiCZPNqsFf92K5mDWU8are8DOF0uQAuNZsCKg,6826
|
125
|
-
openlit/otel/tracing.py,sha256=tjV2bEbEDPUB1Z46gE-UsJsb04sRdFrfbhIDkxViZc0,3103
|
126
|
-
openlit/semcov/__init__.py,sha256=lM0Y3wMYYmCvfcNGD3k0xSn1XZUiGw-bKgCuwcGsOp8,13302
|
127
|
-
openlit-1.33.18.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
128
|
-
openlit-1.33.18.dist-info/METADATA,sha256=ILFGRCT5sslnrJoaoeKDGqnbKhjs-nYI4BRM9S3-7-A,23471
|
129
|
-
openlit-1.33.18.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
130
|
-
openlit-1.33.18.dist-info/RECORD,,
|
File without changes
|