quivr/loaders/txt.py
2023-05-12 23:22:21 +02:00

5 lines
184 B
Python

from .common import process_file
from langchain.document_loaders import TextLoader
def process_txt(vector_store, file):
return process_file(vector_store, file, TextLoader, ".txt")