mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-15 17:43:03 +03:00
e53bc6807d
* 🗃️ add new tables for multiple brains * 🗑️ remove date input from fetch_user_id_from_credentials * ✨ new /brain endpoints * ♻️ refactor backend utils by splitting it into files * 💡 comments for next actions to update /upload
10 lines
402 B
Python
10 lines
402 B
Python
from fastapi import UploadFile
|
|
from langchain.document_loaders import UnstructuredMarkdownLoader
|
|
from utils.common import CommonsDep
|
|
|
|
from .common import process_file
|
|
|
|
|
|
def process_markdown(commons: CommonsDep, file: UploadFile, enable_summarization, user, user_openai_api_key):
|
|
return process_file(commons, file, UnstructuredMarkdownLoader, ".md", enable_summarization, user, user_openai_api_key)
|