mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 09:32:22 +03:00
10 lines
371 B
Python
10 lines
371 B
Python
from langchain.document_loaders import Docx2txtLoader
|
|
from models.files import File
|
|
from models.settings import CommonsDep
|
|
|
|
from .common import process_file
|
|
|
|
|
|
def process_docx(commons: CommonsDep, file: File, enable_summarization, brain_id, user_openai_api_key):
|
|
return process_file(commons, file, Docx2txtLoader, enable_summarization, brain_id, user_openai_api_key)
|