Skip to content

Commit c310044

Browse files
committed
preparing new version
1 parent 5263df2 commit c310044

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "crewai"
3-
version = "0.98.0"
3+
version = "0.100.0"
44
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."
55
readme = "README.md"
66
requires-python = ">=3.10,<3.13"

src/crewai/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
category=UserWarning,
1515
module="pydantic.main",
1616
)
17-
__version__ = "0.98.0"
17+
__version__ = "0.100.0"
1818
__all__ = [
1919
"Agent",
2020
"Crew",

src/crewai/cli/templates/crew/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
55
authors = [{ name = "Your Name", email = "you@example.com" }]
66
requires-python = ">=3.10,<3.13"
77
dependencies = [
8-
"crewai[tools]>=0.98.0,<1.0.0"
8+
"crewai[tools]>=0.100.0,<1.0.0"
99
]
1010

1111
[project.scripts]

src/crewai/cli/templates/flow/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
55
authors = [{ name = "Your Name", email = "you@example.com" }]
66
requires-python = ">=3.10,<3.13"
77
dependencies = [
8-
"crewai[tools]>=0.98.0,<1.0.0",
8+
"crewai[tools]>=0.100.0,<1.0.0",
99
]
1010

1111
[project.scripts]

src/crewai/cli/templates/tool/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Power up your crews with {{folder_name}}"
55
readme = "README.md"
66
requires-python = ">=3.10,<3.13"
77
dependencies = [
8-
"crewai[tools]>=0.98.0"
8+
"crewai[tools]>=0.100.0"
99
]
1010

1111
[tool.crewai]

src/crewai/utilities/evaluators/task_evaluator.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ def evaluate_training_data(
9696
final_aggregated_data = ""
9797
for _, data in output_training_data.items():
9898
final_aggregated_data += (
99-
f"Initial Output:\n{data['initial_output']}\n\n"
100-
f"Human Feedback:\n{data['human_feedback']}\n\n"
101-
f"Improved Output:\n{data['improved_output']}\n\n"
99+
f"Initial Output:\n{data.get('initial_output', '')}\n\n"
100+
f"Human Feedback:\n{data.get('human_feedback', '')}\n\n"
101+
f"Improved Output:\n{data.get('improved_output', '')}\n\n"
102102
)
103103

104104
evaluation_query = (

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)