mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-21 13:58:15 +00:00
* Refactoring task cache to be a tool The previous implementation of the task caching system was early exiting the agent executor due to the fact it was returning an AgentFinish object. This now refactors it to use a cache specific tool that is dynamically added and forced into the agent in case of a task execution that was already executed with the same input.
5 lines
169 B
Python
5 lines
169 B
Python
from .cache_handler import CacheHandler
|
|
from .executor import CrewAgentExecutor
|
|
from .output_parser import CrewAgentOutputParser
|
|
from .tools_handler import ToolsHandler
|