streamlit / loaders /markdown.py
RKP64's picture
Upload 20 files
0e1fbf7
raw
history blame contribute delete
250 Bytes
from .common import process_file
from langchain.document_loaders import UnstructuredMarkdownLoader
def process_markdown(vector_store, file, stats_db):
return process_file(vector_store, file, UnstructuredMarkdownLoader, ".md", stats_db=stats_db)