made base file knowledge source an abstract class

This commit is contained in:
Lorenze Jay
2024-12-03 10:57:58 -08:00
parent 8d7b0de732
commit c1c79b1f8f
7 changed files with 11 additions and 11 deletions

View File

@@ -8,7 +8,6 @@ class ExcelKnowledgeSource(BaseFileKnowledgeSource):
def load_content(self) -> Dict[Path, str]:
"""Load and preprocess Excel file content."""
super().load_content() # Validate the file path
pd = self._import_dependencies()
if isinstance(self.file_path, list):