Spaces:
Sleeping
Sleeping
File size: 1,631 Bytes
c96b98a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | from pathlib import Path
from typing import List, Union
from phi.document.base import Document
from phi.document.reader.base import Reader
from phi.utils.log import logger
import io
try:
from docx import Document as DocxDocument # type: ignore
except ImportError:
raise ImportError("docx is not installed. Please install it using `pip install python-docx`")
class DocxReader(Reader):
"""Reader for Doc/Docx files"""
def read(self, file: Union[Path, io.BytesIO]) -> List[Document]:
if not file:
raise ValueError("No file provided")
try:
if isinstance(file, Path):
logger.info(f"Reading: {file}")
docx_document = DocxDocument(file)
doc_name = file.stem
else: # Handle file-like object from upload
logger.info(f"Reading uploaded file: {file.name}")
docx_document = DocxDocument(file)
doc_name = file.name.split(".")[0]
doc_content = "\n\n".join([para.text for para in docx_document.paragraphs])
documents = [
Document(
name=doc_name,
id=doc_name,
content=doc_content,
)
]
if self.chunk:
chunked_documents = []
for document in documents:
chunked_documents.extend(self.chunk_document(document))
return chunked_documents
return documents
except Exception as e:
logger.error(f"Error reading file: {e}")
return []
|