mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 09:32:22 +03:00
20 lines
454 B
Python
20 lines
454 B
Python
from langchain.document_loaders import UnstructuredExcelLoader
|
|
from models.files import File
|
|
|
|
from .common import process_file
|
|
|
|
|
|
def process_xlsx(
|
|
file: File,
|
|
enable_summarization,
|
|
brain_id,
|
|
user_openai_api_key,
|
|
):
|
|
return process_file(
|
|
file=file,
|
|
loader_class=UnstructuredExcelLoader,
|
|
enable_summarization=enable_summarization,
|
|
brain_id=brain_id,
|
|
user_openai_api_key=user_openai_api_key,
|
|
)
|