-
-
Notifications
You must be signed in to change notification settings - Fork 144
Open
Description
I am trying to create an endpoint where multiple files can be uploaded to. Unfortunately that is not possible right now as it is not parsing to a list[UploadFile].
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
filename:
type: array
items:
type: string
format: binaryI expected:
def post_ingestion_start_pipeline(self, file: list[UploadFile]) -> None:Instead I got:
def post_ingestion_start_pipeline(self, file: UploadFile) -> None:Metadata
Metadata
Assignees
Labels
No labels