opentelemetry-instrumentation-groq 0.43.1__tar.gz → 0.44.0__tar.gz

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.

Potentially problematic release.


This version of opentelemetry-instrumentation-groq might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: opentelemetry-instrumentation-groq
3
- Version: 0.43.1
3
+ Version: 0.44.0
4
4
  Summary: OpenTelemetry Groq instrumentation
5
5
  License: Apache-2.0
6
6
  Author: Gal Kleinman
@@ -385,14 +385,12 @@ class GroqInstrumentor(BaseInstrumentor):
385
385
 
386
386
  def __init__(
387
387
  self,
388
- enrich_token_usage: bool = False,
389
388
  exception_logger=None,
390
389
  use_legacy_attributes: bool = True,
391
390
  get_common_metrics_attributes: Callable[[], dict] = lambda: {},
392
391
  ):
393
392
  super().__init__()
394
393
  Config.exception_logger = exception_logger
395
- Config.enrich_token_usage = enrich_token_usage
396
394
  Config.get_common_metrics_attributes = get_common_metrics_attributes
397
395
  Config.use_legacy_attributes = use_legacy_attributes
398
396
 
@@ -2,7 +2,6 @@ from typing import Callable
2
2
 
3
3
 
4
4
  class Config:
5
- enrich_token_usage = False
6
5
  exception_logger = None
7
6
  get_common_metrics_attributes: Callable[[], dict] = lambda: {}
8
7
  use_legacy_attributes = True
@@ -8,7 +8,7 @@ show_missing = true
8
8
 
9
9
  [tool.poetry]
10
10
  name = "opentelemetry-instrumentation-groq"
11
- version = "0.43.1"
11
+ version = "0.44.0"
12
12
  description = "OpenTelemetry Groq instrumentation"
13
13
  authors = ["Gal Kleinman <gal@traceloop.com>", "Nir Gazit <nir@traceloop.com>"]
14
14
  repository = "https://github.com/traceloop/openllmetry/tree/main/packages/opentelemetry-instrumentation-groq"