mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 16:18:30 +00:00
Adding long term, short term, entity and contextual memory
This commit is contained in:
@@ -163,8 +163,6 @@ class ToolUsage:
|
||||
|
||||
if self.tools_handler:
|
||||
should_cache = True
|
||||
print("FORA")
|
||||
print(tool)
|
||||
original_tool = next(
|
||||
(ot for ot in self.original_tools if ot.name == tool.name), None
|
||||
)
|
||||
@@ -172,8 +170,6 @@ class ToolUsage:
|
||||
hasattr(original_tool, "cache_function")
|
||||
and original_tool.cache_function
|
||||
):
|
||||
print("CARALHOOOO")
|
||||
print(original_tool.cache_function)
|
||||
should_cache = original_tool.cache_function(
|
||||
calling.arguments, result
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user