Skip to content

Releases: joaomdmoura/crewAI

v0.14.0

22 Feb 21:09
Compare
Choose a tag to compare

All improvements from the v0.14.0rc.

  • Support to export json and pydantic from opensource models

v0.14.0rc

20 Feb 20:59
Compare
Choose a tag to compare
  • Adding support to crewai-tools
  • Adding support to format tasks output as Pydantic Objects Or JSON
  • Adding support to save tasks ouput to a file
  • Improved reliability for inter agent delegation
  • Revamp tools usage logic to proper use function calling
  • Updating internal prompts
  • Supporting tools with no arguments
  • Bug fixes

v0.11.2

16 Feb 02:50
Compare
Choose a tag to compare
  • Adding further error logging so users understand what is happening if a tool fails

v0.11.1

16 Feb 02:25
Compare
Choose a tag to compare
  • 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

13 Feb 11:36
Compare
Choose a tag to compare
  • 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

10 Feb 21:20
Compare
Choose a tag to compare
  • 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

08 Feb 07:38
Compare
Choose a tag to compare
  • Overall doc + readme improvements
  • Fixing RPM controller being set unnecessarily
  • Adding early stage anonymous telemetry for lib improvement

v0.5.3

07 Feb 10:16
Compare
Choose a tag to compare
  • quick Fix for hierarchical manager

v0.5.2

06 Feb 08:08
Compare
Choose a tag to compare
  • Adding manager_llm for hierarchical process
  • Improving max_inter and max_rpm logic
  • Updating README and Docs

v0.5.0

04 Feb 20:13
Compare
Choose a tag to compare

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