mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 01:21:48 +03:00
6 lines
221 B
Python
6 lines
221 B
Python
from .common import process_file
|
|
from langchain.document_loaders import UnstructuredMarkdownLoader
|
|
|
|
def process_markdown(vector_store, file):
|
|
return process_file(vector_store, file, UnstructuredMarkdownLoader, ".md")
|