-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NYC-142 - Outdated openai library causing issues (#224)
- Loading branch information
1 parent
642d193
commit 46f957e
Showing
3 changed files
with
97 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .promptlayer import AsyncPromptLayer, PromptLayer | ||
|
||
__version__ = "1.0.36" | ||
__version__ = "1.0.37" | ||
__all__ = ["PromptLayer", "AsyncPromptLayer", "__version__"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "promptlayer" | ||
version = "1.0.36" | ||
version = "1.0.37" | ||
description = "PromptLayer is a platform for prompt engineering and tracks your LLM requests." | ||
authors = ["Magniv <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -21,9 +21,9 @@ langchain = "^0.0.260" | |
behave = "^1.2.6" | ||
pytest = "^8.2.0" | ||
pytest-asyncio = "^0.23.6" | ||
openai = "^1.26.0" | ||
anyio = "^4.3.0" | ||
anthropic = "^0.25.8" | ||
openai = "^1.60.1" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
|