openlit 1.33.9__py3-none-any.whl → 1.33.11__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.
Files changed (113) hide show
  1. openlit/__helpers.py +78 -0
  2. openlit/__init__.py +41 -13
  3. openlit/instrumentation/ag2/__init__.py +9 -10
  4. openlit/instrumentation/ag2/ag2.py +134 -69
  5. openlit/instrumentation/ai21/__init__.py +6 -5
  6. openlit/instrumentation/ai21/ai21.py +71 -534
  7. openlit/instrumentation/ai21/async_ai21.py +71 -534
  8. openlit/instrumentation/ai21/utils.py +407 -0
  9. openlit/instrumentation/anthropic/__init__.py +3 -3
  10. openlit/instrumentation/anthropic/anthropic.py +5 -5
  11. openlit/instrumentation/anthropic/async_anthropic.py +5 -5
  12. openlit/instrumentation/assemblyai/__init__.py +2 -2
  13. openlit/instrumentation/assemblyai/assemblyai.py +3 -3
  14. openlit/instrumentation/astra/__init__.py +25 -25
  15. openlit/instrumentation/astra/astra.py +7 -7
  16. openlit/instrumentation/astra/async_astra.py +7 -7
  17. openlit/instrumentation/azure_ai_inference/__init__.py +5 -5
  18. openlit/instrumentation/azure_ai_inference/async_azure_ai_inference.py +11 -11
  19. openlit/instrumentation/azure_ai_inference/azure_ai_inference.py +11 -11
  20. openlit/instrumentation/bedrock/__init__.py +2 -2
  21. openlit/instrumentation/bedrock/bedrock.py +3 -3
  22. openlit/instrumentation/chroma/__init__.py +9 -9
  23. openlit/instrumentation/chroma/chroma.py +7 -7
  24. openlit/instrumentation/cohere/__init__.py +7 -7
  25. openlit/instrumentation/cohere/async_cohere.py +10 -10
  26. openlit/instrumentation/cohere/cohere.py +11 -11
  27. openlit/instrumentation/controlflow/__init__.py +4 -4
  28. openlit/instrumentation/controlflow/controlflow.py +5 -5
  29. openlit/instrumentation/crawl4ai/__init__.py +3 -3
  30. openlit/instrumentation/crawl4ai/async_crawl4ai.py +5 -5
  31. openlit/instrumentation/crawl4ai/crawl4ai.py +5 -5
  32. openlit/instrumentation/crewai/__init__.py +3 -3
  33. openlit/instrumentation/crewai/crewai.py +6 -4
  34. openlit/instrumentation/dynamiq/__init__.py +5 -5
  35. openlit/instrumentation/dynamiq/dynamiq.py +5 -5
  36. openlit/instrumentation/elevenlabs/__init__.py +5 -5
  37. openlit/instrumentation/elevenlabs/async_elevenlabs.py +4 -5
  38. openlit/instrumentation/elevenlabs/elevenlabs.py +4 -5
  39. openlit/instrumentation/embedchain/__init__.py +2 -2
  40. openlit/instrumentation/embedchain/embedchain.py +9 -9
  41. openlit/instrumentation/firecrawl/__init__.py +3 -3
  42. openlit/instrumentation/firecrawl/firecrawl.py +5 -5
  43. openlit/instrumentation/google_ai_studio/__init__.py +3 -3
  44. openlit/instrumentation/google_ai_studio/async_google_ai_studio.py +3 -3
  45. openlit/instrumentation/google_ai_studio/google_ai_studio.py +3 -3
  46. openlit/instrumentation/gpt4all/__init__.py +5 -5
  47. openlit/instrumentation/gpt4all/gpt4all.py +350 -225
  48. openlit/instrumentation/gpu/__init__.py +5 -5
  49. openlit/instrumentation/groq/__init__.py +5 -5
  50. openlit/instrumentation/groq/async_groq.py +359 -243
  51. openlit/instrumentation/groq/groq.py +359 -243
  52. openlit/instrumentation/haystack/__init__.py +2 -2
  53. openlit/instrumentation/haystack/haystack.py +5 -5
  54. openlit/instrumentation/julep/__init__.py +7 -7
  55. openlit/instrumentation/julep/async_julep.py +6 -6
  56. openlit/instrumentation/julep/julep.py +6 -6
  57. openlit/instrumentation/langchain/__init__.py +15 -9
  58. openlit/instrumentation/langchain/async_langchain.py +388 -0
  59. openlit/instrumentation/langchain/langchain.py +110 -497
  60. openlit/instrumentation/letta/__init__.py +7 -7
  61. openlit/instrumentation/letta/letta.py +10 -8
  62. openlit/instrumentation/litellm/__init__.py +9 -10
  63. openlit/instrumentation/litellm/async_litellm.py +321 -250
  64. openlit/instrumentation/litellm/litellm.py +319 -248
  65. openlit/instrumentation/llamaindex/__init__.py +2 -2
  66. openlit/instrumentation/llamaindex/llamaindex.py +5 -5
  67. openlit/instrumentation/mem0/__init__.py +2 -2
  68. openlit/instrumentation/mem0/mem0.py +5 -5
  69. openlit/instrumentation/milvus/__init__.py +2 -2
  70. openlit/instrumentation/milvus/milvus.py +7 -7
  71. openlit/instrumentation/mistral/__init__.py +13 -13
  72. openlit/instrumentation/mistral/async_mistral.py +426 -253
  73. openlit/instrumentation/mistral/mistral.py +424 -250
  74. openlit/instrumentation/multion/__init__.py +7 -7
  75. openlit/instrumentation/multion/async_multion.py +9 -7
  76. openlit/instrumentation/multion/multion.py +9 -7
  77. openlit/instrumentation/ollama/__init__.py +19 -39
  78. openlit/instrumentation/ollama/async_ollama.py +137 -563
  79. openlit/instrumentation/ollama/ollama.py +136 -563
  80. openlit/instrumentation/ollama/utils.py +333 -0
  81. openlit/instrumentation/openai/__init__.py +11 -11
  82. openlit/instrumentation/openai/async_openai.py +25 -27
  83. openlit/instrumentation/openai/openai.py +25 -27
  84. openlit/instrumentation/phidata/__init__.py +2 -2
  85. openlit/instrumentation/phidata/phidata.py +6 -4
  86. openlit/instrumentation/pinecone/__init__.py +6 -6
  87. openlit/instrumentation/pinecone/pinecone.py +7 -7
  88. openlit/instrumentation/premai/__init__.py +5 -5
  89. openlit/instrumentation/premai/premai.py +268 -219
  90. openlit/instrumentation/qdrant/__init__.py +2 -2
  91. openlit/instrumentation/qdrant/async_qdrant.py +7 -7
  92. openlit/instrumentation/qdrant/qdrant.py +7 -7
  93. openlit/instrumentation/reka/__init__.py +5 -5
  94. openlit/instrumentation/reka/async_reka.py +93 -55
  95. openlit/instrumentation/reka/reka.py +93 -55
  96. openlit/instrumentation/together/__init__.py +9 -9
  97. openlit/instrumentation/together/async_together.py +284 -242
  98. openlit/instrumentation/together/together.py +284 -242
  99. openlit/instrumentation/transformers/__init__.py +3 -3
  100. openlit/instrumentation/transformers/transformers.py +79 -48
  101. openlit/instrumentation/vertexai/__init__.py +19 -69
  102. openlit/instrumentation/vertexai/async_vertexai.py +333 -990
  103. openlit/instrumentation/vertexai/vertexai.py +333 -990
  104. openlit/instrumentation/vllm/__init__.py +3 -3
  105. openlit/instrumentation/vllm/vllm.py +65 -35
  106. openlit/otel/events.py +85 -0
  107. openlit/otel/tracing.py +3 -13
  108. openlit/semcov/__init__.py +16 -4
  109. {openlit-1.33.9.dist-info → openlit-1.33.11.dist-info}/METADATA +2 -2
  110. openlit-1.33.11.dist-info/RECORD +125 -0
  111. openlit-1.33.9.dist-info/RECORD +0 -121
  112. {openlit-1.33.9.dist-info → openlit-1.33.11.dist-info}/LICENSE +0 -0
  113. {openlit-1.33.9.dist-info → openlit-1.33.11.dist-info}/WHEEL +0 -0
