mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-25 20:32:11 +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,
|
||
|
)
|