Spaces:
Running
Running
File size: 250 Bytes
4e00df7 |
1 2 3 4 5 6 |
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)
|