@@ -22,7 +22,7 @@ class AstraInstrumentor(BaseInstrumentor):
22
22
  tracer = kwargs.get("tracer")
23
23
  metrics = kwargs.get("metrics_dict")
24
24
  pricing_info = kwargs.get("pricing_info")
25
- trace_content = kwargs.get("trace_content")
25
+ capture_message_content = kwargs.get("capture_message_content")
26
26
  disable_metrics = kwargs.get("disable_metrics")
27
27
  version = importlib.metadata.version("astrapy")
28
28
 
@@ -31,73 +31,73 @@ class AstraInstrumentor(BaseInstrumentor):
31
31
  "astrapy.database",
32
32
  "Database.create_collection",
33
33
  general_wrap("astra.create_collection", version, environment, application_name,
34
- tracer, pricing_info, trace_content, metrics, disable_metrics),
34
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
35
35
  )
36
36
  wrap_function_wrapper(
37
37
  "astrapy.database",
38
38
  "Database.drop_collection",
39
39
  general_wrap("astra.drop_collection", version, environment, application_name,
40
- tracer, pricing_info, trace_content, metrics, disable_metrics),
40
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
41
41
  )
42
42
  wrap_function_wrapper(
43
43
  "astrapy.collection",
44
44
  "Collection.insert_one",
45
45
  general_wrap("astra.insert_one", version, environment, application_name,
46
- tracer, pricing_info, trace_content, metrics, disable_metrics),
46
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
47
47
  )
