mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-26 04:42:31 +03:00
8 lines
257 B
Python
8 lines
257 B
Python
from .common import process_file
|
|
from langchain.document_loaders import TextLoader
|
|
from fastapi import UploadFile
|
|
|
|
|
|
async def process_txt(file: UploadFile, enable_summarization):
|
|
return await process_file(file, TextLoader, ".txt", enable_summarization)
|