File size: 168 Bytes
f7e9181
 
 
 
 
 
1
2
3
4
5
6
from fastapi import UploadFile
from app.parser import parse_doc

async def ingest_file_controller(file: UploadFile):
    blocks = await parse_doc(file)
    return