when trying to batch upload files, it should return the list of uploaded documents but only does for the first one
curl http://localhost:8888/v1/files/bulk --form 'listIds=13,12}' --form files=@file.pdf --form files=@file.pdf
gives (jq version)
{
"status": "success",
"message": "Successfully processed and indexed 1 documents",
"documents": [
{
"fileId": "13",
"text": "{0}-----------------------------------------------..."
}
]
}
when trying to batch upload files, it should return the list of uploaded documents but only does for the first one
curl http://localhost:8888/v1/files/bulk --form 'listIds=13,12}' --form files=@file.pdf --form files=@file.pdfgives (
jqversion){ "status": "success", "message": "Successfully processed and indexed 1 documents", "documents": [ { "fileId": "13", "text": "{0}-----------------------------------------------..." } ] }