vhr1007 commited on
Commit
9af472a
·
verified ·
1 Parent(s): 967c3b7

Update-xlsx

Browse files
Files changed (1) hide show
  1. utils/embedding_utils.py +1 -1
utils/embedding_utils.py CHANGED
@@ -59,7 +59,7 @@ def read_document(file_content: bytes, file_id: int, file_format: str) -> str:
59
  text_content = extract_text_from_docx(file_path)
60
  elif file_format.lower() == 'pdf':
61
  text_content = extract_text_from_pdf(file_path)
62
- elif file_format.lower() in ['txt', 'md', 'csv']:
63
  reader = SimpleDirectoryReader(input_files=[file_path])
64
  documents = reader.load_data()
65
  text_content = documents[0].text if documents else ''
 
59
  text_content = extract_text_from_docx(file_path)
60
  elif file_format.lower() == 'pdf':
61
  text_content = extract_text_from_pdf(file_path)
62
+ elif file_format.lower() in ['txt', 'md', 'csv', 'xlsx']:
63
  reader = SimpleDirectoryReader(input_files=[file_path])
64
  documents = reader.load_data()
65
  text_content = documents[0].text if documents else ''