chatbot / controllers /ingest_file_controller.py
dwijverma2's picture
Upload folder using huggingface_hub
f7e9181 verified
from fastapi import UploadFile
from app.parser import parse_doc
async def ingest_file_controller(file: UploadFile):
blocks = await parse_doc(file)
return