48
48
  wrap_function_wrapper(
49
49
  "astrapy.collection",
50
50
  "Collection.insert_many",
51
51
  general_wrap("astra.insert_many", version, environment, application_name,
52
- tracer, pricing_info, trace_content, metrics, disable_metrics),
52
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
53
53
  )
54
54
  wrap_function_wrapper(
55
55
  "astrapy.collection",
56
56
  "Collection.update_one",
57
57
  general_wrap("astra.update_one", version, environment, application_name,
58
- tracer, pricing_info, trace_content, metrics, disable_metrics),
58
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
59
59
  )
60
60
  wrap_function_wrapper(
61
61
  "astrapy.collection",
62
62
  "Collection.update_many",
63
63
  general_wrap("astra.update_many", version, environment, application_name,
64
- tracer, pricing_info, trace_content, metrics, disable_metrics),
64
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
65
65
  )
66
66
  wrap_function_wrapper(
67
67
  "astrapy.collection",
68
68
  "Collection.find_one_and_update",
69
69
  general_wrap("astra.find_one_and_update", version, environment, application_name,
70
- tracer, pricing_info, trace_content, metrics, disable_metrics),
70
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
71
71
  )
72
72
  wrap_function_wrapper(
73
73
  "astrapy.collection",
74
74
  "Collection.find",
75
75
  general_wrap("astra.find", version, environment, application_name,
76
- tracer, pricing_info, trace_content, metrics, disable_metrics),
76
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
77
77
  )
78
78
  wrap_function_wrapper(
79
79
  "astrapy.collection",
80
80
  "Collection.replace_one",
81
81
  general_wrap("astra.replace_one", version, environment, application_name,
82
- tracer, pricing_info, trace_content, metrics, disable_metrics),
82
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
83
83
  )
84
84
  wrap_function_wrapper(
85
85
  "astrapy.collection",
86
86
  "Collection.find_one_and_delete",
87
87
  general_wrap("astra.find_one_and_delete", version, environment, application_name,
88
- tracer, pricing_info, trace_content, metrics, disable_metrics),
88
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
89
89
  )
90
90
  wrap_function_wrapper(
91
91
  "astrapy.collection",
92
92
  "Collection.delete_one",
93
93
  general_wrap("astra.delete_one", version, environment, application_name,
94
- tracer, pricing_info, trace_content, metrics, disable_metrics),
94
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
95
95
  )
96
96
  wrap_function_wrapper(
97
97
  "astrapy.collection",
98
98
  "Collection.delete_many",
99
99
  general_wrap("astra.delete_many", version, environment, application_name,
100
- tracer, pricing_info, trace_content, metrics, disable_metrics),
100
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
101
101
  )
102
102
 
103
103
  # ASync
@@ -105,73 +105,73 @@ class AstraInstrumentor(BaseInstrumentor):
105
105
  "astrapy.database",
106
106
  "AsyncDatabase.create_collection",
107
107
  general_wrap("astra.create_collection", version, environment, application_name,
108
- tracer, pricing_info, trace_content, metrics, disable_metrics),
108
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
109
109
  )
110
110
  wrap_function_wrapper(
111
111
  "astrapy.database",
112
112
  "AsyncDatabase.drop_collection",
113
113
  general_wrap("astra.drop_collection", version, environment, application_name,
114
- tracer, pricing_info, trace_content, metrics, disable_metrics),
114
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
115
115
  )
116
116
  wrap_function_wrapper(
117
117
  "astrapy.collection",
118
118
  "AsyncCollection.insert_one",
119
119
  general_wrap("astra.insert_one", version, environment, application_name,
120
- tracer, pricing_info, trace_content, metrics, disable_metrics),
120
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
121
121
  )
122
122
  wrap_function_wrapper(
123
123
  "astrapy.collection",
124
124
  "AsyncCollection.insert_many",
125
125
  general_wrap("astra.insert_many", version, environment, application_name,
126
- tracer, pricing_info, trace_content, metrics, disable_metrics),
126
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
127
127
  )
128
128
  wrap_function_wrapper(
129
129
  "astrapy.collection",
130
130
  "AsyncCollection.update_one",
131
131
  general_wrap("astra.update_one", version, environment, application_name,
132
- tracer, pricing_info, trace_content, metrics, disable_metrics),
132
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
133
133
  )
134
134
  wrap_function_wrapper(
135
135
  "astrapy.collection",
136
136
  "AsyncCollection.update_many",
137
137
  general_wrap("astra.update_many", version, environment, application_name,
138
- tracer, pricing_info, trace_content, metrics, disable_metrics),
138
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
139
139
  )
140
140
  wrap_function_wrapper(
141
141
  "astrapy.collection",
142
142
  "AsyncCollection.find_one_and_update",
143
143
  general_wrap("astra.find_one_and_update", version, environment, application_name,
144
- tracer, pricing_info, trace_content, metrics, disable_metrics),
144
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
145
145
  )
146
146
  wrap_function_wrapper(
147
147
  "astrapy.collection",
148
148
  "AsyncCollection.find",
149
149
  general_wrap("astra.find", version, environment, application_name,
150
- tracer, pricing_info, trace_content, metrics, disable_metrics),
150
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
151
151
  )
