quivr/backend/parsers/txt.py
Zineb El Bachiri e53bc6807d
Feat/multiple brains backend (#340)
* 🗃️ add new tables for multiple brains

* 🗑️ remove date input from fetch_user_id_from_credentials

*  new /brain endpoints

* ♻️ refactor backend utils by splitting it into files

* 💡 comments for next actions to update /upload
2023-06-16 23:36:53 +02:00

10 lines
377 B
Python

from fastapi import UploadFile
from langchain.document_loaders import TextLoader
from utils.common import CommonsDep
from .common import process_file
async def process_txt(commons: CommonsDep, file: UploadFile, enable_summarization, user, user_openai_api_key):
return await process_file(commons, file, TextLoader, ".txt", enable_summarization, user,user_openai_api_key)