Skip to content

Commit

Permalink
Bump version to 1.0.39 and increase default timeout to 3600 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Naveed-Ashraf committed Feb 18, 2025
1 parent 1430afb commit 2337fe0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion promptlayer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .promptlayer import AsyncPromptLayer, PromptLayer

__version__ = "1.0.38"
__version__ = "1.0.39"
__all__ = ["PromptLayer", "AsyncPromptLayer", "__version__"]
2 changes: 1 addition & 1 deletion promptlayer/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async def arun_workflow_request(
workflow_version_number: Optional[int] = None,
api_key: str,
return_all_outputs: Optional[bool] = False,
timeout: Optional[int] = 120,
timeout: Optional[int] = 3600,
):
payload = {
"input_variables": input_variables,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "promptlayer"
version = "1.0.38"
version = "1.0.39"
description = "PromptLayer is a platform for prompt engineering and tracks your LLM requests."
authors = ["Magniv <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 2337fe0

Please sign in to comment.