This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Description
The BraveSearchTool module was importing the wrong name for the standard library’s datetime.
File: crewai_tools/tools/brave_search_tool/brave_search_tool.py
import datetime # Line 1 typo – misspelt and not a real module
…
datetime.now() # Line 13 raises AttributeError: 'datetime' has no attribute 'now'
The correct syntax should be
import datetime from datetime