Releases: crewAIInc/crewAI
Releases · crewAIInc/crewAI
v0.11.1
- It fixes a bug on the tool usage logic that was early caching the result even if there was an error on the usage, preventing it from using the tool again.
- It will also print any error message in red allowing the user to understand what was the problem with the tool.
v0.11.0
- Ability to set
function_calling_llm
on both the entire crew and individual agents - Some early attempts on cost reduction
- Improving function calling for tools
- Updates docs
v0.10.0
- Ability to get
full_ouput
from crew kickoff with all tasks outputs - Ability to set
step_callback
function for both Agents and Crews so you can get all intermediate steps - Remembering Agent of the expected format after certain number of tool usages.
- New tool usage internals now using json, unlocking tools with multiple arguments
- Refactoring overall delegation logic, now way more reliable
- Fixed
max_inter
bug now properly forcing llm to answer as it gets to that - Rebuilt caching structure, making sure multiple agents can use the same cache
- Refactoring Task repeated usage prevention logic
- Removing now unnecessary
CrewAgentOutputParser
- Opt-in to share complete crew related data with the crewAI team
- Overall Docs update
v0.5.5
- Overall doc + readme improvements
- Fixing RPM controller being set unnecessarily
- Adding early stage anonymous telemetry for lib improvement
v0.5.3
- quick Fix for hierarchical manager
v0.5.2
- Adding
manager_llm
for hierarchical process - Improving
max_inter
andmax_rpm
logic - Updating README and Docs
v0.5.0
This new version bring a lot of new features and improvements to the library.
Features
- Adding Task Callbacks.
- Adding support for Hierarchical process.
- Adding ability to references specific tasks in another task.
- Adding ability to parallel task execution.
Improvements
- Revamping Max Iterations and Max Requests per Minute.
- Developer experience improvements, docstrings and such.
- Small improvements and TYPOs.
- Fix static typing errors.
- Updated README and Docs.
New Contributors
- @prabha-git made their first contribution in #168
- @scott------ made their first contribution in #161
- @EliadCohen made their first contribution in #191
- @itlackey made their first contribution in #188
- @gvieira made their first contribution in #187
- @ilyasudakov made their first contribution in #210
v0.1.32
- Moving to LangChain 0.1.0
- Improving Prompts
- Adding ability to limit maximum number of iterations for an agent
- Adding ability to Request Per Minute throttling for both Agents and Crews
- Adding initial support for translations
- Adding Greek translation
- Improve code readability
- Starting new documentation with mkdocs
v0.1.23
- Many Reliability improvements
- Prompt changes
- Initial changes for supporting multiple languages
- Fixing bug on task repeated execution
- Better execution error handling
- Updating READMe
v0.1.14
- Adding tool caching a loop execution prevention. (@joaomdmoura)
- Adding more guidelines for Agent delegation. (@joaomdmoura)
- Updating to use new openai lib version. (@joaomdmoura)
- Adding verbose levels to the logger. (@joaomdmoura)
- Removing WIP code. (@joaomdmoura)
- A lot of developer quality of life improvements (Special thanks to @greysonlalonde).
- Updating to pydantic v2 (Special thanks to @greysonlalonde as well).