152
152
  wrap_function_wrapper(
153
153
  "astrapy.collection",
154
154
  "AsyncCollection.replace_one",
155
155
  general_wrap("astra.replace_one", version, environment, application_name,
156
- tracer, pricing_info, trace_content, metrics, disable_metrics),
156
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
157
157
  )
158
158
  wrap_function_wrapper(
159
159
  "astrapy.collection",
160
160
  "AsyncCollection.find_one_and_delete",
161
161
  general_wrap("astra.find_one_and_delete", version, environment, application_name,
162
- tracer, pricing_info, trace_content, metrics, disable_metrics),
162
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
163
163
  )
164
164
  wrap_function_wrapper(
165
165
  "astrapy.collection",
166
166
  "AsyncCollection.delete_one",
167
167
  general_wrap("astra.delete_one", version, environment, application_name,
168
- tracer, pricing_info, trace_content, metrics, disable_metrics),
168
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
169
169
  )
170
170
  wrap_function_wrapper(
171
171
  "astrapy.collection",
172
172
  "AsyncCollection.delete_many",
173
173
  general_wrap("astra.delete_many", version, environment, application_name,
174
- tracer, pricing_info, trace_content, metrics, disable_metrics),
174
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
175
175
  )
176
176
 
177
177
  @staticmethod
@@ -5,7 +5,7 @@ Module for monitoring AstraDB.
5
5
 
6
6
  import logging
7
7
  from opentelemetry.trace import SpanKind, Status, StatusCode
8
- from opentelemetry.sdk.resources import TELEMETRY_SDK_NAME
8
+ from opentelemetry.sdk.resources import SERVICE_NAME, TELEMETRY_SDK_NAME, DEPLOYMENT_ENVIRONMENT
9
9
  from openlit.__helpers import handle_exception
10
10
  from openlit.semcov import SemanticConvetion
11
11
 
@@ -20,7 +20,7 @@ def object_count(obj):
20
20
  return len(obj) if obj else None
21
21
 
22
22
  def general_wrap(gen_ai_endpoint, version, environment, application_name,
23
- tracer, pricing_info, trace_content, metrics, disable_metrics):
23
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics):
24
24
  """
25
25
  Wraps a AstraDB operation to trace and log its execution metrics.
26
26
 
@@ -37,7 +37,7 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
37
37
  - application_name (str): The name of the application performing the AstraDB operation.
38
38
  - tracer (opentelemetry.trace.Tracer): An object used for OpenTelemetry tracing.
39
39
  - pricing_info (dict): Information about pricing, not used in current implementation.
40
- - trace_content (bool): A flag indicating whether the content of responses should be traced.
40
+ - capture_message_content (bool): A flag indicating whether the content of responses should be traced.
41
41
 
42
42
  Returns:
43
43
  - function: A decorator function that, when applied, wraps the target function with
@@ -69,9 +69,9 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
69
69
  span.set_attribute(TELEMETRY_SDK_NAME, "openlit")
70
70
  span.set_attribute(SemanticConvetion.GEN_AI_ENDPOINT,
71
71
  gen_ai_endpoint)
72
- span.set_attribute(SemanticConvetion.GEN_AI_ENVIRONMENT,
72
+ span.set_attribute(DEPLOYMENT_ENVIRONMENT,
73
73
  environment)
74
- span.set_attribute(SemanticConvetion.GEN_AI_APPLICATION_NAME,
74
+ span.set_attribute(SERVICE_NAME,
75
75
  application_name)
76
76
  span.set_attribute(SemanticConvetion.GEN_AI_OPERATION,
77
77
  SemanticConvetion.GEN_AI_OPERATION_TYPE_VECTORDB)
@@ -199,11 +199,11 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
199
199
  attributes = {
200
200
  TELEMETRY_SDK_NAME:
201
201
  "openlit",
202
- SemanticConvetion.GEN_AI_APPLICATION_NAME:
202
+ SERVICE_NAME:
203
203
  application_name,
204
204
  SemanticConvetion.DB_SYSTEM:
205
205
  SemanticConvetion.DB_SYSTEM_ASTRA,
206
- SemanticConvetion.GEN_AI_ENVIRONMENT:
206
+ DEPLOYMENT_ENVIRONMENT:
207
207
  environment,
208
208
  SemanticConvetion.GEN_AI_OPERATION:
209
209
  SemanticConvetion.GEN_AI_OPERATION_TYPE_VECTORDB,
@@ -5,7 +5,7 @@ Module for monitoring AstraDB.
5
5
 
6
6
  import logging
7
7
  from opentelemetry.trace import SpanKind, Status, StatusCode
8
- from opentelemetry.sdk.resources import TELEMETRY_SDK_NAME
8
+ from opentelemetry.sdk.resources import SERVICE_NAME, TELEMETRY_SDK_NAME, DEPLOYMENT_ENVIRONMENT
9
9
  from openlit.__helpers import handle_exception
10
10
  from openlit.semcov import SemanticConvetion
11
11
 
@@ -20,7 +20,7 @@ def object_count(obj):
20
20
  return len(obj) if obj else None
21
21
 
22
22
  def general_wrap(gen_ai_endpoint, version, environment, application_name,
23
- tracer, pricing_info, trace_content, metrics, disable_metrics):
23
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics):
24
24
  """
