From 32a8751449fd8fe2be679078a1b6ebd2d78f9dca Mon Sep 17 00:00:00 2001 From: YBubu Date: Tue, 25 Feb 2025 15:00:29 +0000 Subject: [PATCH 1/2] Set API call timeout to 180 --- workflowai/core/client/_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflowai/core/client/_api.py b/workflowai/core/client/_api.py index be1d3cf..5f09641 100644 --- a/workflowai/core/client/_api.py +++ b/workflowai/core/client/_api.py @@ -35,7 +35,7 @@ async def _client(self, run: bool = False): "Authorization": f"Bearer {self.api_key}", **source_headers, }, - timeout=120.0, + timeout=180.0, ) as client: try: yield client From 63736145692131e42a3a74acbfb1100423a314a0 Mon Sep 17 00:00:00 2001 From: YBubu Date: Tue, 25 Feb 2025 15:00:40 +0000 Subject: [PATCH 2/2] bump version to dev17 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8b39b48..f6b5f26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "workflowai" -version = "0.6.0.dev16" +version = "0.6.0.dev17" description = "" authors = ["Guillaume Aquilina "] readme = "README.md"