openlit 1.33.9__py3-none-any.whl → 1.33.10__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 +5 -0
- openlit/__init__.py +3 -2
- openlit/instrumentation/ag2/ag2.py +3 -3
- openlit/instrumentation/ai21/ai21.py +1 -1
- openlit/instrumentation/ai21/async_ai21.py +1 -1
- openlit/instrumentation/anthropic/anthropic.py +1 -1
- openlit/instrumentation/anthropic/async_anthropic.py +1 -1
- openlit/instrumentation/astra/astra.py +5 -5
- openlit/instrumentation/astra/async_astra.py +5 -5
- openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py +3 -3
- openlit/instrumentation/azure_ai_inference/azure_ai_inference.py +3 -3
- openlit/instrumentation/chroma/chroma.py +5 -5
- openlit/instrumentation/cohere/async_cohere.py +1 -1
- openlit/instrumentation/cohere/cohere.py +2 -2
- openlit/instrumentation/controlflow/controlflow.py +3 -3
- openlit/instrumentation/crawl4ai/async_crawl4ai.py +3 -3
- openlit/instrumentation/crawl4ai/crawl4ai.py +3 -3
- openlit/instrumentation/crewai/crewai.py +4 -2
- openlit/instrumentation/dynamiq/dynamiq.py +3 -3
- openlit/instrumentation/elevenlabs/async_elevenlabs.py +1 -2
- openlit/instrumentation/elevenlabs/elevenlabs.py +1 -2
- openlit/instrumentation/embedchain/embedchain.py +5 -5
- openlit/instrumentation/firecrawl/firecrawl.py +3 -3
- openlit/instrumentation/gpt4all/__init__.py +2 -2
- openlit/instrumentation/gpt4all/gpt4all.py +345 -220
- openlit/instrumentation/gpu/__init__.py +5 -5
- openlit/instrumentation/groq/__init__.py +2 -2
- openlit/instrumentation/groq/async_groq.py +356 -240
- openlit/instrumentation/groq/groq.py +356 -240
- openlit/instrumentation/haystack/haystack.py +3 -3
- openlit/instrumentation/julep/async_julep.py +3 -3
- openlit/instrumentation/julep/julep.py +3 -3
- openlit/instrumentation/langchain/__init__.py +13 -7
- openlit/instrumentation/langchain/async_langchain.py +384 -0
- openlit/instrumentation/langchain/langchain.py +98 -490
- openlit/instrumentation/letta/letta.py +5 -3
- openlit/instrumentation/litellm/__init__.py +4 -5
- openlit/instrumentation/litellm/async_litellm.py +316 -245
- openlit/instrumentation/litellm/litellm.py +312 -241
- openlit/instrumentation/llamaindex/llamaindex.py +3 -3
- openlit/instrumentation/mem0/mem0.py +3 -3
- openlit/instrumentation/milvus/milvus.py +5 -5
- openlit/instrumentation/mistral/__init__.py +6 -6
- openlit/instrumentation/mistral/async_mistral.py +421 -248
- openlit/instrumentation/mistral/mistral.py +418 -244
- openlit/instrumentation/multion/async_multion.py +4 -2
- openlit/instrumentation/multion/multion.py +4 -2
- openlit/instrumentation/ollama/__init__.py +8 -30
- openlit/instrumentation/ollama/async_ollama.py +385 -417
- openlit/instrumentation/ollama/ollama.py +384 -417
- openlit/instrumentation/openai/async_openai.py +7 -9
- openlit/instrumentation/openai/openai.py +7 -9
- openlit/instrumentation/phidata/phidata.py +4 -2
- openlit/instrumentation/pinecone/pinecone.py +5 -5
- openlit/instrumentation/premai/__init__.py +2 -2
- openlit/instrumentation/premai/premai.py +262 -213
- openlit/instrumentation/qdrant/async_qdrant.py +5 -5
- openlit/instrumentation/qdrant/qdrant.py +5 -5
- openlit/instrumentation/reka/__init__.py +2 -2
- openlit/instrumentation/reka/async_reka.py +90 -52
- openlit/instrumentation/reka/reka.py +90 -52
- openlit/instrumentation/together/__init__.py +4 -4
- openlit/instrumentation/together/async_together.py +278 -236
- openlit/instrumentation/together/together.py +278 -236
- openlit/instrumentation/transformers/__init__.py +1 -1
- openlit/instrumentation/transformers/transformers.py +75 -44
- openlit/instrumentation/vertexai/__init__.py +14 -64
- openlit/instrumentation/vertexai/async_vertexai.py +329 -986
- openlit/instrumentation/vertexai/vertexai.py +329 -986
- openlit/instrumentation/vllm/__init__.py +1 -1
- openlit/instrumentation/vllm/vllm.py +62 -32
- openlit/semcov/__init__.py +3 -3
- {openlit-1.33.9.dist-info → openlit-1.33.10.dist-info}/METADATA +1 -1
- openlit-1.33.10.dist-info/RECORD +122 -0
- openlit-1.33.9.dist-info/RECORD +0 -121
- {openlit-1.33.9.dist-info → openlit-1.33.10.dist-info}/LICENSE +0 -0
- {openlit-1.33.9.dist-info → openlit-1.33.10.dist-info}/WHEEL +0 -0
@@ -34,7 +34,7 @@ class VLLMInstrumentor(BaseInstrumentor):
|
|
34
34
|
wrap_function_wrapper(
|
35
35
|
"vllm",
|
36
36
|
"LLM.generate",
|
37
|
-
generate(
|
37
|
+
generate(version, environment, application_name,
|
38
38
|
tracer, pricing_info, trace_content, metrics, disable_metrics),
|
39
39
|
)
|
40
40
|
|
@@ -1,24 +1,29 @@
|
|
1
|
-
# pylint: disable=duplicate-code, broad-exception-caught, too-many-statements, unused-argument, possibly-used-before-assignment
|
2
1
|
"""
|
3
2
|
Module for monitoring vLLM API calls.
|
4
3
|
"""
|
5
4
|
|
6
5
|
import logging
|
6
|
+
import time
|
7
7
|
from opentelemetry.trace import SpanKind, Status, StatusCode
|
8
|
-
from opentelemetry.sdk.resources import TELEMETRY_SDK_NAME
|
9
|
-
from openlit.__helpers import
|
8
|
+
from opentelemetry.sdk.resources import SERVICE_NAME, TELEMETRY_SDK_NAME, DEPLOYMENT_ENVIRONMENT
|
9
|
+
from openlit.__helpers import (
|
10
|
+
get_chat_model_cost,
|
11
|
+
handle_exception,
|
12
|
+
general_tokens,
|
13
|
+
create_metrics_attributes,
|
14
|
+
set_server_address_and_port
|
15
|
+
)
|
10
16
|
from openlit.semcov import SemanticConvetion
|
11
17
|
|
12
18
|
# Initialize logger for logging potential issues and operations
|
13
19
|
logger = logging.getLogger(__name__)
|
14
20
|
|
15
|
-
def generate(
|
21
|
+
def generate(version, environment, application_name,
|
16
22
|
tracer, pricing_info, trace_content, metrics, disable_metrics):
|
17
23
|
"""
|
18
24
|
Generates a telemetry wrapper for generate to collect metrics.
|
19
25
|
|
20
26
|
Args:
|
21
|
-
gen_ai_endpoint: Endpoint identifier for logging and tracing.
|
22
27
|
version: Version of the monitoring package.
|
23
28
|
environment: Deployment environment (e.g., production, staging).
|
24
29
|
application_name: Name of the application using the vLLM API.
|
@@ -47,28 +52,47 @@ def generate(gen_ai_endpoint, version, environment, application_name,
|
|
47
52
|
The response from the original 'generate' method.
|
48
53
|
"""
|
49
54
|
|
55
|
+
server_address, server_port = set_server_address_and_port(instance, "api.cohere.com", 443)
|
56
|
+
request_model = instance.llm_engine.model_config.model or "facebook/opt-125m"
|
57
|
+
|
58
|
+
span_name = f"{SemanticConvetion.GEN_AI_OPERATION_TYPE_CHAT} {request_model}"
|
59
|
+
|
50
60
|
# pylint: disable=line-too-long
|
51
|
-
with tracer.start_as_current_span(
|
61
|
+
with tracer.start_as_current_span(span_name, kind= SpanKind.CLIENT) as span:
|
62
|
+
start_time = time.time()
|
52
63
|
response = wrapped(*args, **kwargs)
|
64
|
+
end_time = time.time()
|
53
65
|
|
54
66
|
try:
|
55
|
-
model = instance.llm_engine.model_config.model or "facebook/opt-125m"
|
56
67
|
# Set base span attribues
|
57
68
|
span.set_attribute(TELEMETRY_SDK_NAME, "openlit")
|
58
69
|
span.set_attribute(SemanticConvetion.GEN_AI_SYSTEM,
|
59
70
|
SemanticConvetion.GEN_AI_SYSTEM_VLLM)
|
60
71
|
span.set_attribute(SemanticConvetion.GEN_AI_OPERATION,
|
61
72
|
SemanticConvetion.GEN_AI_OPERATION_TYPE_CHAT)
|
62
|
-
span.set_attribute(SemanticConvetion.
|
63
|
-
|
64
|
-
span.set_attribute(SemanticConvetion.GEN_AI_ENVIRONMENT,
|
65
|
-
environment)
|
66
|
-
span.set_attribute(SemanticConvetion.GEN_AI_APPLICATION_NAME,
|
67
|
-
application_name)
|
73
|
+
span.set_attribute(SemanticConvetion.SERVER_PORT,
|
74
|
+
server_port)
|
68
75
|
span.set_attribute(SemanticConvetion.GEN_AI_REQUEST_MODEL,
|
69
|
-
|
76
|
+
request_model)
|
77
|
+
span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_MODEL,
|
78
|
+
request_model)
|
79
|
+
span.set_attribute(SemanticConvetion.SERVER_ADDRESS,
|
80
|
+
server_address)
|
81
|
+
span.set_attribute(SemanticConvetion.GEN_AI_OUTPUT_TYPE,
|
82
|
+
"text")
|
83
|
+
|
84
|
+
# Set base span attribues (Extras)
|
85
|
+
span.set_attribute(DEPLOYMENT_ENVIRONMENT,
|
86
|
+
environment)
|
87
|
+
span.set_attribute(SERVICE_NAME,
|
88
|
+
application_name)
|
70
89
|
span.set_attribute(SemanticConvetion.GEN_AI_REQUEST_IS_STREAM,
|
71
90
|
False)
|
91
|
+
span.set_attribute(SemanticConvetion.GEN_AI_SERVER_TTFT,
|
92
|
+
end_time - start_time)
|
93
|
+
span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
|
94
|
+
version)
|
95
|
+
|
72
96
|
input_tokens = 0
|
73
97
|
output_tokens = 0
|
74
98
|
cost = 0
|
@@ -95,37 +119,43 @@ def generate(gen_ai_endpoint, version, environment, application_name,
|
|
95
119
|
attributes=completion_attributes,
|
96
120
|
)
|
97
121
|
|
98
|
-
total_tokens = input_tokens + output_tokens
|
99
|
-
|
100
122
|
span.set_attribute(SemanticConvetion.GEN_AI_USAGE_INPUT_TOKENS,
|
101
123
|
input_tokens)
|
102
124
|
span.set_attribute(SemanticConvetion.GEN_AI_USAGE_OUTPUT_TOKENS,
|
103
125
|
output_tokens)
|
104
126
|
span.set_attribute(SemanticConvetion.GEN_AI_USAGE_TOTAL_TOKENS,
|
105
|
-
|
127
|
+
input_tokens + output_tokens)
|
128
|
+
|
129
|
+
# Calculate cost of the operation
|
130
|
+
cost = get_chat_model_cost(request_model, pricing_info,
|
131
|
+
input_tokens, output_tokens)
|
106
132
|
span.set_attribute(SemanticConvetion.GEN_AI_USAGE_COST,
|
107
133
|
cost)
|
108
134
|
|
109
135
|
span.set_status(Status(StatusCode.OK))
|
110
136
|
|
111
137
|
if disable_metrics is False:
|
112
|
-
attributes =
|
113
|
-
|
114
|
-
|
115
|
-
SemanticConvetion.
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
SemanticConvetion.GEN_AI_OPERATION_TYPE_CHAT,
|
123
|
-
SemanticConvetion.GEN_AI_REQUEST_MODEL:
|
124
|
-
model
|
125
|
-
}
|
138
|
+
attributes = create_metrics_attributes(
|
139
|
+
service_name=application_name,
|
140
|
+
deployment_environment=environment,
|
141
|
+
operation=SemanticConvetion.GEN_AI_OPERATION_TYPE_CHAT,
|
142
|
+
system=SemanticConvetion.GEN_AI_SYSTEM_VLLM,
|
143
|
+
request_model=request_model,
|
144
|
+
server_address=server_address,
|
145
|
+
server_port=server_port,
|
146
|
+
response_model=request_model,
|
147
|
+
)
|
126
148
|
|
149
|
+
metrics["genai_client_usage_tokens"].record(
|
150
|
+
input_tokens + output_tokens, attributes
|
151
|
+
)
|
152
|
+
metrics["genai_client_operation_duration"].record(
|
153
|
+
end_time - start_time, attributes
|
154
|
+
)
|
155
|
+
metrics["genai_server_ttft"].record(
|
156
|
+
end_time - start_time, attributes
|
157
|
+
)
|
127
158
|
metrics["genai_requests"].add(1, attributes)
|
128
|
-
metrics["genai_total_tokens"].add(total_tokens, attributes)
|
129
159
|
metrics["genai_completion_tokens"].add(output_tokens, attributes)
|
130
160
|
metrics["genai_prompt_tokens"].add(input_tokens, attributes)
|
131
161
|
metrics["genai_cost"].record(cost, attributes)
|
openlit/semcov/__init__.py
CHANGED
@@ -88,9 +88,9 @@ class SemanticConvetion:
|
|
88
88
|
GEN_AI_SYSTEM_XAI = "xai"
|
89
89
|
|
90
90
|
# GenAI OpenAI Attributes (OTel Semconv)
|
91
|
-
|
92
|
-
|
93
|
-
|
91
|
+
GEN_AI_REQUEST_SERVICE_TIER = "gen_ai.request.service_tier"
|
92
|
+
GEN_AI_RESPONSE_SERVICE_TIER = "gen_ai.response.service_tier"
|
93
|
+
GEN_AI_RESPONSE_SYSTEM_FINGERPRINT = "gen_ai.response.system_fingerprint"
|
94
94
|
|
95
95
|
# GenAI System Names (Extra)
|
96
96
|
GEN_AI_SYSTEM_HUGGING_FACE = "huggingface"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: openlit
|
3
|
-
Version: 1.33.
|
3
|
+
Version: 1.33.10
|
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
|
@@ -0,0 +1,122 @@
|
|
1
|
+
openlit/__helpers.py,sha256=44dXhkRJ5K42qjNwC5PMphLj2N6CoXdO3m9ZmbxSFtQ,9840
|
2
|
+
openlit/__init__.py,sha256=GKu_3fhw27IXODjUxTpTkX0JGO9yskuyxhX4w0y6Qx4,22446
|
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=Nf9cDoXB16NYgZisvVQduFYJ5fpU90CNlMrIF4pSH-Y,1827
|
16
|
+
openlit/instrumentation/ag2/ag2.py,sha256=Yo6WfuTLLk3yVValZGp7GC5lKb2Z3kOHAUWxlhhOyN4,4454
|
17
|
+
openlit/instrumentation/ai21/__init__.py,sha256=Wk23syYEbHuKBzdIabD3dfjZJTW-qzu7LgJPbG8mNHY,2549
|
18
|
+
openlit/instrumentation/ai21/ai21.py,sha256=-wzx6SMGJaMXXgfC4T31EBqi6TEC1JNy-fV5bOj4nY4,33615
|
19
|
+
openlit/instrumentation/ai21/async_ai21.py,sha256=vay0klz43slfC9RhITQNC9iKAg3gzAqSahy9rPgqIiI,33719
|
20
|
+
openlit/instrumentation/anthropic/__init__.py,sha256=IoWGApFQ72DQYp9jN-LRDr0uRW3OamDgHG-mO23OSzs,1887
|
21
|
+
openlit/instrumentation/anthropic/anthropic.py,sha256=fj023njYA4nSvwuj5vrvOsGqyqKvxzzMdY7pWYKikM4,22332
|
22
|
+
openlit/instrumentation/anthropic/async_anthropic.py,sha256=yxy5UlRaodyVfMTLK5UDujoCZ9ioHW__-YdBv1jTRMg,22418
|
23
|
+
openlit/instrumentation/assemblyai/__init__.py,sha256=6uSNexxRJXIX-ZLitD3ow7ej3WK_N_W4ZxeIFb_eseY,1535
|
24
|
+
openlit/instrumentation/assemblyai/assemblyai.py,sha256=dLCdL9SyfOocmzvT0iYG4UwM3giom_nKFlCoTQix5Bk,6262
|
25
|
+
openlit/instrumentation/astra/__init__.py,sha256=G4alCOR6hXQvUQPDCS8lY1rj0Mz-KmrW5vVWk5loO78,8054
|
26
|
+
openlit/instrumentation/astra/astra.py,sha256=19WweO3jGvUOC2fkij2ZKKaGbKfg1LaC-GSMoEsDmjU,12061
|
27
|
+
openlit/instrumentation/astra/async_astra.py,sha256=8te62MqJBcdVqtG4iz9wFAn9bFaeESFvcqZVaVA9VnM,12073
|
28
|
+
openlit/instrumentation/azure_ai_inference/__init__.py,sha256=xmDk8eK0VB6C1TsH5oIciVnxAhIrXiqDzyqHgy6u51Q,2621
|
29
|
+
openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py,sha256=anQUO465P0ns9CrKAPFGFziA5qJvGuv69RB50cFAysk,29894
|
30
|
+
openlit/instrumentation/azure_ai_inference/azure_ai_inference.py,sha256=b611q2NSIsT6KfgOogtfcHW-eliOK_bS8rSnOjU1D0A,29790
|
31
|
+
openlit/instrumentation/bedrock/__init__.py,sha256=i32hjjdBu2JUGS1eytWjV2WX2_xvXw-iqrbXADSpHx0,1525
|
32
|
+
openlit/instrumentation/bedrock/bedrock.py,sha256=IwV2y3e0yXcK11_6VJ6HjeaC9ic0Xc3rd4hqNyMBY6I,12234
|
33
|
+
openlit/instrumentation/chroma/__init__.py,sha256=61lFpHlUEQUobsUJZHXdvOViKwsOH8AOvSfc4VgCmiM,3253
|
34
|
+
openlit/instrumentation/chroma/chroma.py,sha256=hZgmGSWf22UqLyoyFTSh9uqrSiFNwMPrCZW9HckMJvo,10513
|
35
|
+
openlit/instrumentation/cohere/__init__.py,sha256=P8w30qt_RoXeQ5VsdW0KB4G1-WaWS9DkhTqaoCZuDeI,2825
|
36
|
+
openlit/instrumentation/cohere/async_cohere.py,sha256=_W7mcfShY0LlPc6S5WmIRlp9KVBqivBBSfZbThb1Wn4,30567
|
37
|
+
openlit/instrumentation/cohere/cohere.py,sha256=egR629mOhSRdg1-x-rMwqNjBqIIxjuYNTS8_HQ3KfAg,30450
|
38
|
+
openlit/instrumentation/controlflow/__init__.py,sha256=iKZ08IANfoN_n4o1TZJIK_C_t6RZQ6AS1H7kMfyBbYA,2118
|
39
|
+
openlit/instrumentation/controlflow/controlflow.py,sha256=m9ZqO_9iQo1Hg9-9Endtw_biC0cZfzaFVLlpUiN9sXs,5538
|
40
|
+
openlit/instrumentation/crawl4ai/__init__.py,sha256=CGkcbQijpKae_8GD_1ybDnCCk0MVu2AdV-ppFOg8mAA,1907
|
41
|
+
openlit/instrumentation/crawl4ai/async_crawl4ai.py,sha256=R3S9iMkcetQhiag18oq29of7TDU5s6kmpGw9sWHxylQ,4859
|
42
|
+
openlit/instrumentation/crawl4ai/crawl4ai.py,sha256=COTz6EWKK1iRGWMsPpuSC63P4jvZdyUyY_mMFSHqndE,4841
|
43
|
+
openlit/instrumentation/crewai/__init__.py,sha256=cETkkwnKYEMAKlMrHbZ9-RvcRUPYaSNqNIhy2-vCDK8,1794
|
44
|
+
openlit/instrumentation/crewai/crewai.py,sha256=JblvqWdZqC8H6geiQB35sHS0KBP_N0nGZzTG8DVHQpk,7181
|
45
|
+
openlit/instrumentation/dynamiq/__init__.py,sha256=2uIHHxFWca0g2YLO2RBfi2Al6uWUYvVZBfDiPOHCdpQ,2331
|
46
|
+
openlit/instrumentation/dynamiq/dynamiq.py,sha256=1Iga7NS4zw3LDFE_VMxT1PBGC4MAcfmCCKoyQRORojE,5260
|
47
|
+
openlit/instrumentation/elevenlabs/__init__.py,sha256=BZjAe-kzFJpKxT0tKksXVfZgirvgEp8qM3SfegWU5co,2631
|
48
|
+
openlit/instrumentation/elevenlabs/async_elevenlabs.py,sha256=H5svCDy_JGCsssi4IbF3HDF0ECgvR6_I_j1p0rVJe0o,6792
|
49
|
+
openlit/instrumentation/elevenlabs/elevenlabs.py,sha256=khhkb7CHOMkQwhia___t0Iy9xMrQs3w-dEovvqdIeks,6775
|
50
|
+
openlit/instrumentation/embedchain/__init__.py,sha256=8TYk1OEbz46yF19dr-gB_x80VZMagU3kJ8-QihPXTeA,1929
|
51
|
+
openlit/instrumentation/embedchain/embedchain.py,sha256=-V4QAPtbE8mDE8FGzYQ2AUp8FpoYD2ygJWmXPEqwQKs,7874
|
52
|
+
openlit/instrumentation/firecrawl/__init__.py,sha256=2QTcpPoaximsApdp68WD2iYR1_vZnKlkbAd4RHhgeOo,1836
|
53
|
+
openlit/instrumentation/firecrawl/firecrawl.py,sha256=ZtYJsKcWuNOKihI76G7gZOlNSHs5ua8THj7FBWDukKY,3796
|
54
|
+
openlit/instrumentation/google_ai_studio/__init__.py,sha256=n_vOdZeccUvw8W_NYEpiw468sywqnD5O_E1CjuElXYM,2009
|
55
|
+
openlit/instrumentation/google_ai_studio/async_google_ai_studio.py,sha256=vYPfpwvHQh1vLgR2JMhpzXLJ4e7vPU5NhjjsAR7UNwM,11006
|
56
|
+
openlit/instrumentation/google_ai_studio/google_ai_studio.py,sha256=4EfHmAQG9Auihs0DaaSx1wBmC8FV-1gDAGh5cnltMIE,10988
|
57
|
+
openlit/instrumentation/gpt4all/__init__.py,sha256=QGk_uhpS9ac3jk_nk7yGAw9YBbGbbMrVv6OkAh4vvEM,1765
|
58
|
+
openlit/instrumentation/gpt4all/gpt4all.py,sha256=ATbPMj1jzF-62iKTKMXnREvzM-eYndZB2nSIl2LNRt4,24037
|
59
|
+
openlit/instrumentation/gpu/__init__.py,sha256=flcKWN18lqrSiuqsQAGM7x7gPUr5YuZNSPlrocC1zcE,11028
|
60
|
+
openlit/instrumentation/groq/__init__.py,sha256=o_3StdM3VyMjL4XT-agYfZkQouVr1MqeQ-2fUPdpRyI,1861
|
61
|
+
openlit/instrumentation/groq/async_groq.py,sha256=qGf5x7Ng4D_IfK2GMctWXe1Cq6uaT4sk-cAqWMdSnhM,24646
|
62
|
+
openlit/instrumentation/groq/groq.py,sha256=CB8Dtgym7RaMkM8FBpHMoYlAy1BRoW7n9EFX3YdBsQc,24560
|
63
|
+
openlit/instrumentation/haystack/__init__.py,sha256=QK6XxxZUHX8vMv2Crk7rNBOc64iOOBLhJGL_lPlAZ8s,1758
|
64
|
+
openlit/instrumentation/haystack/haystack.py,sha256=qGBLRFRs5Z0nuAYf9oic3BrdQMx7eXT-g3S0rihHHtU,3901
|
65
|
+
openlit/instrumentation/julep/__init__.py,sha256=oonEVK41P5g4SYRm0E_H4zCVH9NM4aJ-UswXzF3Oiv0,3136
|
66
|
+
openlit/instrumentation/julep/async_julep.py,sha256=fMMa8_6r97ipDRo8_soQKSZ1tw9LRCjdgd_JTFEXjkM,5283
|
67
|
+
openlit/instrumentation/julep/julep.py,sha256=tKjQN82PyKHNhfqwjjFGz5iCZRkFn1kLPuc2wIt8F0Y,5286
|
68
|
+
openlit/instrumentation/langchain/__init__.py,sha256=thTGg9NCNlnVEUc_KsxR94AY2v5pwEk7uVnbLJ_Bl-4,3823
|
69
|
+
openlit/instrumentation/langchain/async_langchain.py,sha256=s1LzZhT3Dxw2FD5wwK2hmDBSoxtp39yuqUB9ru5g9so,18155
|
70
|
+
openlit/instrumentation/langchain/langchain.py,sha256=fk4nBc-wqJRE45PkXuOCIHUNoke1wlsNGEd3t1l_lis,18017
|
71
|
+
openlit/instrumentation/letta/__init__.py,sha256=sjjOuMvZ1EPGEluNW0WTuSXYPhrb453cBIizt88Ta3g,2951
|
72
|
+
openlit/instrumentation/letta/letta.py,sha256=WJYDmHQVeBsLBIlTHfZXiHBhjOkmr9dEj2HtkX-1OU0,8405
|
73
|
+
openlit/instrumentation/litellm/__init__.py,sha256=dIFwJx45riHwolxBlUZUabO2TEnAR9MptwmSaFvaJfY,2314
|
74
|
+
openlit/instrumentation/litellm/async_litellm.py,sha256=6Ljft-M80763dQvhgT_RPvt63EE33pWUY5G1rE6MciM,30328
|
75
|
+
openlit/instrumentation/litellm/litellm.py,sha256=n5p0MnDFjNwYhYkcRfFRWRH_qtXbUR821X1GvHigYPc,30234
|
76
|
+
openlit/instrumentation/llamaindex/__init__.py,sha256=vPtK65G6b-TwJERowVRUVl7f_nBSlFdwPBtpg8dOGos,1977
|
77
|
+
openlit/instrumentation/llamaindex/llamaindex.py,sha256=reCkNucy-B4MC0ZsnlJ2lU68iN81KyDmWMqb180IaIc,4058
|
78
|
+
openlit/instrumentation/mem0/__init__.py,sha256=guOkLoSKvHSVSmEWhCHMVRMUGEa5JzqI8CIluHtwirQ,2417
|
79
|
+
openlit/instrumentation/mem0/mem0.py,sha256=AIddouvkTTjhyHrMOX7Z8z9fZ7jpD5PVlTYeHWatycI,5315
|
80
|
+
openlit/instrumentation/milvus/__init__.py,sha256=qi1yfmMrvkDtnrN_6toW8qC9BRL78bq7ayWpObJ8Bq4,2961
|
81
|
+
openlit/instrumentation/milvus/milvus.py,sha256=UOucpoOH0ay2jG9CRUsWtFXhceYJ3Z6ghWzhORCOF2E,9103
|
82
|
+
openlit/instrumentation/mistral/__init__.py,sha256=u3e9ueG0-wJ1ZgRa8zknPj3bTWA0AFI-3-UxlothkLg,2980
|
83
|
+
openlit/instrumentation/mistral/async_mistral.py,sha256=h_fd9oDX_AuFoK6023haxaYxr0PMd0M7PLs05uwFmA8,30999
|
84
|
+
openlit/instrumentation/mistral/mistral.py,sha256=RnFedQO05jEWyhjtsxKRAIALf1iAkbTA82-vjDb-bcs,30895
|
85
|
+
openlit/instrumentation/multion/__init__.py,sha256=DUt70uINLYi4xTxZ6D3bxKUBHYi1FpKbliQ6E7D_SeQ,3069
|
86
|
+
openlit/instrumentation/multion/async_multion.py,sha256=2lSIP3HQa6XvWoA0pafQ1qnEIA1bBUxTlXwrGWZeOkc,6021
|
87
|
+
openlit/instrumentation/multion/multion.py,sha256=LaUKx8XShi4Lv3IwnQR_NB0_Eb9s5Xq_VC-E0I17BlY,6003
|
88
|
+
openlit/instrumentation/ollama/__init__.py,sha256=KDO0JxdfNiQiEpWxEk93m3LiM07zAmvnNznb1E3PtN4,2856
|
89
|
+
openlit/instrumentation/ollama/async_ollama.py,sha256=k9ya3wSZfb8rQMqUqi3-fRcP2cw969-jf8TMjl47cyY,28301
|
90
|
+
openlit/instrumentation/ollama/ollama.py,sha256=Y74fa0C4JrxN5m4c7_lFvEaamnGNqWlCc2Zmn2gIMUs,28197
|
91
|
+
openlit/instrumentation/openai/__init__.py,sha256=54pwkndSO1IS78Qqx1A-QNkObx5eJnsvWeMtDZj2lD8,4773
|
92
|
+
openlit/instrumentation/openai/async_openai.py,sha256=sm9ZbO5RYp69-4ak2kmQ8iWziE8qzG8fCc10jcfWYoE,50461
|
93
|
+
openlit/instrumentation/openai/openai.py,sha256=y9ZS1NQmXzBTM0I5Nt0Ex5DK8x7EUiIW8t-coqfidMs,50290
|
94
|
+
openlit/instrumentation/phidata/__init__.py,sha256=rfPCXYOIsJbxChee2p269UzkJ1Z-pvQbii7Fgrw1v2g,1527
|
95
|
+
openlit/instrumentation/phidata/phidata.py,sha256=0qLqJ79A5-fVXDDDfFr0yLr1yiJQqaVa79l_9I5jwuQ,4799
|
96
|
+
openlit/instrumentation/pinecone/__init__.py,sha256=Mv9bElqNs07_JQkYyNnO0wOM3hdbprmw7sttdMeKC7g,2526
|
97
|
+
openlit/instrumentation/pinecone/pinecone.py,sha256=EV9PPri34c_OCGKqRuImshn0E1L5HsSNwgHWSr8v_DE,8747
|
98
|
+
openlit/instrumentation/premai/__init__.py,sha256=VUrJaD59cpUDizobpkkIkWq-Kurq84Daj_SBwEMlMDE,1796
|
99
|
+
openlit/instrumentation/premai/premai.py,sha256=grBsIc_5xt8XjtHeQymgD9zGPMZ9Jb55CPWOYd42i94,27890
|
100
|
+
openlit/instrumentation/qdrant/__init__.py,sha256=GMlZgRBKoQMgrL4cFbAKwytfdTHLzJEIuTQMxp0uZO0,8940
|
101
|
+
openlit/instrumentation/qdrant/async_qdrant.py,sha256=I_nchTueGLvb8OXID7MZyV1k97xnwGBDQWEzWla7vqo,15053
|
102
|
+
openlit/instrumentation/qdrant/qdrant.py,sha256=WUrjYCgQZVWVyFxiA-lXB6LbLM1l8tFWG5FoojiShIg,15470
|
103
|
+
openlit/instrumentation/reka/__init__.py,sha256=LIZt2K-GAXD69JAXIl_apf-IHIYMQSfRG2eHlAX-Zj0,1844
|
104
|
+
openlit/instrumentation/reka/async_reka.py,sha256=MNSNy1SoaCcWgv-dAuKD7ylk4q6dLn10RFeKxc2IuiM,9383
|
105
|
+
openlit/instrumentation/reka/reka.py,sha256=OU6Zv3FQ4f9Ewgd3ZlrLVRfuoawNFfKTmrU-_ZH7f9s,9365
|
106
|
+
openlit/instrumentation/together/__init__.py,sha256=Kjj2Q2iy7e93Zsz4jPocOg8fb0DmNHMF1VzP90XieC4,2601
|
107
|
+
openlit/instrumentation/together/async_together.py,sha256=ZGb_Gf9WZ7aDdM5L61_tF_PfOb1OOqkq8CMD77AV0UY,30464
|
108
|
+
openlit/instrumentation/together/together.py,sha256=M6nysPLb2UM_yWGGRtJYf4YtNVSkM0bUZ__uAahSy_8,30360
|
109
|
+
openlit/instrumentation/transformers/__init__.py,sha256=Fq2Nz1IsduF2GMIRSK3DK8KD0BYx6zk4zMASlkD9-cY,1437
|
110
|
+
openlit/instrumentation/transformers/transformers.py,sha256=A6CPjMh9alqMmxs_ZIewlkT2WrPDOtw8VjRrYm99Qi0,9108
|
111
|
+
openlit/instrumentation/vertexai/__init__.py,sha256=dgzzSOFFIw9TD8xyp8T2FTEMG-_15oyNycNN7MLjwsI,3645
|
112
|
+
openlit/instrumentation/vertexai/async_vertexai.py,sha256=wNTJ42ZXAHrb727OT6XDOx8p3hmRD6uY_G4suSFPyTk,22982
|
113
|
+
openlit/instrumentation/vertexai/vertexai.py,sha256=Jns15HksqqjRPpj_ogK7KXwMXW9OTQMnqZBdQjZXMAk,22896
|
114
|
+
openlit/instrumentation/vllm/__init__.py,sha256=9rT_S7o28PLzoqjwW7bL7JZoBuigZZLRlctud6yZD_k,1478
|
115
|
+
openlit/instrumentation/vllm/vllm.py,sha256=Momw7f94flqakXhi9PF1lz2xTp6L-Ddson8ymwpyprw,7724
|
116
|
+
openlit/otel/metrics.py,sha256=URL7gzQbnxaNQJSX7oHRa15v6xi1GFmANn-5uFNL-aY,6378
|
117
|
+
openlit/otel/tracing.py,sha256=fG3vl-flSZ30whCi7rrG25PlkIhhr8PhnfJYCkZzCD0,3895
|
118
|
+
openlit/semcov/__init__.py,sha256=c9rHbQCFiGmbHp-8bIxY6x7z2HimSO-ANrXLXtpy1hE,12316
|
119
|
+
openlit-1.33.10.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
120
|
+
openlit-1.33.10.dist-info/METADATA,sha256=-7lZ2D6sEjbDiMh_ZOf87_NKKi4EbrWfNUI7781feyw,23502
|
121
|
+
openlit-1.33.10.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
122
|
+
openlit-1.33.10.dist-info/RECORD,,
|
openlit-1.33.9.dist-info/RECORD
DELETED
@@ -1,121 +0,0 @@
|
|
1
|
-
openlit/__helpers.py,sha256=-3OHwF5O9E1FbyA716kxlHLiwarCBgu5P7QJmlQMKcw,9615
|
2
|
-
openlit/__init__.py,sha256=BxiPuq4jUzSai3RnOyWEX5HTUII5SKBNqclvrFnDerI,22412
|
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=Nf9cDoXB16NYgZisvVQduFYJ5fpU90CNlMrIF4pSH-Y,1827
|
16
|
-
openlit/instrumentation/ag2/ag2.py,sha256=9CGX7ZgpPkaRtmK5pYkbpmK5wYT_kr36He33dhwTJ_8,4459
|
17
|
-
openlit/instrumentation/ai21/__init__.py,sha256=Wk23syYEbHuKBzdIabD3dfjZJTW-qzu7LgJPbG8mNHY,2549
|
18
|
-
openlit/instrumentation/ai21/ai21.py,sha256=qADQ1jl86INPJGlWmDaXNkxgTts9VFR2AlgicI6zmSQ,33634
|
19
|
-
openlit/instrumentation/ai21/async_ai21.py,sha256=hmdxM2P1AnPvLY1nZSIntfRPcCypA4J2wDEz9vXlRiM,33738
|
20
|
-
openlit/instrumentation/anthropic/__init__.py,sha256=IoWGApFQ72DQYp9jN-LRDr0uRW3OamDgHG-mO23OSzs,1887
|
21
|
-
openlit/instrumentation/anthropic/anthropic.py,sha256=n8FWAPXTA8ubqASoA1SU0spAQLY_qfP64M75xYoobAk,22356
|
22
|
-
openlit/instrumentation/anthropic/async_anthropic.py,sha256=BIXG8R5GQRhLiXNIz8y-Msu0gUO7s8mJZIRtMAtPRuw,22442
|
23
|
-
openlit/instrumentation/assemblyai/__init__.py,sha256=6uSNexxRJXIX-ZLitD3ow7ej3WK_N_W4ZxeIFb_eseY,1535
|
24
|
-
openlit/instrumentation/assemblyai/assemblyai.py,sha256=dLCdL9SyfOocmzvT0iYG4UwM3giom_nKFlCoTQix5Bk,6262
|
25
|
-
openlit/instrumentation/astra/__init__.py,sha256=G4alCOR6hXQvUQPDCS8lY1rj0Mz-KmrW5vVWk5loO78,8054
|
26
|
-
openlit/instrumentation/astra/astra.py,sha256=ZG_q9mrgYE6T8nHSICiJpgksy8jegf13HL3pxI3m5d8,12109
|
27
|
-
openlit/instrumentation/astra/async_astra.py,sha256=gVj7dHq7NZl2X0UYdKL0JaZiVCcAUp76qyXSQUA2_mo,12121
|
28
|
-
openlit/instrumentation/azure_ai_inference/__init__.py,sha256=xmDk8eK0VB6C1TsH5oIciVnxAhIrXiqDzyqHgy6u51Q,2621
|
29
|
-
openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py,sha256=oBXmNHdK39M6E7_QHvb0xG_t2fEov0_UjDJ5voeRyz4,29938
|
30
|
-
openlit/instrumentation/azure_ai_inference/azure_ai_inference.py,sha256=2NAHgJLw0Vzp74IUBSIzK2CuhmgJdDtu3knNPTgYQ6k,29834
|
31
|
-
openlit/instrumentation/bedrock/__init__.py,sha256=i32hjjdBu2JUGS1eytWjV2WX2_xvXw-iqrbXADSpHx0,1525
|
32
|
-
openlit/instrumentation/bedrock/bedrock.py,sha256=IwV2y3e0yXcK11_6VJ6HjeaC9ic0Xc3rd4hqNyMBY6I,12234
|
33
|
-
openlit/instrumentation/chroma/__init__.py,sha256=61lFpHlUEQUobsUJZHXdvOViKwsOH8AOvSfc4VgCmiM,3253
|
34
|
-
openlit/instrumentation/chroma/chroma.py,sha256=yU2Ec09jmxrNtQdu3J2RmhgN5CtJwYSijfLIfvKFPi4,10561
|
35
|
-
openlit/instrumentation/cohere/__init__.py,sha256=P8w30qt_RoXeQ5VsdW0KB4G1-WaWS9DkhTqaoCZuDeI,2825
|
36
|
-
openlit/instrumentation/cohere/async_cohere.py,sha256=oNeugmNZJvqlyBTbo189cEBLRfDJJHoiXz_WDQxhcNY,30588
|
37
|
-
openlit/instrumentation/cohere/cohere.py,sha256=kq9C3UKmofaGsAr5PD9aUDrHE64IweBlfr79rOIpc0s,30472
|
38
|
-
openlit/instrumentation/controlflow/__init__.py,sha256=iKZ08IANfoN_n4o1TZJIK_C_t6RZQ6AS1H7kMfyBbYA,2118
|
39
|
-
openlit/instrumentation/controlflow/controlflow.py,sha256=e_EeeyJMKEn5eQ1o-5N5tOY_-_tscDdfhQ2hJsPkv94,5543
|
40
|
-
openlit/instrumentation/crawl4ai/__init__.py,sha256=CGkcbQijpKae_8GD_1ybDnCCk0MVu2AdV-ppFOg8mAA,1907
|
41
|
-
openlit/instrumentation/crawl4ai/async_crawl4ai.py,sha256=Pjd0XgftrBuRT3mwatvosuHIBv4VOXB-vdQC5J9HRUQ,4864
|
42
|
-
openlit/instrumentation/crawl4ai/crawl4ai.py,sha256=oS9sYjHt5tTTCL3FvkLiUNsP7SD94-zfwJ3nq7g-qQc,4846
|
43
|
-
openlit/instrumentation/crewai/__init__.py,sha256=cETkkwnKYEMAKlMrHbZ9-RvcRUPYaSNqNIhy2-vCDK8,1794
|
44
|
-
openlit/instrumentation/crewai/crewai.py,sha256=FbHXCrb525fu7wcvv7z0pcksY_cOHIoUM9-T0BjkWhk,7064
|
45
|
-
openlit/instrumentation/dynamiq/__init__.py,sha256=2uIHHxFWca0g2YLO2RBfi2Al6uWUYvVZBfDiPOHCdpQ,2331
|
46
|
-
openlit/instrumentation/dynamiq/dynamiq.py,sha256=Me8jSmm424kVrd1C8GwT8vw_ILX81S4q2TCJ2CkYq2w,5265
|
47
|
-
openlit/instrumentation/elevenlabs/__init__.py,sha256=BZjAe-kzFJpKxT0tKksXVfZgirvgEp8qM3SfegWU5co,2631
|
48
|
-
openlit/instrumentation/elevenlabs/async_elevenlabs.py,sha256=Q_owe_rNLcDHUvJZjmn9VMXYD080GWFKQ5-pFQle9go,6889
|
49
|
-
openlit/instrumentation/elevenlabs/elevenlabs.py,sha256=Ky5K0d-rs5PSbq6zzZyiFK9SVuc002vABZVdk4EgcEQ,6872
|
50
|
-
openlit/instrumentation/embedchain/__init__.py,sha256=8TYk1OEbz46yF19dr-gB_x80VZMagU3kJ8-QihPXTeA,1929
|
51
|
-
openlit/instrumentation/embedchain/embedchain.py,sha256=rp5WmVS3uZ9taPH1YFYQ-IW4CIvy8If9cJUkMOyZSts,7922
|
52
|
-
openlit/instrumentation/firecrawl/__init__.py,sha256=2QTcpPoaximsApdp68WD2iYR1_vZnKlkbAd4RHhgeOo,1836
|
53
|
-
openlit/instrumentation/firecrawl/firecrawl.py,sha256=62FfdXgPqq3visLDzsmMgE1o2Up81GsWWDKSY7XOAk8,3801
|
54
|
-
openlit/instrumentation/google_ai_studio/__init__.py,sha256=n_vOdZeccUvw8W_NYEpiw468sywqnD5O_E1CjuElXYM,2009
|
55
|
-
openlit/instrumentation/google_ai_studio/async_google_ai_studio.py,sha256=vYPfpwvHQh1vLgR2JMhpzXLJ4e7vPU5NhjjsAR7UNwM,11006
|
56
|
-
openlit/instrumentation/google_ai_studio/google_ai_studio.py,sha256=4EfHmAQG9Auihs0DaaSx1wBmC8FV-1gDAGh5cnltMIE,10988
|
57
|
-
openlit/instrumentation/gpt4all/__init__.py,sha256=-59CP2B3-HGZJ_vC-fI9Dt-0BuQXRhSCWCjnaGeU15Q,1802
|
58
|
-
openlit/instrumentation/gpt4all/gpt4all.py,sha256=lUV5Er5dvsEHm52edkQiKbTisETiJ8JuvEmqqtYFlnY,18866
|
59
|
-
openlit/instrumentation/gpu/__init__.py,sha256=niMQS-tmVcHSFPGC39JWOnQK306Ve6GhsOUCMneOC88,11076
|
60
|
-
openlit/instrumentation/groq/__init__.py,sha256=uW_0G6HSanQyK2dIXYhzR604pDiyPQfybzc37DsfSew,1911
|
61
|
-
openlit/instrumentation/groq/async_groq.py,sha256=oui0qeQE9b86KiOhxS0sI9Q9p7p0URT8jhTFar0WY4U,20056
|
62
|
-
openlit/instrumentation/groq/groq.py,sha256=WmkTD9TCm_LQOu72bJjMWOR93LgWuuiurT2ORulPXJ8,20020
|
63
|
-
openlit/instrumentation/haystack/__init__.py,sha256=QK6XxxZUHX8vMv2Crk7rNBOc64iOOBLhJGL_lPlAZ8s,1758
|
64
|
-
openlit/instrumentation/haystack/haystack.py,sha256=AZrDy9zlNyHlG0mroiWrVOyTRRNpVGVr0eYOqe1nsJc,3906
|
65
|
-
openlit/instrumentation/julep/__init__.py,sha256=oonEVK41P5g4SYRm0E_H4zCVH9NM4aJ-UswXzF3Oiv0,3136
|
66
|
-
openlit/instrumentation/julep/async_julep.py,sha256=CrxGpPDiEtb4UwnbBLBQDkg5oIAMDiB4HuAnHaBVTPU,5288
|
67
|
-
openlit/instrumentation/julep/julep.py,sha256=2FdsXfWNyXjZbXosC5Gv_K2o5ylcwoUwGS5_8D_SUp0,5291
|
68
|
-
openlit/instrumentation/langchain/__init__.py,sha256=gVtPZJifx-H8rqdZlU3GXdy3NtRF8yVb7PW7gE-ddJk,3592
|
69
|
-
openlit/instrumentation/langchain/langchain.py,sha256=b5QHEqikX98qUzn-2bkvMr4e96a2_BeSADcZWPZaH5g,38968
|
70
|
-
openlit/instrumentation/letta/__init__.py,sha256=sjjOuMvZ1EPGEluNW0WTuSXYPhrb453cBIizt88Ta3g,2951
|
71
|
-
openlit/instrumentation/letta/letta.py,sha256=_oDJscvwSgY5qDKNPpagckoWFIiEAuj-lGFktACoVaA,8317
|
72
|
-
openlit/instrumentation/litellm/__init__.py,sha256=Z-LsVHKJdPganHfJA_rWg7xAfQYkvLfpLdF-eckU4qY,2401
|
73
|
-
openlit/instrumentation/litellm/async_litellm.py,sha256=0ITCQk40aVejM9azBm5F3z-3WsgNrVs4PxsOiElj8zE,27618
|
74
|
-
openlit/instrumentation/litellm/litellm.py,sha256=wZ3YhDOMh0stnqHfNNM9J2SwizRwKs8EV8hv44qkGvI,27524
|
75
|
-
openlit/instrumentation/llamaindex/__init__.py,sha256=vPtK65G6b-TwJERowVRUVl7f_nBSlFdwPBtpg8dOGos,1977
|
76
|
-
openlit/instrumentation/llamaindex/llamaindex.py,sha256=fYmtx-kQatVEPBYdwXiEOoHthiHl-nR_WpcxIEJe6n4,4063
|
77
|
-
openlit/instrumentation/mem0/__init__.py,sha256=guOkLoSKvHSVSmEWhCHMVRMUGEa5JzqI8CIluHtwirQ,2417
|
78
|
-
openlit/instrumentation/mem0/mem0.py,sha256=crF9FVxDCWVy3m6npDAEcy02QbCLyXBG_VRVqC-rnDg,5320
|
79
|
-
openlit/instrumentation/milvus/__init__.py,sha256=qi1yfmMrvkDtnrN_6toW8qC9BRL78bq7ayWpObJ8Bq4,2961
|
80
|
-
openlit/instrumentation/milvus/milvus.py,sha256=O9vimn2i_8fUQt8afQejtIamG7NNVhDx2IgEeRjtrL4,9151
|
81
|
-
openlit/instrumentation/mistral/__init__.py,sha256=niWn0gYNOTPS5zoTjtCciDqQVj-iJehnpdh7ElB-H9w,3088
|
82
|
-
openlit/instrumentation/mistral/async_mistral.py,sha256=lyzBHR_ibNx0WwNOPHRMZg2l2BI1jcSmzgZW-dNvwG0,22325
|
83
|
-
openlit/instrumentation/mistral/mistral.py,sha256=ljRz2cdYwu2gNOMvA1bw_-Ga6VlK5AcL_0la9sS-CyU,22166
|
84
|
-
openlit/instrumentation/multion/__init__.py,sha256=DUt70uINLYi4xTxZ6D3bxKUBHYi1FpKbliQ6E7D_SeQ,3069
|
85
|
-
openlit/instrumentation/multion/async_multion.py,sha256=SP6mToFM-NQBtwsEHsUBAF50vY5kJe81e7M44Agnm4s,5904
|
86
|
-
openlit/instrumentation/multion/multion.py,sha256=6jbYcAxPrUAbrBShKD8ZIukBhk6ZLDRJw4ye-5q46Z0,5886
|
87
|
-
openlit/instrumentation/ollama/__init__.py,sha256=cOax8PiypDuo_FC4WvDCYBRo7lH5nV9xU92h7k-eZbg,3812
|
88
|
-
openlit/instrumentation/ollama/async_ollama.py,sha256=Q7ll9G6ILR6IGInsJVjfy64pj99jFtn0pSGoxqEHMcY,31495
|
89
|
-
openlit/instrumentation/ollama/ollama.py,sha256=PlZdK0IJnM1WcloPC8ovt1eWxQZitlXKTJfo8FWHndc,31406
|
90
|
-
openlit/instrumentation/openai/__init__.py,sha256=54pwkndSO1IS78Qqx1A-QNkObx5eJnsvWeMtDZj2lD8,4773
|
91
|
-
openlit/instrumentation/openai/async_openai.py,sha256=4EXOLeubGI9AZrW0XmC4uc-HW-LpQuazJJe3jT8zWzs,50589
|
92
|
-
openlit/instrumentation/openai/openai.py,sha256=qvJKRnfWNVuyNY-j01z126_YDLRd4agVVGUkezD7OLM,50418
|
93
|
-
openlit/instrumentation/phidata/__init__.py,sha256=rfPCXYOIsJbxChee2p269UzkJ1Z-pvQbii7Fgrw1v2g,1527
|
94
|
-
openlit/instrumentation/phidata/phidata.py,sha256=0a79IC4dZPB1V6HkzAjIiT4BoajBdLA1kG9FwhOa0uc,4682
|
95
|
-
openlit/instrumentation/pinecone/__init__.py,sha256=Mv9bElqNs07_JQkYyNnO0wOM3hdbprmw7sttdMeKC7g,2526
|
96
|
-
openlit/instrumentation/pinecone/pinecone.py,sha256=9YhMpseeHYQwR93dteiuRCzQYTJ1AOOtblSdZsbIYeU,8795
|
97
|
-
openlit/instrumentation/premai/__init__.py,sha256=g7kBjxEsldQIiZpxH4LgXFmU-WSmqywW4aFxqwH-ptA,1844
|
98
|
-
openlit/instrumentation/premai/premai.py,sha256=Igu6AS_4UUuAvB4quj5uk9UzhNdwX8lJhH9E8DF-0Ec,26648
|
99
|
-
openlit/instrumentation/qdrant/__init__.py,sha256=GMlZgRBKoQMgrL4cFbAKwytfdTHLzJEIuTQMxp0uZO0,8940
|
100
|
-
openlit/instrumentation/qdrant/async_qdrant.py,sha256=WLhPe94-ys-X-V3KFHjDVtwGnnA5edsyjpjRTZMoyv8,15101
|
101
|
-
openlit/instrumentation/qdrant/qdrant.py,sha256=NHpGMQl6ssMzgxVIs2ptG2OM2r_VJv3I96r5EwTJqCI,15518
|
102
|
-
openlit/instrumentation/reka/__init__.py,sha256=X0zZ8Q18Z_6pIpksa7pdWldK4SKZM7U24zNc2UeRXC8,1870
|
103
|
-
openlit/instrumentation/reka/async_reka.py,sha256=5tSQQ9OKAICvHIDMoPU1RFf-H2kidKmlxTP7gwWVw2c,7464
|
104
|
-
openlit/instrumentation/reka/reka.py,sha256=Q0N05FO7TcvtzTFQE8PzCdF5XNuv6Ame4O98GcWBLPc,7446
|
105
|
-
openlit/instrumentation/together/__init__.py,sha256=pg3gNqT4HjL3E-QHvAkM0UNdF3obii0HHp2xRx32gRc,2713
|
106
|
-
openlit/instrumentation/together/async_together.py,sha256=dMs-6kaBD6sJkcS-RNRhfX7SFO34xrUTQr547UmcOzo,29195
|
107
|
-
openlit/instrumentation/together/together.py,sha256=m0f8Ijt-X65ULhTSHQC9QwfBKMOG_LdDkAQelk1zoeA,29099
|
108
|
-
openlit/instrumentation/transformers/__init__.py,sha256=4GBtjzcJU4XiPexIUYEqF3pNZMeQw4Gm5B-cyumaFjs,1468
|
109
|
-
openlit/instrumentation/transformers/transformers.py,sha256=gtlS_Cp49nMNAhIrh681CQbQYGyaKHzTqjJqpF2Wxag,7900
|
110
|
-
openlit/instrumentation/vertexai/__init__.py,sha256=N3E9HtzefD-zC0fvmfGYiDmSqssoavp_i59wfuYLyMw,6079
|
111
|
-
openlit/instrumentation/vertexai/async_vertexai.py,sha256=GiiGBHXdjahzb5XETTQ3bgih4DQB5F_MoANN2j1NeP0,55427
|
112
|
-
openlit/instrumentation/vertexai/vertexai.py,sha256=wCx1PQzkjEKgWb11csC42SJc3_aOuwFPz76EtAw8UQ4,55180
|
113
|
-
openlit/instrumentation/vllm/__init__.py,sha256=OVWalQ1dXvip1DUsjUGaHX4J-2FrSp-T-qCVOfw7OZo,1495
|
114
|
-
openlit/instrumentation/vllm/vllm.py,sha256=U8qBWkQOQ7DzffMtjTxTJj77_iaNb9XVNNnriUawoTs,6552
|
115
|
-
openlit/otel/metrics.py,sha256=URL7gzQbnxaNQJSX7oHRa15v6xi1GFmANn-5uFNL-aY,6378
|
116
|
-
openlit/otel/tracing.py,sha256=fG3vl-flSZ30whCi7rrG25PlkIhhr8PhnfJYCkZzCD0,3895
|
117
|
-
openlit/semcov/__init__.py,sha256=-yCgdM8BOl2gIUCZtAy2vMPfq7nLOBzt1PgkwTDl-E4,12358
|
118
|
-
openlit-1.33.9.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
119
|
-
openlit-1.33.9.dist-info/METADATA,sha256=EbxHxQa81i_AaPxejPp7zllnp7FZSDLy8V1E1medojU,23501
|
120
|
-
openlit-1.33.9.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
121
|
-
openlit-1.33.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|