openlit 1.34.26__py3-none-any.whl → 1.34.28__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 +38 -0
- openlit/__init__.py +22 -155
- openlit/_instrumentors.py +144 -0
- openlit/guard/all.py +3 -3
- openlit/instrumentation/astra/__init__.py +71 -159
- openlit/instrumentation/astra/astra.py +32 -22
- openlit/instrumentation/astra/async_astra.py +32 -22
- openlit/instrumentation/astra/utils.py +263 -88
- openlit/instrumentation/chroma/utils.py +2 -2
- openlit/instrumentation/controlflow/controlflow.py +2 -2
- openlit/instrumentation/embedchain/embedchain.py +4 -4
- openlit/instrumentation/groq/__init__.py +4 -4
- openlit/instrumentation/haystack/__init__.py +57 -28
- openlit/instrumentation/haystack/async_haystack.py +54 -0
- openlit/instrumentation/haystack/haystack.py +35 -65
- openlit/instrumentation/haystack/utils.py +377 -0
- openlit/instrumentation/julep/async_julep.py +2 -2
- openlit/instrumentation/julep/julep.py +2 -2
- openlit/instrumentation/langchain_community/utils.py +2 -2
- openlit/instrumentation/llamaindex/__init__.py +165 -37
- openlit/instrumentation/llamaindex/async_llamaindex.py +53 -0
- openlit/instrumentation/llamaindex/llamaindex.py +32 -64
- openlit/instrumentation/llamaindex/utils.py +412 -0
- openlit/instrumentation/mem0/mem0.py +2 -2
- openlit/instrumentation/milvus/__init__.py +30 -68
- openlit/instrumentation/milvus/milvus.py +34 -161
- openlit/instrumentation/milvus/utils.py +276 -0
- openlit/instrumentation/openai/__init__.py +24 -24
- openlit/instrumentation/openai/utils.py +10 -4
- openlit/instrumentation/pinecone/utils.py +2 -2
- openlit/instrumentation/qdrant/utils.py +2 -2
- openlit/instrumentation/together/__init__.py +8 -8
- openlit/semcov/__init__.py +79 -0
- {openlit-1.34.26.dist-info → openlit-1.34.28.dist-info}/METADATA +1 -1
- {openlit-1.34.26.dist-info → openlit-1.34.28.dist-info}/RECORD +37 -31
- {openlit-1.34.26.dist-info → openlit-1.34.28.dist-info}/LICENSE +0 -0
- {openlit-1.34.26.dist-info → openlit-1.34.28.dist-info}/WHEEL +0 -0
@@ -34,32 +34,32 @@ class TogetherInstrumentor(BaseInstrumentor):
|
|
34
34
|
|
35
35
|
# Chat completions
|
36
36
|
wrap_function_wrapper(
|
37
|
-
"together.resources.chat.completions",
|
38
|
-
"ChatCompletions.create",
|
37
|
+
"together.resources.chat.completions",
|
38
|
+
"ChatCompletions.create",
|
39
39
|
completion(version, environment, application_name,
|
40
40
|
tracer, pricing_info, capture_message_content, metrics, disable_metrics),
|
41
41
|
)
|
42
42
|
|
43
43
|
# Image generate
|
44
44
|
wrap_function_wrapper(
|
45
|
-
"together.resources.images",
|
46
|
-
"Images.generate",
|
45
|
+
"together.resources.images",
|
46
|
+
"Images.generate",
|
47
47
|
image_generate(version, environment, application_name,
|
48
48
|
tracer, pricing_info, capture_message_content, metrics, disable_metrics),
|
49
49
|
)
|
50
50
|
|
51
51
|
# Chat completions
|
52
52
|
wrap_function_wrapper(
|
53
|
-
"together.resources.chat.completions",
|
54
|
-
"AsyncChatCompletions.create",
|
53
|
+
"together.resources.chat.completions",
|
54
|
+
"AsyncChatCompletions.create",
|
55
55
|
async_completion(version, environment, application_name,
|
56
56
|
tracer, pricing_info, capture_message_content, metrics, disable_metrics),
|
57
57
|
)
|
58
58
|
|
59
59
|
# Image generate
|
60
60
|
wrap_function_wrapper(
|
61
|
-
"together.resources.images",
|
62
|
-
"AsyncImages.generate",
|
61
|
+
"together.resources.images",
|
62
|
+
"AsyncImages.generate",
|
63
63
|
async_image_generate(version, environment, application_name,
|
64
64
|
tracer, pricing_info, capture_message_content, metrics, disable_metrics),
|
65
65
|
)
|
openlit/semcov/__init__.py
CHANGED
@@ -78,6 +78,7 @@ class SemanticConvention:
|
|
78
78
|
GEN_AI_OPERATION_TYPE_AGENT = "agent"
|
79
79
|
GEN_AI_OPERATION_TYPE_CREATE_AGENT = "create_agent"
|
80
80
|
GEN_AI_OPERATION_TYPE_EXECUTE_AGENT_TASK = "execute_task"
|
81
|
+
GEN_AI_OPERATION_TYPE_RETRIEVE = "retrieve"
|
81
82
|
|
82
83
|
# GenAI Output Types (OTel Semconv)
|
83
84
|
GEN_AI_OUTPUT_TYPE_IMAGE = "image"
|
@@ -136,6 +137,27 @@ class SemanticConvention:
|
|
136
137
|
GEN_AI_SYSTEM_TOGETHER = "together"
|
137
138
|
GEN_AI_SYSTEM_PYDANTIC_AI = "pydantic_ai"
|
138
139
|
|
140
|
+
# GenAI Framework Component Attributes (Standard)
|
141
|
+
GEN_AI_FRAMEWORK_COMPONENT_NAME = "gen_ai.framework.component.name"
|
142
|
+
GEN_AI_FRAMEWORK_COMPONENT_TYPE = "gen_ai.framework.component.type"
|
143
|
+
GEN_AI_FRAMEWORK_COMPONENT_CLASS_NAME = "gen_ai.component.class_name"
|
144
|
+
GEN_AI_FRAMEWORK_COMPONENT_INPUT_TYPES = "gen_ai.framework.component.input_types"
|
145
|
+
GEN_AI_FRAMEWORK_COMPONENT_OUTPUT_TYPES = "gen_ai.framework.component.output_types"
|
146
|
+
GEN_AI_FRAMEWORK_COMPONENT_INPUT_SPEC = "gen_ai.framework.component.input_spec"
|
147
|
+
GEN_AI_FRAMEWORK_COMPONENT_OUTPUT_SPEC = "gen_ai.framework.component.output_spec"
|
148
|
+
GEN_AI_FRAMEWORK_COMPONENT_VISITS = "gen_ai.framework.component.visits"
|
149
|
+
GEN_AI_FRAMEWORK_COMPONENT_SENDERS = "gen_ai.framework.component.senders"
|
150
|
+
GEN_AI_FRAMEWORK_COMPONENT_RECEIVERS = "gen_ai.framework.component.receivers"
|
151
|
+
GEN_AI_FRAMEWORK_COMPONENT_CONNECTIONS = "gen_ai.framework.component.connections"
|
152
|
+
|
153
|
+
# GenAI Framework Pipeline Attributes (Standard)
|
154
|
+
GEN_AI_FRAMEWORK_PIPELINE_INPUT_DATA = "gen_ai.framework.pipeline.input_data"
|
155
|
+
GEN_AI_FRAMEWORK_PIPELINE_OUTPUT_DATA = "gen_ai.framework.pipeline.output_data"
|
156
|
+
GEN_AI_FRAMEWORK_PIPELINE_METADATA = "gen_ai.framework.pipeline.metadata"
|
157
|
+
GEN_AI_FRAMEWORK_PIPELINE_MAX_RUNS = "gen_ai.framework.pipeline.max_runs_per_component"
|
158
|
+
GEN_AI_FRAMEWORK_PIPELINE_COMPONENT_COUNT = "gen_ai.framework.pipeline.component_count"
|
159
|
+
GEN_AI_FRAMEWORK_PIPELINE_EXECUTION_TIME = "gen_ai.framework.pipeline.execution_time"
|
160
|
+
|
139
161
|
# GenAI Request Attributes (Extra)
|
140
162
|
GEN_AI_REQUEST_IS_STREAM = "gen_ai.request.is_stream"
|
141
163
|
GEN_AI_REQUEST_USER = "gen_ai.request.user"
|
@@ -324,3 +346,60 @@ class SemanticConvention:
|
|
324
346
|
EVAL_CLASSIFICATION = "evals.classification"
|
325
347
|
EVAL_VALIDATOR = "evals.validator"
|
326
348
|
EVAL_EXPLANATION = "evals.explanation"
|
349
|
+
|
350
|
+
# === FRAMEWORK OPERATIONS (Generic attributes for all RAG/AI frameworks) ===
|
351
|
+
|
352
|
+
# Document Processing
|
353
|
+
GEN_AI_FRAMEWORK_DOCUMENTS_COUNT = "gen_ai.framework.documents.count"
|
354
|
+
GEN_AI_FRAMEWORK_DOCUMENT_SOURCES = "gen_ai.framework.document.sources"
|
355
|
+
GEN_AI_FRAMEWORK_DOCUMENT_SIZE = "gen_ai.framework.document.size"
|
356
|
+
GEN_AI_FRAMEWORK_DOCUMENT_TYPE = "gen_ai.framework.document.type"
|
357
|
+
|
358
|
+
# Text Processing & Chunking
|
359
|
+
GEN_AI_FRAMEWORK_CHUNK_SIZE = "gen_ai.framework.chunk.size"
|
360
|
+
GEN_AI_FRAMEWORK_CHUNK_OVERLAP = "gen_ai.framework.chunk.overlap"
|
361
|
+
GEN_AI_FRAMEWORK_CHUNK_COUNT = "gen_ai.framework.chunk.count"
|
362
|
+
GEN_AI_FRAMEWORK_TEXT_LENGTH = "gen_ai.framework.text.length"
|
363
|
+
GEN_AI_FRAMEWORK_TEXT_PROCESSED = "gen_ai.framework.text.processed"
|
364
|
+
|
365
|
+
# Node/Data Processing
|
366
|
+
GEN_AI_FRAMEWORK_NODES_COUNT = "gen_ai.framework.nodes.count"
|
367
|
+
GEN_AI_FRAMEWORK_NODES_PROCESSED = "gen_ai.framework.nodes.processed"
|
368
|
+
GEN_AI_FRAMEWORK_NODES_CREATED = "gen_ai.framework.nodes.created"
|
369
|
+
GEN_AI_FRAMEWORK_NODES_ADDED = "gen_ai.framework.nodes.added"
|
370
|
+
GEN_AI_FRAMEWORK_NODES_INSERTED = "gen_ai.framework.nodes.inserted"
|
371
|
+
GEN_AI_FRAMEWORK_NODES_DELETED = "gen_ai.framework.nodes.deleted"
|
372
|
+
GEN_AI_FRAMEWORK_NODE_ID = "gen_ai.framework.node.id"
|
373
|
+
|
374
|
+
# Embedding Operations
|
375
|
+
GEN_AI_FRAMEWORK_EMBEDDING_DIMENSION = "gen_ai.framework.embedding.dimension"
|
376
|
+
GEN_AI_FRAMEWORK_EMBEDDING_COUNT = "gen_ai.framework.embedding.count"
|
377
|
+
GEN_AI_FRAMEWORK_EMBEDDING_BATCH_SIZE = "gen_ai.framework.embedding.batch_size"
|
378
|
+
GEN_AI_FRAMEWORK_EMBEDDING_MODEL = "gen_ai.framework.embedding.model"
|
379
|
+
GEN_AI_FRAMEWORK_EMBEDDING_PROCESSED = "gen_ai.framework.embedding.processed"
|
380
|
+
|
381
|
+
# Query Operations
|
382
|
+
GEN_AI_FRAMEWORK_QUERY_TYPE = "gen_ai.framework.query.type"
|
383
|
+
GEN_AI_FRAMEWORK_QUERY_TEXT = "gen_ai.framework.query.text"
|
384
|
+
GEN_AI_FRAMEWORK_QUERY_LENGTH = "gen_ai.framework.query.length"
|
385
|
+
GEN_AI_FRAMEWORK_SIMILARITY_TOP_K = "gen_ai.framework.similarity.top_k"
|
386
|
+
GEN_AI_FRAMEWORK_SIMILARITY_THRESHOLD = "gen_ai.framework.similarity.threshold"
|
387
|
+
|
388
|
+
# Retrieval Operations
|
389
|
+
GEN_AI_FRAMEWORK_RETRIEVAL_SOURCE = "gen_ai.framework.retrieval.source"
|
390
|
+
GEN_AI_FRAMEWORK_RETRIEVAL_COUNT = "gen_ai.framework.retrieval.count"
|
391
|
+
GEN_AI_FRAMEWORK_RETRIEVAL_METHOD = "gen_ai.framework.retrieval.method"
|
392
|
+
|
393
|
+
# Response Generation
|
394
|
+
GEN_AI_FRAMEWORK_RESPONSE_LENGTH = "gen_ai.framework.response.length"
|
395
|
+
GEN_AI_FRAMEWORK_TEMPLATE_TYPE = "gen_ai.framework.template.type"
|
396
|
+
GEN_AI_FRAMEWORK_CONTEXT_SIZE = "gen_ai.framework.context.size"
|
397
|
+
GEN_AI_FRAMEWORK_CONTEXT_COUNT = "gen_ai.framework.context.count"
|
398
|
+
|
399
|
+
# Processing Flags & Configuration
|
400
|
+
GEN_AI_FRAMEWORK_SHOW_PROGRESS = "gen_ai.framework.show_progress"
|
401
|
+
|
402
|
+
# Vector Store Operations (reuse DB attributes where appropriate)
|
403
|
+
GEN_AI_FRAMEWORK_VECTOR_DIMENSION = "gen_ai.framework.vector.dimension"
|
404
|
+
GEN_AI_FRAMEWORK_INDEX_NAME = "gen_ai.framework.index.name"
|
405
|
+
GEN_AI_FRAMEWORK_INDEX_TYPE = "gen_ai.framework.index.type"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: openlit
|
3
|
-
Version: 1.34.
|
3
|
+
Version: 1.34.28
|
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
|
@@ -1,5 +1,6 @@
|
|
1
|
-
openlit/__helpers.py,sha256=
|
2
|
-
openlit/__init__.py,sha256=
|
1
|
+
openlit/__helpers.py,sha256=4A2sUiPTF4TK4dJ2pZgmSdFlU6Ket1LDUB9Jj_1Qtkg,20358
|
2
|
+
openlit/__init__.py,sha256=gKMWmsqzb7xIJgbPvGO6yNcuzpf5lg1cShKrPSrE1MM,18560
|
3
|
+
openlit/_instrumentors.py,sha256=k7IZCCl2IeDUcyeVHxaH1krjJPC90mlveH51u6ZnUSs,5744
|
3
4
|
openlit/evals/__init__.py,sha256=nJe99nuLo1b5rf7pt9U9BCdSDedzbVi2Fj96cgl7msM,380
|
4
5
|
openlit/evals/all.py,sha256=oWrue3PotE-rB5WePG3MRYSA-ro6WivkclSHjYlAqGs,7154
|
5
6
|
openlit/evals/bias_detection.py,sha256=mCdsfK7x1vX7S3psC3g641IMlZ-7df3h-V6eiICj5N8,8154
|
@@ -7,7 +8,7 @@ openlit/evals/hallucination.py,sha256=Yn5OfWVJKynAiImV_aAqCvc0zqYjdJ3XUppCnMTy1p
|
|
7
8
|
openlit/evals/toxicity.py,sha256=Ii_kX2GToO9fDstDBuK4iN0tEQUkMoPWUBDMFFfeMC4,7000
|
8
9
|
openlit/evals/utils.py,sha256=dxi4tv1bMBPp8u78WkyVyB8--3XnplMe_VfV3Eypww8,8479
|
9
10
|
openlit/guard/__init__.py,sha256=B-D7iPadGFn5i7nEsQfVbS6feL1ViRht3zWTQ45Jgkg,417
|
10
|
-
openlit/guard/all.py,sha256=
|
11
|
+
openlit/guard/all.py,sha256=s2TajvvNnx28U6tM7sAKfU9pHK09VwGsrOQ9rLCnhO0,9743
|
11
12
|
openlit/guard/prompt_injection.py,sha256=3e4DKxB7QDzM-xPCpwEuureiH_2s_OTJ9BSckknPpzY,5784
|
12
13
|
openlit/guard/restrict_topic.py,sha256=KTuWa7XeMsV4oXxOrD1CYZV0wXWxTfA0H3p_6q_IOsk,6444
|
13
14
|
openlit/guard/sensitive_topic.py,sha256=RgVw_laFERv0nNdzBsAd2_3yLomMOK-gVq-P7oj1bTk,5552
|
@@ -27,10 +28,10 @@ openlit/instrumentation/anthropic/utils.py,sha256=W9paSh2npsCwsHyf-RyHeg0eRDcE50
|
|
27
28
|
openlit/instrumentation/assemblyai/__init__.py,sha256=-pW7c5Vxa493yETQABbebx4be_sTx5VwkvQrIHbhRbI,1404
|
28
29
|
openlit/instrumentation/assemblyai/assemblyai.py,sha256=SJZ-O6k8adlRWJ2gMIP62vXobHJ3VI87PQOCFw9Ilng,2071
|
29
30
|
openlit/instrumentation/assemblyai/utils.py,sha256=driBfwWBveWTqHyPRtl1R8oEG6m07-GXycyCnDfZ9PM,6089
|
30
|
-
openlit/instrumentation/astra/__init__.py,sha256
|
31
|
-
openlit/instrumentation/astra/astra.py,sha256=
|
32
|
-
openlit/instrumentation/astra/async_astra.py,sha256=
|
33
|
-
openlit/instrumentation/astra/utils.py,sha256=
|
31
|
+
openlit/instrumentation/astra/__init__.py,sha256=NBqmJfzJINFp3QT5sMVgvQYIzWB8FPb1Exxa-EATPss,4035
|
32
|
+
openlit/instrumentation/astra/astra.py,sha256=JsuGgbVvFWn4iSocoXiA1L1X9q1pYezvp1LHk5dhPoY,2026
|
33
|
+
openlit/instrumentation/astra/async_astra.py,sha256=0LSj3Zd9L5ZFTk9OWGx1eMgfsmBopPpHKDWIYeah7D4,2056
|
34
|
+
openlit/instrumentation/astra/utils.py,sha256=rV3vcqPUcWj5rYjmga4ObWrnDDm-9V6kGqBRtVwqD24,12037
|
34
35
|
openlit/instrumentation/azure_ai_inference/__init__.py,sha256=_GuYy4ypF6_HICpAC8dNQ5-FBjkcNzPTPF4q3fTM10Q,2512
|
35
36
|
openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py,sha256=SFrniRWPqVBxFJVOpC8w1qNGSYZhCFXeKHVHu5pEdZI,5906
|
36
37
|
openlit/instrumentation/azure_ai_inference/azure_ai_inference.py,sha256=hRFuuvaXflctNNbk7N2GOfKaC_eCHbrBWf9_1sZcaGY,5808
|
@@ -40,13 +41,13 @@ openlit/instrumentation/bedrock/bedrock.py,sha256=_2oTa9cf-OxHTFCmNUWT__vHnv7-wU
|
|
40
41
|
openlit/instrumentation/bedrock/utils.py,sha256=7qn8pI-BQcW8ZLxYJb_W3Yzncqbz4QBCR9f2u9N7C4Y,9345
|
41
42
|
openlit/instrumentation/chroma/__init__.py,sha256=CNlUbryf2gJ0-Ayf8d65Ec5GOkWrFl8ELqSUybuqQV4,3256
|
42
43
|
openlit/instrumentation/chroma/chroma.py,sha256=pdKq-EkcNI4FwyGYPSxDyseJedmtgyukmBU1m-A2qAc,1995
|
43
|
-
openlit/instrumentation/chroma/utils.py,sha256=
|
44
|
+
openlit/instrumentation/chroma/utils.py,sha256=AMRAKY8X88Er459eXcG0Il3VR-NoMPMnzDEI7USloeE,12312
|
44
45
|
openlit/instrumentation/cohere/__init__.py,sha256=FIJ_QokUZcN9UsVPWckRfHiLVJ5zj3jtcOjQmjQA5f0,2978
|
45
46
|
openlit/instrumentation/cohere/async_cohere.py,sha256=wgctJa-BcKEkVguLorR7mYRShv7GiioF1_zxevvzXTw,6990
|
46
47
|
openlit/instrumentation/cohere/cohere.py,sha256=7YAj6kwJ1MDLFY3WtbPRehZFIseDVIbvPQJZxG8Qc6A,6814
|
47
48
|
openlit/instrumentation/cohere/utils.py,sha256=5l3Av-t0GzawPd0j5L9jcpdJDGOvLq2YCMpo3usS4OY,14533
|
48
49
|
openlit/instrumentation/controlflow/__init__.py,sha256=Y5xSj6bwkGufG989YtRGujzj8qrV4T5kXr4hzGb2nGk,2168
|
49
|
-
openlit/instrumentation/controlflow/controlflow.py,sha256=
|
50
|
+
openlit/instrumentation/controlflow/controlflow.py,sha256=hi4DtshGvnPjhElwX-ytkRn86r0Q6hLi9FhPCYFAG50,5561
|
50
51
|
openlit/instrumentation/crawl4ai/__init__.py,sha256=TTFFeZkTgPZJAD1Tlr2LK-CTH2A7NkZK-5SHKFfFOtU,1947
|
51
52
|
openlit/instrumentation/crawl4ai/async_crawl4ai.py,sha256=bqtopPKOMCfBx7in08QnpjYnPO09YV_uySR19YTuV98,4893
|
52
53
|
openlit/instrumentation/crawl4ai/crawl4ai.py,sha256=kX5B5ItHBw-_qa-SjSmIjFQg0ZwckB1tMkoemCvg2rc,4875
|
@@ -59,7 +60,7 @@ openlit/instrumentation/elevenlabs/async_elevenlabs.py,sha256=IjcFay1Cgdrq4IGsE1
|
|
59
60
|
openlit/instrumentation/elevenlabs/elevenlabs.py,sha256=Y4zik8Ds4rv21258F-VEn8I4v1S39Vb__w8MI0lAzGw,1913
|
60
61
|
openlit/instrumentation/elevenlabs/utils.py,sha256=GpphFe5F9h4s8azj155IgywbenNoRYN2DtNyDT7HWKA,5876
|
61
62
|
openlit/instrumentation/embedchain/__init__.py,sha256=x2_qvJTwWog_mH6IY987Bp9mWxHtasqX2nZ3rwA7mb4,1959
|
62
|
-
openlit/instrumentation/embedchain/embedchain.py,sha256=
|
63
|
+
openlit/instrumentation/embedchain/embedchain.py,sha256=GwY_mh06odzM453L8Qxxf8A6NqZEc5FVq4F9ySN_4w0,7905
|
63
64
|
openlit/instrumentation/firecrawl/__init__.py,sha256=kyVsAiDBC2djifqT2w1cPRAotiEyEabNvnBeSQxi9N8,1876
|
64
65
|
openlit/instrumentation/firecrawl/firecrawl.py,sha256=4X38UrLYeGm3uez-edYA6qEc0nKC3p77yfKgKBBud0A,3826
|
65
66
|
openlit/instrumentation/google_ai_studio/__init__.py,sha256=VLNOlaTFzjOpuUzloynvADewiTmaEu1wx8FerEbmsvg,2510
|
@@ -70,15 +71,17 @@ openlit/instrumentation/gpt4all/__init__.py,sha256=kXciJbQMZYnTeAYLCjriVYXV7XzUU
|
|
70
71
|
openlit/instrumentation/gpt4all/gpt4all.py,sha256=6VkJbaPIDv5sbFXFiadH4IB0KljljnOZ1HaGAPuyp_E,6704
|
71
72
|
openlit/instrumentation/gpt4all/utils.py,sha256=clyoIy1_ib-1_keQFMvyzTOcbWHeWPRpDhV-w2CtIAU,12470
|
72
73
|
openlit/instrumentation/gpu/__init__.py,sha256=QQCFVEbRfdeTjmdFe-UeEiy19vEEWSIBpj2B1wYGhUs,11036
|
73
|
-
openlit/instrumentation/groq/__init__.py,sha256=
|
74
|
+
openlit/instrumentation/groq/__init__.py,sha256=WImIz76RvG4w6r1s7I-n-2FiZSTWclV-jVctETNMxJU,1731
|
74
75
|
openlit/instrumentation/groq/async_groq.py,sha256=hp3AN8B98cUbX4C0GksTbNb6kpg31FJUlhW32Wo8CnI,5113
|
75
76
|
openlit/instrumentation/groq/groq.py,sha256=XfJakQCfEszvVJxzpemYBIVE73b5WVj8bAlDaeVKBMU,4994
|
76
77
|
openlit/instrumentation/groq/utils.py,sha256=0ttCMcKmyDrSnmQtM20U5Yo6OllUPW5iBNBE5qW0jGk,9072
|
77
|
-
openlit/instrumentation/haystack/__init__.py,sha256=
|
78
|
-
openlit/instrumentation/haystack/
|
78
|
+
openlit/instrumentation/haystack/__init__.py,sha256=69pn20PbbrWLRISQmI5VKEYLcOcTe0PPHcH4sbaEbX4,3353
|
79
|
+
openlit/instrumentation/haystack/async_haystack.py,sha256=l4LeWL91ZSx_4azpRtdjRtYGL_A_mYc7ejrzqiP5Ysk,1884
|
80
|
+
openlit/instrumentation/haystack/haystack.py,sha256=qsJ189pfR1F7bcCe7vYTFGA3tCgu2s5ar0pMHOmX_Ks,1847
|
81
|
+
openlit/instrumentation/haystack/utils.py,sha256=A34ZQ97yKJcLi7NbCR_Uqg95BgyvcOvrEj3MSkw37xo,17083
|
79
82
|
openlit/instrumentation/julep/__init__.py,sha256=g-hwXjvXAb5IDs5DR_P8rKsnD4beB9tupAzuuviQT3k,3216
|
80
|
-
openlit/instrumentation/julep/async_julep.py,sha256=
|
81
|
-
openlit/instrumentation/julep/julep.py,sha256=
|
83
|
+
openlit/instrumentation/julep/async_julep.py,sha256=637HVs-_IYRA4DbBq4RVlLzd5iE9rwYvDZZ7ZFm8BbM,5315
|
84
|
+
openlit/instrumentation/julep/julep.py,sha256=4QB2cA-bhk4qUnICzjwP9fF_ZHhXtmVfbxJNi81nuKM,5318
|
82
85
|
openlit/instrumentation/langchain/__init__.py,sha256=idjeMAL8tCf1KimrS82D4RERbicSxBj82e8WNuaZWs8,2996
|
83
86
|
openlit/instrumentation/langchain/async_langchain.py,sha256=5RtaBLifJoDYBPL3d53dT2GDmDzOh5oqyZeJIXAmWxg,3426
|
84
87
|
openlit/instrumentation/langchain/langchain.py,sha256=6jO5QAZz_jYyauEyQ76nbTpiNrTLPwLNPKzXmlBn75Y,3336
|
@@ -86,19 +89,22 @@ openlit/instrumentation/langchain/utils.py,sha256=ermEFuOY9Djh4Np4EHeh7XRzZc-B24
|
|
86
89
|
openlit/instrumentation/langchain_community/__init__.py,sha256=DGNxMj6RAMQtTFD0plU826D3G-KupROwexN4GjmAFmk,2717
|
87
90
|
openlit/instrumentation/langchain_community/async_langchain_community.py,sha256=BX6ErjSX9-RXBxB5cFwDrhVKpb3OGzwpzzw5VPMpp80,1590
|
88
91
|
openlit/instrumentation/langchain_community/langchain_community.py,sha256=J-sN5eGC7r-OkPAU-lnbdG7-b_jtYs0esmFy51xdFIk,1560
|
89
|
-
openlit/instrumentation/langchain_community/utils.py,sha256=
|
92
|
+
openlit/instrumentation/langchain_community/utils.py,sha256=qRN8GvQoFHhMdtHOOGoZXGOC6Xk_Y_4z0bxQU6mGPSA,3326
|
90
93
|
openlit/instrumentation/letta/__init__.py,sha256=K8PtRKxuueyqEYE3LzxWJ74IieNKSI6dmk9sNRd8Mt0,3031
|
91
94
|
openlit/instrumentation/letta/letta.py,sha256=SCIpJ4tdB1l1BmeQx4raaTS4MQO5X15pLvS4PepEKBE,8481
|
92
95
|
openlit/instrumentation/litellm/__init__.py,sha256=D47yfDLLEKpkaRAy7_Yif70kj88AGqLQYZAABpTN4sE,2284
|
93
96
|
openlit/instrumentation/litellm/async_litellm.py,sha256=GdMXyCLLuC9-7nXTsKTgvXOOQnw0oTbUwL_DYp_pNoE,6780
|
94
97
|
openlit/instrumentation/litellm/litellm.py,sha256=xLna3I_jcywTtIs1tBjHAQKyKjNM07T8GHX9pIqZcQ0,6664
|
95
98
|
openlit/instrumentation/litellm/utils.py,sha256=VMSnYkKn9yZtOphIh2ENNuqJtGjz1fXEYUKi5JGHC7A,13195
|
96
|
-
openlit/instrumentation/llamaindex/__init__.py,sha256=
|
97
|
-
openlit/instrumentation/llamaindex/
|
99
|
+
openlit/instrumentation/llamaindex/__init__.py,sha256=B_76JO93uZiWhPGqvOVpZltOQbPw9JxuQw-HBBJZqQA,10121
|
100
|
+
openlit/instrumentation/llamaindex/async_llamaindex.py,sha256=DdQmdhXtKgPpqsqgseB-MLZSm-1Sc51Q2uEeavhaIMw,1879
|
101
|
+
openlit/instrumentation/llamaindex/llamaindex.py,sha256=2mmhYeZXSfXJLzu-yPNTTpoV-E2UAYdYroWIVDFgw0M,1932
|
102
|
+
openlit/instrumentation/llamaindex/utils.py,sha256=rGFzN5J1-F9MAgr59VFC8TvOG8z0xFceXB6hrntqFH4,19043
|
98
103
|
openlit/instrumentation/mem0/__init__.py,sha256=IadP3bKgz2HCbnrh9S7AW24uDauGkzsIWeOQaGkOCc4,2447
|
99
|
-
openlit/instrumentation/mem0/mem0.py,sha256=
|
100
|
-
openlit/instrumentation/milvus/__init__.py,sha256=
|
101
|
-
openlit/instrumentation/milvus/milvus.py,sha256=
|
104
|
+
openlit/instrumentation/mem0/mem0.py,sha256=mEK72AlUmydI1DZu8L9dnTx2B95MrIEzMfg6ExG93nQ,5336
|
105
|
+
openlit/instrumentation/milvus/__init__.py,sha256=aFRRkJtUEJcoIQjMWPdBiAaODFZrGuvUPg-9lCGkg80,1839
|
106
|
+
openlit/instrumentation/milvus/milvus.py,sha256=QCtVFGvlQkNPP2apsWOYMTsCPFugts6DMnF0Sm77AHA,1963
|
107
|
+
openlit/instrumentation/milvus/utils.py,sha256=UDk6UmJ0ovCgcs2ynOXWmJEbIqnbipO0k0BsAmVKRvg,11609
|
102
108
|
openlit/instrumentation/mistral/__init__.py,sha256=D4CLrx9KSSxAPA1m00743Og0Tl8BS47nsgp4qG5-qh8,2977
|
103
109
|
openlit/instrumentation/mistral/async_mistral.py,sha256=LWq8tYahbA7NOPDdk6DWJAKuxR4GHOC49w6L1QuNtBw,6946
|
104
110
|
openlit/instrumentation/mistral/mistral.py,sha256=lyXyPZuxVACcZoOz85G4FFH4KP77uGf3aOiFDdHLQFI,6771
|
@@ -110,10 +116,10 @@ openlit/instrumentation/ollama/__init__.py,sha256=WxjqjuR8ovMU5dR08OELNqClbuM7ns
|
|
110
116
|
openlit/instrumentation/ollama/async_ollama.py,sha256=ORXwem8lgSrhOcci55NkChIK9SNc3IYIpLjF_ogsGA8,6666
|
111
117
|
openlit/instrumentation/ollama/ollama.py,sha256=8mvrWfU1c5h1L7lxWo47YBJ7g2u7QZmSZuuP0URtTDo,6538
|
112
118
|
openlit/instrumentation/ollama/utils.py,sha256=TIE3_ur2U-iyCclna7TzwjDIFC9PZjRnZqNDV6NfG-0,11958
|
113
|
-
openlit/instrumentation/openai/__init__.py,sha256=
|
119
|
+
openlit/instrumentation/openai/__init__.py,sha256=4RWRhrRa589jiwvFf8_fLBW6UB5Btrd17mcDKv5VhJk,5546
|
114
120
|
openlit/instrumentation/openai/async_openai.py,sha256=QvEEKZnZYl9Vf-wsX1voTMMZed1eNhRI9aUT8CtFJi0,18003
|
115
121
|
openlit/instrumentation/openai/openai.py,sha256=34_FqOwSroNOm_mmLzZb8Y7xtr5StwnUyRQmHP6HHJc,17698
|
116
|
-
openlit/instrumentation/openai/utils.py,sha256=
|
122
|
+
openlit/instrumentation/openai/utils.py,sha256=dd57s93nBSbl4OUjkkoC6QuEGXVC_2XOf2C7Hs1eEww,35555
|
117
123
|
openlit/instrumentation/openai_agents/__init__.py,sha256=tRTSIrUtkXc_lfQnVanXmQLd2Sy9RqBNTHF5FhhZx7o,1530
|
118
124
|
openlit/instrumentation/openai_agents/openai_agents.py,sha256=kRWPgjofcOviMi3w7CsRvJO3SCjqPmuq-PM800vIM7g,2678
|
119
125
|
openlit/instrumentation/phidata/__init__.py,sha256=tqls5-UI6FzbjxYgq_qqAfALhWJm8dHn2NtgqiQA4f8,1557
|
@@ -121,7 +127,7 @@ openlit/instrumentation/phidata/phidata.py,sha256=ohrxs6i0Oik75P2BrjNGbK71tdZg94
|
|
121
127
|
openlit/instrumentation/pinecone/__init__.py,sha256=-3wD35oCnwjwBQV3-gZs2XgpZ2wT9jmiMGjalpF9BhI,3683
|
122
128
|
openlit/instrumentation/pinecone/async_pinecone.py,sha256=AXXsRvsOgqFlYRXfE971RUsiClmPnMvMiPjKgE7y-Nk,2035
|
123
129
|
openlit/instrumentation/pinecone/pinecone.py,sha256=RjVkYvynaDcDIbmkyZnKvmeTK57Q48uOknDg7UF8MdM,1993
|
124
|
-
openlit/instrumentation/pinecone/utils.py,sha256=
|
130
|
+
openlit/instrumentation/pinecone/utils.py,sha256=Gke681uUWPhXQ38OeWBgScp08EPcwGkfzK2zQ2aGQKc,10392
|
125
131
|
openlit/instrumentation/premai/__init__.py,sha256=3YlqyV-eNA_4aVUHDVUQUvGJRW8iVVcRtREw91yhbyw,1728
|
126
132
|
openlit/instrumentation/premai/premai.py,sha256=rWRqfoIZUbTz-M7zgC2Z92gTVv9fCj1Z4iJcsG86YeI,6438
|
127
133
|
openlit/instrumentation/premai/utils.py,sha256=K7EKGRDDh1X3OznG4z8H506zzFOHN6MH3oqtxM5eUyM,11409
|
@@ -131,12 +137,12 @@ openlit/instrumentation/pydantic_ai/utils.py,sha256=b0TqhSDnRqkPdM_qsOgMuXT3lwTv
|
|
131
137
|
openlit/instrumentation/qdrant/__init__.py,sha256=-2qoUBZXaZqVpOjM_XDp6_Nf4tCqErrGcNtVD6DGgb0,3010
|
132
138
|
openlit/instrumentation/qdrant/async_qdrant.py,sha256=8e6CQGMMnvsTtfYTlxJBRwfHnqHcg-eKl6MIHGuZxL4,2259
|
133
139
|
openlit/instrumentation/qdrant/qdrant.py,sha256=vu2NCzlsl3R4NB__JXexHKSDnUNbLQAhxIHt3EG6Zbs,2223
|
134
|
-
openlit/instrumentation/qdrant/utils.py,sha256=
|
140
|
+
openlit/instrumentation/qdrant/utils.py,sha256=XfjpesBq1S0YtwMLPJmYacrBEP9OeM2yBQYMSUieVPk,15223
|
135
141
|
openlit/instrumentation/reka/__init__.py,sha256=wI5KUYyTAD8ni4E98uziy9WPqoQqlzybDXanFOqDan0,1720
|
136
142
|
openlit/instrumentation/reka/async_reka.py,sha256=CZk5rr7njThDkmrauRAJmNtMBgsLarTbQ54raPQb92A,1909
|
137
143
|
openlit/instrumentation/reka/reka.py,sha256=wou7vVdN_1Y5UZd4tpkLpTPAtgmAl6gmh_onLn4k4GE,1908
|
138
144
|
openlit/instrumentation/reka/utils.py,sha256=qt1ZIsWkuFGX6iPMiUJ993dh1njvc81QJECD3BnSOpE,6632
|
139
|
-
openlit/instrumentation/together/__init__.py,sha256=
|
145
|
+
openlit/instrumentation/together/__init__.py,sha256=2o8LML05Ji_hs6xuyP3iz7vJcFIgKGaLaghSDPEcHGk,2468
|
140
146
|
openlit/instrumentation/together/async_together.py,sha256=0-h5fKw6rIwN_fvWVpGuvVqizIuM9xFCzz8Z4oGgOj0,6822
|
141
147
|
openlit/instrumentation/together/together.py,sha256=nY6mzHmHgoMbbnB_9eL0EBQjP0ltJVdkQj4pbamHAj0,6723
|
142
148
|
openlit/instrumentation/together/utils.py,sha256=n7r_pM_sqFnJEAkL7OhPydr0Uct0A74vXdcYELdbeW0,14368
|
@@ -153,8 +159,8 @@ openlit/instrumentation/vllm/vllm.py,sha256=VzazF2f4LLwjZDO_G8lIN_d622oSJM0fIO9w
|
|
153
159
|
openlit/otel/events.py,sha256=VrMjTpvnLtYRBHCiFwJojTQqqNpRCxoD4yJYeQrtPsk,3560
|
154
160
|
openlit/otel/metrics.py,sha256=GM2PDloBGRhBTkHHkYaqmOwIAQkY124ZhW4sEqW1Fgk,7086
|
155
161
|
openlit/otel/tracing.py,sha256=tjV2bEbEDPUB1Z46gE-UsJsb04sRdFrfbhIDkxViZc0,3103
|
156
|
-
openlit/semcov/__init__.py,sha256=
|
157
|
-
openlit-1.34.
|
158
|
-
openlit-1.34.
|
159
|
-
openlit-1.34.
|
160
|
-
openlit-1.34.
|
162
|
+
openlit/semcov/__init__.py,sha256=2yvcsK4l9fs7QL8pOqogg0O-KDTEfb5lFd6J6ySlpjM,18657
|
163
|
+
openlit-1.34.28.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
164
|
+
openlit-1.34.28.dist-info/METADATA,sha256=q5cGfMlB4KgoPFDOLlevkxaMizvCr2zfBx_4b4-epN4,23470
|
165
|
+
openlit-1.34.28.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
166
|
+
openlit-1.34.28.dist-info/RECORD,,
|
File without changes
|
File without changes
|