From 04d96034495eb7cd658bdb171c9d5bc464ca70b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Mon, 11 Mar 2024 22:55:56 -0300 Subject: [PATCH] cutting new version --- .pre-commit-config.yaml | 8 +------- pyproject.toml | 2 +- src/crewai/cli/templates/crew.py | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 631cb522d3..a715e9c9e1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,10 +12,4 @@ repos: hooks: - id: isort name: isort (python) - args: ["--profile", "black", "--filter-files"] - - - repo: https://github.com/PyCQA/autoflake - rev: v2.2.1 - hooks: - - id: autoflake - args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variables', '--ignore-init-module-imports'] + args: ["--profile", "black", "--filter-files"] \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 6336baee6f..e05ddc9486 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "crewai" -version = "0.22.3" +version = "0.22.4" description = "Cutting-edge framework for orchestrating role-playing, autonomous AI agents. By fostering collaborative intelligence, CrewAI empowers agents to work together seamlessly, tackling complex tasks." authors = ["Joao Moura "] readme = "README.md" diff --git a/src/crewai/cli/templates/crew.py b/src/crewai/cli/templates/crew.py index 30e1cd9ee0..f139b44e14 100644 --- a/src/crewai/cli/templates/crew.py +++ b/src/crewai/cli/templates/crew.py @@ -2,7 +2,7 @@ from crewai.project import CrewBase, agent, crew, task # Uncomment the following line to use an example of a custom tool -# from .tools.custom_tool import MyCustomTool +# from {{folder_name}}.tools.custom_tool import MyCustomTool # Check our tools documentations for more information on how to use them # from crewai_tools import SerperDevTool