25
25
  Wraps a AstraDB operation to trace and log its execution metrics.
26
26
 
@@ -37,7 +37,7 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
37
37
  - application_name (str): The name of the application performing the AstraDB operation.
38
38
  - tracer (opentelemetry.trace.Tracer): An object used for OpenTelemetry tracing.
39
39
  - pricing_info (dict): Information about pricing, not used in current implementation.
40
- - trace_content (bool): A flag indicating whether the content of responses should be traced.
40
+ - capture_message_content (bool): A flag indicating whether the content of responses should be traced.
41
41
 
42
42
  Returns:
43
43
  - function: A decorator function that, when applied, wraps the target function with
@@ -69,9 +69,9 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
69
69
  span.set_attribute(TELEMETRY_SDK_NAME, "openlit")
70
70
  span.set_attribute(SemanticConvetion.GEN_AI_ENDPOINT,
71
71
  gen_ai_endpoint)
72
- span.set_attribute(SemanticConvetion.GEN_AI_ENVIRONMENT,
72
+ span.set_attribute(DEPLOYMENT_ENVIRONMENT,
73
73
  environment)
74
- span.set_attribute(SemanticConvetion.GEN_AI_APPLICATION_NAME,
74
+ span.set_attribute(SERVICE_NAME,
75
75
  application_name)
76
76
  span.set_attribute(SemanticConvetion.GEN_AI_OPERATION,
77
77
  SemanticConvetion.GEN_AI_OPERATION_TYPE_VECTORDB)
@@ -199,11 +199,11 @@ def general_wrap(gen_ai_endpoint, version, environment, application_name,
199
199
  attributes = {
200
200
  TELEMETRY_SDK_NAME:
201
201
  "openlit",
202
- SemanticConvetion.GEN_AI_APPLICATION_NAME:
202
+ SERVICE_NAME:
203
203
  application_name,
204
204
  SemanticConvetion.DB_SYSTEM:
205
205
  SemanticConvetion.DB_SYSTEM_ASTRA,
206
- SemanticConvetion.GEN_AI_ENVIRONMENT:
206
+ DEPLOYMENT_ENVIRONMENT:
207
207
  environment,
208
208
  SemanticConvetion.GEN_AI_OPERATION:
209
209
  SemanticConvetion.GEN_AI_OPERATION_TYPE_VECTORDB,
@@ -30,7 +30,7 @@ class AzureAIInferenceInstrumentor(BaseInstrumentor):
30
30
  tracer = kwargs.get("tracer")
31
31
  metrics = kwargs.get("metrics_dict")
32
32
  pricing_info = kwargs.get("pricing_info", {})
33
- trace_content = kwargs.get("trace_content", False)
33
+ capture_message_content = kwargs.get("capture_message_content", False)
34
34
  disable_metrics = kwargs.get("disable_metrics")
35
35
  version = importlib.metadata.version("azure-ai-inference")
36
36
 
@@ -39,7 +39,7 @@ class AzureAIInferenceInstrumentor(BaseInstrumentor):
39
39
  "azure.ai.inference",
40
40
  "ChatCompletionsClient.complete",
41
41
  complete(version, environment, application_name,
42
- tracer, pricing_info, trace_content, metrics, disable_metrics),
42
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
43
43
  )
44
44
 
45
45
  # sync embedding
@@ -47,7 +47,7 @@ class AzureAIInferenceInstrumentor(BaseInstrumentor):
47
47
  "azure.ai.inference",
48
48
  "EmbeddingsClient.embed",
49
49
  embedding(version, environment, application_name,
50
- tracer, pricing_info, trace_content, metrics, disable_metrics),
50
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
51
51
  )
52
52
 
53
53
  # async generate
@@ -55,7 +55,7 @@ class AzureAIInferenceInstrumentor(BaseInstrumentor):
55
55
  "azure.ai.inference.aio",
56
56
  "ChatCompletionsClient.complete",
57
57
  async_complete(version, environment, application_name,
58
- tracer, pricing_info, trace_content, metrics, disable_metrics),
58
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
59
59
  )
60
60
 
61
61
  # async embedding
@@ -63,7 +63,7 @@ class AzureAIInferenceInstrumentor(BaseInstrumentor):
63
63
  "azure.ai.inference.aio",
64
64
  "EmbeddingsClient.embed",
65
65
  async_embedding(version, environment, application_name,
66
- tracer, pricing_info, trace_content, metrics, disable_metrics),
66
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
67
67
  )
68
68
 
69
69
  def _uninstrument(self, **kwargs):
@@ -23,7 +23,7 @@ from openlit.semcov import SemanticConvetion
23
23
  logger = logging.getLogger(__name__)
