promptlayer 1.0.42__tar.gz → 1.0.44__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.
- {promptlayer-1.0.42 → promptlayer-1.0.44}/PKG-INFO +2 -1
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/__init__.py +1 -1
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/promptlayer_base.py +2 -2
- {promptlayer-1.0.42 → promptlayer-1.0.44}/pyproject.toml +2 -2
- {promptlayer-1.0.42 → promptlayer-1.0.44}/LICENSE +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/README.md +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/groups/__init__.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/groups/groups.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/promptlayer.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/promptlayer_mixins.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/span_exporter.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/templates.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/track/__init__.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/track/track.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/types/__init__.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/types/prompt_template.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/types/request_log.py +0 -0
- {promptlayer-1.0.42 → promptlayer-1.0.44}/promptlayer/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: promptlayer
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.44
|
|
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)
|
|
@@ -35,8 +35,8 @@ class PromptLayerBase(object):
|
|
|
35
35
|
or inspect.ismethod(attr)
|
|
36
36
|
or str(type(attr)) == "<class 'anthropic.resources.completions.Completions'>"
|
|
37
37
|
or str(type(attr)) == "<class 'anthropic.resources.completions.AsyncCompletions'>"
|
|
38
|
-
or str(type(attr)) == "<class 'anthropic.resources.messages.Messages'>"
|
|
39
|
-
or str(type(attr)) == "<class 'anthropic.resources.messages.AsyncMessages'>"
|
|
38
|
+
or str(type(attr)) == "<class 'anthropic.resources.messages.messages.Messages'>"
|
|
39
|
+
or str(type(attr)) == "<class 'anthropic.resources.messages.messages.AsyncMessages'>"
|
|
40
40
|
or re.match(r"<class 'openai\.resources.*'>", str(type(attr)))
|
|
41
41
|
)
|
|
42
42
|
):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "promptlayer"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.44"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|