Getting `Invalid tool type` error when trying to create tool with Gemini

 GOOGLE_API_KEY=os.environ.get("GOOGLE_API_KEY")

llm = LLM(
    model="gemini/gemini-1.5-flash",
    api_key=GOOGLE_API_KEY
)

csv_search_tool = CSVSearchTool(
    file_path='IPL_Schedule.xlsx',
    name="CSVSearchTool",
    description="CSV Search tool",
    config=dict(
        llm=dict(
            provider="google",
            config=dict(
                model="gemini/gemini-1.5-flash"
            ),
        ),
        embedder=dict(
            provider="google",
            config=dict(
                model="gemini/gemini-1.5-flash",
                task_type="retrival_document",
            ),
        ),
    )
)

Complete error:

Value error, Invalid tool type: <class ‘tuple’>. Tool must be an instance of BaseTool or an object with ‘name’, ‘func’, and ‘description’ attributes. [type=value_error, input_value=CSVSearchTool(name='CSVSe… ‘retrival_document’}}}), input_type=CSVSearchTool]

@Aditya_Agarwal : I too faced similar issue, I have tried to define the customtool by having BaseTool Inherited

Like this one

from crewai.tools import BaseTool
from langchain_community.agent_toolkits.file_management.toolkit import FileManagementToolkit

class LangFileManagementTools(BaseTool):
name: str = “CustomReadFileTool”
description: str = “Useful for search-based queries. Use this to find current information about markets, companies, and trends.”

def _run(self) -> [BaseTool]:
    """
    
    :return:
    """
    return FileManagementToolkit(root_dir='workdir',  selected_tools=["read_file", "list_directory"]).get_tools()

It is like a customTool but it didn’t work properly