diff --git a/lib/crewai-files/src/crewai_files/__init__.py b/lib/crewai-files/src/crewai_files/__init__.py index 33db66b65..b7fb93452 100644 --- a/lib/crewai-files/src/crewai_files/__init__.py +++ b/lib/crewai-files/src/crewai_files/__init__.py @@ -152,4 +152,4 @@ __all__ = [ "wrap_file_source", ] -__version__ = "1.10.1" +__version__ = "1.10.2a1" diff --git a/lib/crewai-tools/pyproject.toml b/lib/crewai-tools/pyproject.toml index 17b7c71b5..eecf196cc 100644 --- a/lib/crewai-tools/pyproject.toml +++ b/lib/crewai-tools/pyproject.toml @@ -11,7 +11,7 @@ dependencies = [ "pytube~=15.0.0", "requests~=2.32.5", "docker~=7.1.0", - "crewai==1.10.1", + "crewai==1.10.2a1", "tiktoken~=0.8.0", "beautifulsoup4~=4.13.4", "python-docx~=1.2.0", diff --git a/lib/crewai-tools/src/crewai_tools/__init__.py b/lib/crewai-tools/src/crewai_tools/__init__.py index aab05fed6..ec3fc64b5 100644 --- a/lib/crewai-tools/src/crewai_tools/__init__.py +++ b/lib/crewai-tools/src/crewai_tools/__init__.py @@ -309,4 +309,4 @@ __all__ = [ "ZapierActionTools", ] -__version__ = "1.10.1" +__version__ = "1.10.2a1" diff --git a/lib/crewai-tools/tool.specs.json b/lib/crewai-tools/tool.specs.json index 4e1a0ca5f..081c54444 100644 --- a/lib/crewai-tools/tool.specs.json +++ b/lib/crewai-tools/tool.specs.json @@ -5664,10 +5664,6 @@ "title": "Bucket Name", "type": "string" }, - "cluster": { - "description": "An instance of the Couchbase Cluster connected to the desired Couchbase server.", - "title": "Cluster" - }, "collection_name": { "description": "The name of the Couchbase collection to search", "title": "Collection Name", @@ -5716,7 +5712,6 @@ } }, "required": [ - "cluster", "collection_name", "scope_name", "bucket_name", @@ -14460,13 +14455,9 @@ "properties": { "config": { "$ref": "#/$defs/OxylabsAmazonProductScraperConfig" - }, - "oxylabs_api": { - "title": "Oxylabs Api" } }, "required": [ - "oxylabs_api", "config" ], "title": "OxylabsAmazonProductScraperTool", @@ -14689,13 +14680,9 @@ "properties": { "config": { "$ref": "#/$defs/OxylabsAmazonSearchScraperConfig" - }, - "oxylabs_api": { - "title": "Oxylabs Api" } }, "required": [ - "oxylabs_api", "config" ], "title": "OxylabsAmazonSearchScraperTool", @@ -14931,13 +14918,9 @@ "properties": { "config": { "$ref": "#/$defs/OxylabsGoogleSearchScraperConfig" - }, - "oxylabs_api": { - "title": "Oxylabs Api" } }, "required": [ - "oxylabs_api", "config" ], "title": "OxylabsGoogleSearchScraperTool", @@ -15121,13 +15104,9 @@ "properties": { "config": { "$ref": "#/$defs/OxylabsUniversalScraperConfig" - }, - "oxylabs_api": { - "title": "Oxylabs Api" } }, "required": [ - "oxylabs_api", "config" ], "title": "OxylabsUniversalScraperTool", @@ -23229,26 +23208,6 @@ "description": "The Tavily API key. If not provided, it will be loaded from the environment variable TAVILY_API_KEY.", "title": "Api Key" }, - "async_client": { - "anyOf": [ - {}, - { - "type": "null" - } - ], - "default": null, - "title": "Async Client" - }, - "client": { - "anyOf": [ - {}, - { - "type": "null" - } - ], - "default": null, - "title": "Client" - }, "extract_depth": { "default": "basic", "description": "The depth of extraction. 'basic' for basic extraction, 'advanced' for advanced extraction.", @@ -23384,26 +23343,6 @@ "description": "The Tavily API key. If not provided, it will be loaded from the environment variable TAVILY_API_KEY.", "title": "Api Key" }, - "async_client": { - "anyOf": [ - {}, - { - "type": "null" - } - ], - "default": null, - "title": "Async Client" - }, - "client": { - "anyOf": [ - {}, - { - "type": "null" - } - ], - "default": null, - "title": "Client" - }, "days": { "default": 7, "description": "The number of days to search back.", diff --git a/lib/crewai/pyproject.toml b/lib/crewai/pyproject.toml index b0d70f388..d9e7309fa 100644 --- a/lib/crewai/pyproject.toml +++ b/lib/crewai/pyproject.toml @@ -53,7 +53,7 @@ Repository = "https://github.com/crewAIInc/crewAI" [project.optional-dependencies] tools = [ - "crewai-tools==1.10.1", + "crewai-tools==1.10.2a1", ] embeddings = [ "tiktoken~=0.8.0" diff --git a/lib/crewai/src/crewai/__init__.py b/lib/crewai/src/crewai/__init__.py index 46c1f8f95..8c1a96382 100644 --- a/lib/crewai/src/crewai/__init__.py +++ b/lib/crewai/src/crewai/__init__.py @@ -40,7 +40,7 @@ def _suppress_pydantic_deprecation_warnings() -> None: _suppress_pydantic_deprecation_warnings() -__version__ = "1.10.1" +__version__ = "1.10.2a1" _telemetry_submitted = False diff --git a/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml b/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml index de884767c..29d05e29c 100644 --- a/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml +++ b/lib/crewai/src/crewai/cli/templates/crew/pyproject.toml @@ -5,7 +5,7 @@ description = "{{name}} using crewAI" authors = [{ name = "Your Name", email = "you@example.com" }] requires-python = ">=3.10,<3.14" dependencies = [ - "crewai[tools]==1.10.1" + "crewai[tools]==1.10.2a1" ] [project.scripts] diff --git a/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml b/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml index cfc68f74b..d13fec343 100644 --- a/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml +++ b/lib/crewai/src/crewai/cli/templates/flow/pyproject.toml @@ -5,7 +5,7 @@ description = "{{name}} using crewAI" authors = [{ name = "Your Name", email = "you@example.com" }] requires-python = ">=3.10,<3.14" dependencies = [ - "crewai[tools]==1.10.1" + "crewai[tools]==1.10.2a1" ] [project.scripts] diff --git a/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml b/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml index 0e8c784f0..060a1cdf3 100644 --- a/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml +++ b/lib/crewai/src/crewai/cli/templates/tool/pyproject.toml @@ -5,7 +5,7 @@ description = "Power up your crews with {{folder_name}}" readme = "README.md" requires-python = ">=3.10,<3.14" dependencies = [ - "crewai[tools]==1.10.1" + "crewai[tools]==1.10.2a1" ] [tool.crewai] diff --git a/lib/devtools/src/crewai_devtools/__init__.py b/lib/devtools/src/crewai_devtools/__init__.py index 4c45a4486..cfec2977c 100644 --- a/lib/devtools/src/crewai_devtools/__init__.py +++ b/lib/devtools/src/crewai_devtools/__init__.py @@ -1,3 +1,3 @@ """CrewAI development tools.""" -__version__ = "1.10.1" +__version__ = "1.10.2a1"