24
24
 
25
25
  def async_complete(version, environment, application_name,
26
- tracer, pricing_info, trace_content, metrics, disable_metrics):
26
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics):
27
27
  """
28
28
  Generates a telemetry wrapper for chat to collect metrics.
29
29
 
@@ -33,7 +33,7 @@ def async_complete(version, environment, application_name,
33
33
  application_name: Name of the application using the Azure AI Inference API.
34
34
  tracer: OpenTelemetry tracer for creating spans.
35
35
  pricing_info: Information used for calculating the cost of Azure AI Inference usage.
36
- trace_content: Flag indicating whether to trace the actual content.
36
+ capture_message_content: Flag indicating whether to trace the actual content.
37
37
 
38
38
  Returns:
39
39
  A function that wraps the chat method to add telemetry.
@@ -42,7 +42,7 @@ def async_complete(version, environment, application_name,
42
42
  class TracedAsyncStream:
43
43
  """
44
44
  Wrapper for streaming responses to collect metrics and trace data.
45
- Wraps the 'az.ai.inference.AsyncStream' response to collect message IDs and aggregated response.
45
+ Wraps the response to collect message IDs and aggregated response.
46
46
 
47
47
  This class implements the '__aiter__' and '__anext__' methods that
48
48
  handle asynchronous streaming responses.
@@ -191,7 +191,7 @@ def async_complete(version, environment, application_name,
191
191
  output_tokens)
192
192
  self._span.set_attribute(SemanticConvetion.SERVER_ADDRESS,
193
193
  self._server_address)
194
- self._span.set_attribute(SemanticConvetion.GEN_AI_OPENAI_RESPONSE_SYSTEM_FINGERPRINT,
194
+ self._span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_SYSTEM_FINGERPRINT,
195
195
  self._system_fingerprint)
196
196
  if isinstance(self._llmresponse, str):
197
197
  self._span.set_attribute(SemanticConvetion.GEN_AI_OUTPUT_TYPE,
@@ -217,7 +217,7 @@ def async_complete(version, environment, application_name,
217
217
  self._ttft)
218
218
  self._span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
219
219
  version)
