2023-05-16 17:24:06 +03:00
|
|
|
from .common import process_file
|
|
|
|
from langchain.document_loaders import Docx2txtLoader
|
|
|
|
|
2023-05-17 13:12:52 +03:00
|
|
|
def process_docx(vector_store, file, stats_db):
|
|
|
|
return process_file(vector_store, file, Docx2txtLoader, ".docx", stats_db=stats_db)
|