OpenAI connector multi-document submission

0
I see that the default OpenAI connector allows for 1 pdf attachment per post. I need to submit multiple documents (preferably more than just pdf but I can accept that limitation for now if needed). I can successfully build the FileCollection and get it working correctly for Bedrock/Claude, but I get 400 errors when I do similar for OpenAI. Has anyone solved this or is it a limitation in the connector?
asked
1 answers
0

Answering my own question sort of. I ended up building a process that submits each file and then submits the chat token. Also figured out that since it only accepts PDF's, it will only be able to extract text if that layer is still there, like a pdf created from a .docx, and if the text is embedded in an image it can't be scraped. You'll have to push it through an OCR solution first. Bedrock has that capability so I find it easier to accomplish a multi-doc analysis there vs the Azure OpenAI connector.

answered