220
- if trace_content:
220
+ if capture_message_content:
221
221
  self._span.add_event(
222
222
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
223
223
  attributes={
@@ -370,7 +370,7 @@ def async_complete(version, environment, application_name,
370
370
  output_tokens)
371
371
  span.set_attribute(SemanticConvetion.SERVER_ADDRESS,
372
372
  server_address)
373
- span.set_attribute(SemanticConvetion.GEN_AI_OPENAI_RESPONSE_SYSTEM_FINGERPRINT,
373
+ span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_SYSTEM_FINGERPRINT,
374
374
  response_dict.get('system_fingerprint'))
375
375
 
376
376
  # Set base span attribues (Extras)
@@ -388,7 +388,7 @@ def async_complete(version, environment, application_name,
388
388
  end_time - start_time)
389
389
  span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
390
390
  version)
391
- if trace_content:
391
+ if capture_message_content:
392
392
  span.add_event(
393
393
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
394
394
  attributes={
@@ -399,7 +399,7 @@ def async_complete(version, environment, application_name,
399
399
  for i in range(kwargs.get('n',1)):
400
400
  span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_FINISH_REASON,
401
401
  [response_dict.get('choices')[i].get('finish_reason')])
402
- if trace_content:
402
+ if capture_message_content:
403
403
  span.add_event(
404
404
  name=SemanticConvetion.GEN_AI_CONTENT_COMPLETION_EVENT,
405
405
  attributes={
@@ -459,7 +459,7 @@ def async_complete(version, environment, application_name,
459
459
  return wrapper
460
460
 
461
461
  def async_embedding(version, environment, application_name,
462
- tracer, pricing_info, trace_content, metrics, disable_metrics):
462
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics):
463
463
  """
464
464
  Generates a telemetry wrapper for embeddings to collect metrics.
465
465
 
@@ -469,7 +469,7 @@ def async_embedding(version, environment, application_name,
469
469
  application_name: Name of the application using the Azure Inference API.
470
470
  tracer: OpenTelemetry tracer for creating spans.
471
471
  pricing_info: Information used for calculating the cost of Azure Inference usage.
472
- trace_content: Flag indicating whether to trace the actual content.
472
+ capture_message_content: Flag indicating whether to trace the actual content.
473
473
 
474
474
  Returns:
475
475
  A function that wraps the embeddings method to add telemetry.
@@ -541,7 +541,7 @@ def async_embedding(version, environment, application_name,
541
541
  span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
542
542
  version)
543
543
 
544
- if trace_content:
544
+ if capture_message_content:
545
545
  span.add_event(
546
546
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
547
547
  attributes={
@@ -23,7 +23,7 @@ from openlit.semcov import SemanticConvetion
23
23
  logger = logging.getLogger(__name__)
24
24
 
25
25
  def complete(version, environment, application_name,
26
- tracer, pricing_info, trace_content, metrics, disable_metrics):
26
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics):
27
27
  """
28
28
  Generates a telemetry wrapper for chat to collect metrics.
29
29
 
@@ -33,7 +33,7 @@ def complete(version, environment, application_name,
33
33
  application_name: Name of the application using the Azure AI Inference API.
34
34
  tracer: OpenTelemetry tracer for creating spans.
35
35
  pricing_info: Information used for calculating the cost of Azure AI Inference usage.
36
- trace_content: Flag indicating whether to trace the actual content.
36
+ capture_message_content: Flag indicating whether to trace the actual content.
37
37
 
38
38
  Returns:
39
39
  A function that wraps the chat method to add telemetry.
@@ -42,7 +42,7 @@ def complete(version, environment, application_name,
42
42
  class TracedSyncStream:
43
43
  """
44
44
  Wrapper for streaming responses to collect metrics and trace data.
45
- Wraps the 'az.ai.inference.AsyncStream' response to collect message IDs and aggregated response.
45
+ Wraps the response to collect message IDs and aggregated response.
46
46
 
47
47
  This class implements the '__aiter__' and '__anext__' methods that
48
48
  handle asynchronous streaming responses.
@@ -191,7 +191,7 @@ def complete(version, environment, application_name,
191
191
  output_tokens)
192
192
  self._span.set_attribute(SemanticConvetion.SERVER_ADDRESS,
193
193
  self._server_address)
194
- self._span.set_attribute(SemanticConvetion.GEN_AI_OPENAI_RESPONSE_SYSTEM_FINGERPRINT,
194
+ self._span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_SYSTEM_FINGERPRINT,
195
195
  self._system_fingerprint)
196
196
  if isinstance(self._llmresponse, str):
197
197
  self._span.set_attribute(SemanticConvetion.GEN_AI_OUTPUT_TYPE,
@@ -217,7 +217,7 @@ def complete(version, environment, application_name,
217
217
  self._ttft)
218
218
  self._span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
219
219
  version)
220
- if trace_content:
220
+ if capture_message_content:
221
221
  self._span.add_event(
222
222
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
223
223
  attributes={
@@ -370,7 +370,7 @@ def complete(version, environment, application_name,
370
370
  output_tokens)
371
371
  span.set_attribute(SemanticConvetion.SERVER_ADDRESS,
372
372
  server_address)
373
- span.set_attribute(SemanticConvetion.GEN_AI_OPENAI_RESPONSE_SYSTEM_FINGERPRINT,
373
+ span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_SYSTEM_FINGERPRINT,
374
374
  response_dict.get('system_fingerprint'))
375
375
 
376
376
  # Set base span attribues (Extras)
@@ -388,7 +388,7 @@ def complete(version, environment, application_name,
388
388
  end_time - start_time)
389
389
  span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
390
390
  version)
391
- if trace_content:
391
+ if capture_message_content:
392
392
  span.add_event(
393
393
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
394
394
  attributes={
@@ -399,7 +399,7 @@ def complete(version, environment, application_name,
399
399
  for i in range(kwargs.get('n',1)):
400
400
  span.set_attribute(SemanticConvetion.GEN_AI_RESPONSE_FINISH_REASON,
401
401
  [response_dict.get('choices')[i].get('finish_reason')])
402
- if trace_content:
402
+ if capture_message_content:
403
403
  span.add_event(
404
404
  name=SemanticConvetion.GEN_AI_CONTENT_COMPLETION_EVENT,
405
405
  attributes={
@@ -459,7 +459,7 @@ def complete(version, environment, application_name,
459
459
  return wrapper
460
460
 
461
461
  def embedding(version, environment, application_name,
462
- tracer, pricing_info, trace_content, metrics, disable_metrics):
462
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics):
463
463
  """
464
464
  Generates a telemetry wrapper for embeddings to collect metrics.
465
465
 
@@ -469,7 +469,7 @@ def embedding(version, environment, application_name,
469
469
  application_name: Name of the application using the Azure Inference API.
470
470
  tracer: OpenTelemetry tracer for creating spans.
471
471
  pricing_info: Information used for calculating the cost of Azure Inference usage.
472
- trace_content: Flag indicating whether to trace the actual content.
472
+ capture_message_content: Flag indicating whether to trace the actual content.
473
473
 
474
474
  Returns:
475
475
  A function that wraps the embeddings method to add telemetry.
@@ -541,7 +541,7 @@ def embedding(version, environment, application_name,
541
541
  span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
542
542
  version)
543
543
 
544
- if trace_content:
544
+ if capture_message_content:
545
545
  span.add_event(
546
546
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
547
547
  attributes={
@@ -24,7 +24,7 @@ class BedrockInstrumentor(BaseInstrumentor):
24
24
  tracer = kwargs.get("tracer")
25
25
  metrics = kwargs.get("metrics_dict")
26
26
  pricing_info = kwargs.get("pricing_info", {})
27
- trace_content = kwargs.get("trace_content", False)
27
+ capture_message_content = kwargs.get("capture_message_content", False)
28
28
  disable_metrics = kwargs.get("disable_metrics")
29
29
  version = importlib.metadata.version("boto3")
30
30
 
@@ -33,7 +33,7 @@ class BedrockInstrumentor(BaseInstrumentor):
33
33
  "botocore.client",
34
34
  "ClientCreator.create_client",
35
35
  converse(version, environment, application_name,
36
- tracer, pricing_info, trace_content, metrics, disable_metrics),
36
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
37
37
  )
38
38
 
39
39
  def _uninstrument(self, **kwargs):
@@ -53,7 +53,7 @@ class CustomStreamWrapper(StreamingBody):
53
53
  return data_chunk
54
54
 
55
55
  def converse(version, environment, application_name, tracer,
56
- pricing_info, trace_content, metrics, disable_metrics):
56
+ pricing_info, capture_message_content, metrics, disable_metrics):
57
57
  """
58
58
  Generates a telemetry wrapper for messages to collect metrics.
59
59
 
@@ -64,7 +64,7 @@ def converse(version, environment, application_name, tracer,
64
64
  application_name: Name of the application using the Bedrock API.
65
65
  tracer: OpenTelemetry tracer for creating spans.
66
66
  pricing_info: Information for calculating Bedrock usage cost.
67
- trace_content: Whether to trace the actual content.
67
+ capture_message_content: Whether to trace the actual content.
68
68
  metrics: Metrics collector.
69
69
  disable_metrics: Flag to toggle metrics collection.
70
70
  Returns:
@@ -194,7 +194,7 @@ def converse(version, environment, application_name, tracer,
194
194
  span.set_attribute(SemanticConvetion.GEN_AI_SDK_VERSION,
195
195
  version)
196
196
 
197
- if trace_content:
197
+ if capture_message_content:
198
198
  span.add_event(
199
199
  name=SemanticConvetion.GEN_AI_CONTENT_PROMPT_EVENT,
200
200
  attributes={
@@ -21,7 +21,7 @@ class ChromaInstrumentor(BaseInstrumentor):
21
21
  tracer = kwargs.get("tracer")
22
22
  metrics = kwargs.get("metrics_dict")
23
23
  pricing_info = kwargs.get("pricing_info")
24
- trace_content = kwargs.get("trace_content")
24
+ capture_message_content = kwargs.get("capture_message_content")
25
25
  disable_metrics = kwargs.get("disable_metrics")
26
26
  version = importlib.metadata.version("chromadb")
27
27
 
@@ -29,55 +29,55 @@ class ChromaInstrumentor(BaseInstrumentor):
29
29
  "chromadb.db",
30
30
  "DB.create_collection",
31
31
  general_wrap("chroma.create_collection", version, environment, application_name,
32
- tracer, pricing_info, trace_content, metrics, disable_metrics),
32
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
33
33
  )
34
34
 
35
35
  wrap_function_wrapper(
36
36
  "chromadb",
37
37
  "Collection.add",
38
38
  general_wrap("chroma.add", version, environment, application_name,
39
- tracer, pricing_info, trace_content, metrics, disable_metrics),
39
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
40
40
  )
41
41
 
42
42
  wrap_function_wrapper(
43
43
  "chromadb",
44
44
  "Collection.get",
45
45
  general_wrap("chroma.get", version, environment, application_name,
46
- tracer, pricing_info, trace_content, metrics, disable_metrics),
46
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
47
47
  )
48
48
 
49
49
  wrap_function_wrapper(
50
50
  "chromadb",
51
51
  "Collection.peek",
52
52
  general_wrap("chroma.peek", version, environment, application_name,
53
- tracer, pricing_info, trace_content, metrics, disable_metrics),
53
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
54
54
  )
55
55
 
56
56
  wrap_function_wrapper(
57
57
  "chromadb",
58
58
  "Collection.query",
59
59
  general_wrap("chroma.query", version, environment, application_name,
60
- tracer, pricing_info, trace_content, metrics, disable_metrics),
60
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
61
61
  )
62
62
 
63
63
  wrap_function_wrapper(
64
64
  "chromadb",
65
65
  "Collection.update",
66
66
  general_wrap("chroma.update", version, environment, application_name,
67
- tracer, pricing_info, trace_content, metrics, disable_metrics),
67
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
68
68
  )
69
69
 
70
70
  wrap_function_wrapper(
71
71
  "chromadb",
72
72
  "Collection.upsert",
73
73
  general_wrap("chroma.upsert", version, environment, application_name,
74
- tracer, pricing_info, trace_content, metrics, disable_metrics),
74
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
75
75
  )
76
76
  wrap_function_wrapper(
77
77
  "chromadb",
78
78
  "Collection.delete",
79
79
  general_wrap("chroma.delete", version, environment, application_name,
80
- tracer, pricing_info, trace_content, metrics, disable_metrics),
80
+ tracer, pricing_info, capture_message_content, metrics, disable_metrics),
81
81
  )
82
82
 
83
83