From 77ca746a7d6e5f59c01081e2af68ecb011d6285a Mon Sep 17 00:00:00 2001 From: Ankush Khanna Date: Fri, 20 Dec 2024 18:45:44 +0530 Subject: [PATCH] Reduce num_worker to 1 --- cohere/compass/clients/parser.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cohere/compass/clients/parser.py b/cohere/compass/clients/parser.py index 9fa3bc9..e8cd4b1 100644 --- a/cohere/compass/clients/parser.py +++ b/cohere/compass/clients/parser.py @@ -53,7 +53,7 @@ def __init__( metadata_config: MetadataConfig = MetadataConfig(), username: Optional[str] = None, password: Optional[str] = None, - num_workers: int = 4, + num_workers: int = 1, ): """ Initialize the CompassParserClient. diff --git a/pyproject.toml b/pyproject.toml index 4a606b5..d2e9e79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "compass-sdk" -version = "0.11.0" +version = "0.11.1" authors = [] description = "Compass SDK" readme = "README.md"