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"