diff --git a/pyproject.toml b/pyproject.toml index 4a9343697..26fe4a6b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "crewai" -version = "0.98.0" +version = "0.100.0" 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." readme = "README.md" requires-python = ">=3.10,<3.13" diff --git a/src/crewai/__init__.py b/src/crewai/__init__.py index d53537c15..dcef6463e 100644 --- a/src/crewai/__init__.py +++ b/src/crewai/__init__.py @@ -14,7 +14,7 @@ warnings.filterwarnings( category=UserWarning, module="pydantic.main", ) -__version__ = "0.98.0" +__version__ = "0.100.0" __all__ = [ "Agent", "Crew", diff --git a/src/crewai/cli/templates/crew/pyproject.toml b/src/crewai/cli/templates/crew/pyproject.toml index a3d13019d..d9308221e 100644 --- a/src/crewai/cli/templates/crew/pyproject.toml +++ b/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.13" dependencies = [ - "crewai[tools]>=0.98.0,<1.0.0" + "crewai[tools]>=0.100.0,<1.0.0" ] [project.scripts] diff --git a/src/crewai/cli/templates/flow/pyproject.toml b/src/crewai/cli/templates/flow/pyproject.toml index 8aa7978ed..04355f14c 100644 --- a/src/crewai/cli/templates/flow/pyproject.toml +++ b/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.13" dependencies = [ - "crewai[tools]>=0.98.0,<1.0.0", + "crewai[tools]>=0.100.0,<1.0.0", ] [project.scripts] diff --git a/src/crewai/cli/templates/tool/pyproject.toml b/src/crewai/cli/templates/tool/pyproject.toml index 343cbe203..027a92e25 100644 --- a/src/crewai/cli/templates/tool/pyproject.toml +++ b/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.13" dependencies = [ - "crewai[tools]>=0.98.0" + "crewai[tools]>=0.100.0" ] [tool.crewai] diff --git a/src/crewai/utilities/evaluators/task_evaluator.py b/src/crewai/utilities/evaluators/task_evaluator.py index f7d543ae4..acfdceed6 100644 --- a/src/crewai/utilities/evaluators/task_evaluator.py +++ b/src/crewai/utilities/evaluators/task_evaluator.py @@ -96,9 +96,9 @@ class TaskEvaluator: final_aggregated_data = "" for _, data in output_training_data.items(): final_aggregated_data += ( - f"Initial Output:\n{data['initial_output']}\n\n" - f"Human Feedback:\n{data['human_feedback']}\n\n" - f"Improved Output:\n{data['improved_output']}\n\n" + f"Initial Output:\n{data.get('initial_output', '')}\n\n" + f"Human Feedback:\n{data.get('human_feedback', '')}\n\n" + f"Improved Output:\n{data.get('improved_output', '')}\n\n" ) evaluation_query = ( diff --git a/uv.lock b/uv.lock index b925fd95f..41bbd7a64 100644 --- a/uv.lock +++ b/uv.lock @@ -649,7 +649,7 @@ wheels = [ [[package]] name = "crewai" -version = "0.98.0" +version = "0.100.0" source = { editable = "." } dependencies = [ { name = "appdirs" },