Resolve conflicts (#208)

This commit is contained in:
Deshraj Yadav
2023-07-10 21:50:05 -07:00
committed by GitHub
parent 6936d6983d
commit 9ca836520f
32 changed files with 396 additions and 207 deletions

View File

@@ -1,8 +1,9 @@
from langchain.document_loaders import Docx2txtLoader
class DocxFileLoader:
def load_data(self, url):
''' Load data from a .docx file. '''
"""Load data from a .docx file."""
loader = Docx2txtLoader(url)
output = []
data = loader.load()