quivr/streamlit-demo/loaders/txt.py

5 lines
212 B
Python
Raw Normal View History

2023-05-13 00:22:21 +03:00
from .common import process_file
2023-05-13 00:05:31 +03:00
from langchain.document_loaders import TextLoader
2023-05-17 13:12:52 +03:00
def process_txt(vector_store, file,stats_db):
return process_file(vector_store, file, TextLoader, ".txt", stats_db=stats_db)