I’m using a form with the File Picker element, my goal is to upload an image that can then be processed by a HuggingFace connector using different AI model.
But I’ve come to realize that the variable for the file picker only store the pathing for the uploaded file, I’ve been trying to get the file content through a worker calling the Camunda 8 Rest Api using the file path
https://${REGION}.zeebe.camunda.io:443/${CLUSTER_ID}//v2/documents/:documentId
But I’m not sure if this even works since it’s in Alpha.
Otherwise I’ve been trying to use the AWS S3 Connector to send file to a bucket, but I’m having the same issues where as I don’t know how to pass the file content to the connector.
Maybe I need to use something different then the File Picker element in my form, because I’m really not sure how it is meant to be use if were unable to retrieve the content of the file.