diff --git a/phi/llm/tool/__init__.py b/phi/llm/tool/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/phi/llm/tool/base.py b/phi/llm/tool/base.py deleted file mode 100644 index c32e4f7de..000000000 --- a/phi/llm/tool/base.py +++ /dev/null @@ -1,12 +0,0 @@ -from typing import Any, Dict -from pydantic import BaseModel - - -class BaseTool(BaseModel): - """Model for LLM Tools""" - - # The type of tool - type: str - - def to_dict(self) -> Dict[str, Any]: - return self.model_dump(exclude_none=True)