What is wrong here? the name is “Arquivo” and even the assistant is telling me that “Arquivo” should be the name
Hey @Sistemas_Cybervault hope all is well.
Make sure there aren’t any extra spaces both in the field name for the file upload and in the input data field name field in the upload a file node.
Feel free to share your workflow too if you wish us to take a look.
its a bit messy as of the moment but the idea is for the form submission to send to OCR and be converted, then chatgpt does the prompt then it sents it to Trello
Why do you have connecting lines from the forrm submission to each of the nodes? The error is caused from form submission to upload where the form will never pass a binary called “Arquivo“, so to fix this delete the lines from the form to upload and create a card. Currently when the form is submitted, it’ll try to execute each node connected with a line from the form node
sorry I didnt really understood what were you trying to say, do I need to add a node before the upload a file? Or what do you mean by create a card?
I also was facing this similar issue few days ago, what i did used a merge node so it keeps waiting until all the previous nodes complete then you have the data and binary together which you can pass to the node . BTW ur current flow connection looking scary a bit.
you can acheive what u r trying to by using the stream lined process
Form Submission → OCR Space → Upload File to OpenAI → AI Validation → Create Trello Card
and if you trying to upload the file on trello as well, then for the binary thing you have to use a merge node before it and connect the form node and chatgpt as input to to and pass to trello,
I was saying your workflow is a bit of a mess. It will execute EACH of the lines you have connected. So your error is likely coming from line number 2. The form submits a binary file NOT called Arquivo. The binary is supposed to come from line 4. So to clean this up to work see workflow below. You should rather try and execute your nodes in serial
This should work:
sorry if this is a bit late but it still asks for the input data field name and I dont know what to put in there, ive changed the workflow in the same way you did
Please share your updated workflow in a code block so we can have a look
Let me have a look. In the mean time please go invalidate your API key which slipped into the workflow when you shared it for the OCR Space node. Best option is to create a Credential instead so you dont leak api keys.
The problem in your workflow is that the binary file is only available in the form node and not after the ocr space node was called.
Question, what is the purpose of uploading the file to OCR Space when you’re not doing anything with the information? Either take out that node or place it somewhere after the Chat GPT call.
Lastly, your dont have to pass the json structure of the gpt api data in the prompt field of the chat to a model node. You can simply put the prompt directly as the node will do the api data structure in the back for you. You’re just adding more complexity.
DO NOT DO THIS:
DO THIS:




