From 94029017c3a689e25c586eac9547deed9575eb1a Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Wed, 3 Sep 2025 18:17:19 -0400 Subject: [PATCH] refactor: remove __all__ from internal cache module - Remove __all__ export as this is an internal module - Add module docstring describing package purpose --- src/crewai/agents/cache/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/crewai/agents/cache/__init__.py b/src/crewai/agents/cache/__init__.py index 6b4d20081..86a3c87cc 100644 --- a/src/crewai/agents/cache/__init__.py +++ b/src/crewai/agents/cache/__init__.py @@ -1,3 +1,5 @@ -from .cache_handler import CacheHandler +"""Internal caching utilities for agent tool execution. -__all__ = ["CacheHandler"] +This package provides caching mechanisms for storing and retrieving +tool execution results to avoid redundant operations. +"""