From 5d01917450e83048a56ef118c233916e5255d8f4 Mon Sep 17 00:00:00 2001 From: m-naveed-ashraf Date: Tue, 18 Feb 2025 20:59:27 +0500 Subject: [PATCH] Bump version to 1.0.39 and increase default timeout to 3600 seconds --- promptlayer/__init__.py | 2 +- promptlayer/utils.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/promptlayer/__init__.py b/promptlayer/__init__.py index f01624b..e51bd75 100644 --- a/promptlayer/__init__.py +++ b/promptlayer/__init__.py @@ -1,4 +1,4 @@ from .promptlayer import AsyncPromptLayer, PromptLayer -__version__ = "1.0.38" +__version__ = "1.0.39" __all__ = ["PromptLayer", "AsyncPromptLayer", "__version__"] diff --git a/promptlayer/utils.py b/promptlayer/utils.py index d128d56..bb20fc4 100644 --- a/promptlayer/utils.py +++ b/promptlayer/utils.py @@ -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, diff --git a/pyproject.toml b/pyproject.toml index 5f5f4c1..9d48b14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "Apache-2.0"