I am transferring several photos from the “compression” element, from 2 to 10 photos, how do I write the command in the “Input Data Field Name” field in the “openai” element so that all images are accepted in the openai analyze image in order?
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
Hi @walker,
You can reference them as a comma-separated list of file names (e.g. “file_0, file_1”) and to do that, you can use expressions:
{{ Object.keys($binary).join(', ') }}
Here’s an example workflow with dummy image data:
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.