mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-27 18:32:55 +03:00
10 lines
373 B
Python
10 lines
373 B
Python
from langchain.document_loaders import TextLoader
|
|
from models.files import File
|
|
from models.settings import CommonsDep
|
|
|
|
from .common import process_file
|
|
|
|
|
|
async def process_txt(commons: CommonsDep, file: File, enable_summarization, brain_id, user_openai_api_key):
|
|
return await process_file(commons, file, TextLoader, enable_summarization, brain_id,user_openai_api_key)
|