promptlayer 1.0.43__tar.gz → 1.0.45__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 promptlayer might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: promptlayer
3
- Version: 1.0.43
3
+ Version: 1.0.45
4
4
  Summary: PromptLayer is a platform for prompt engineering and tracks your LLM requests.
5
5
  License: Apache-2.0
6
6
  Author: Magniv
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
16
  Requires-Dist: ably (>=2.0.11,<3.0.0)
17
17
  Requires-Dist: aiohttp (>=3.10.10,<4.0.0)
18
+ Requires-Dist: anthropic (==0.49.0)
18
19
  Requires-Dist: httpx (>=0.28.1,<0.29.0)
19
20
  Requires-Dist: nest-asyncio (>=1.6.0,<2.0.0)
20
21
  Requires-Dist: opentelemetry-api (>=1.26.0,<2.0.0)
@@ -1,4 +1,4 @@
1
1
  from .promptlayer import AsyncPromptLayer, PromptLayer
2
2
 
3
- __version__ = "1.0.43"
3
+ __version__ = "1.0.45"
4
4
  __all__ = ["PromptLayer", "AsyncPromptLayer", "__version__"]
@@ -365,6 +365,7 @@ class AsyncPromptLayer(PromptLayerMixin):
365
365
  openai_module,
366
366
  function_name="openai",
367
367
  api_key=self.api_key,
368
+ tracer=self.tracer,
368
369
  )
369
370
  return openai
370
371
  elif name == "anthropic":
@@ -375,6 +376,7 @@ class AsyncPromptLayer(PromptLayerMixin):
375
376
  function_name="anthropic",
376
377
  provider_type="anthropic",
377
378
  api_key=self.api_key,
379
+ tracer=self.tracer,
378
380
  )
379
381
  return anthropic
380
382
  else:
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "promptlayer"
3
- version = "1.0.43"
3
+ version = "1.0.45"
4
4
  description = "PromptLayer is a platform for prompt engineering and tracks your LLM requests."
5
5
  authors = ["Magniv <hello@magniv.io>"]
6
6
  license = "Apache-2.0"
@@ -15,12 +15,12 @@ ably = "^2.0.11"
15
15
  aiohttp = "^3.10.10"
16
16
  httpx = "^0.28.1"
17
17
  nest-asyncio = "^1.6.0"
18
+ anthropic = "0.49.0"
18
19
 
19
20
  [tool.poetry.group.dev.dependencies]
20
21
  behave = "^1.2.6"
21
22
  pytest = "^8.2.0"
22
23
  pytest-asyncio = "^0.23.6"
23
- anthropic = "^0.25.8"
24
24
  openai = "^1.60.1"
25
25
  google-genai = "^1.5.0"
26
26
 
File without changes
File without changes