mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-28 05:13:57 +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
377 B
Python
10 lines
377 B
Python
from fastapi import UploadFile
|
|
from langchain.document_loaders import NotebookLoader
|
|
from utils.common import CommonsDep
|
|
|
|
from .common import process_file
|
|
|
|
|
|
def process_ipnyb(commons: CommonsDep, file: UploadFile, enable_summarization, user, user_openai_api_key):
|
|
return process_file(commons, file, NotebookLoader, "ipynb", enable_summarization, user, user_openai_api_key)
|