diff --git a/src/crewai/tools/cache_tools.py b/src/crewai/tools/cache_tools.py index a8e6dbf3c2..c1aad6a89b 100644 --- a/src/crewai/tools/cache_tools.py +++ b/src/crewai/tools/cache_tools.py @@ -8,7 +8,7 @@ class CacheTools(BaseModel): """Default tools to hit the cache.""" model_config = ConfigDict(arbitrary_types_allowed=True) - name: str = "Hit Cache" + name: str = "hit cache" cache_handler: CacheHandler = Field( description="Cache Handler for the crew", default=CacheHandler(),