mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-28 05:13:57 +03:00
e0de23e24d
* feat(llm): update
* feat(singlebrain): added new table with user-id
* feat(user): get user from email
* feat(user_id): added search
* ✨ add user_id to most endpoints
* docs(readme): new script
---------
Co-authored-by: gozineb <zinebe@theodo.fr>
9 lines
268 B
Python
9 lines
268 B
Python
from fastapi import UploadFile
|
|
from langchain.document_loaders import Docx2txtLoader
|
|
|
|
from .common import process_file
|
|
|
|
|
|
def process_docx(file: UploadFile, enable_summarization, user):
|
|
return process_file(file, Docx2txtLoader, ".docx", enable_summarization, user)
|