mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-28 05:13:57 +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")
|