mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 11:21:35 +03:00
10 lines
380 B
Python
10 lines
380 B
Python
from fastapi import UploadFile
|
|
from langchain.document_loaders import TextLoader
|
|
from models.settings 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)
|