
Anthropic UploadFile
CertifiedUpload a file to Anthropic
Anthropic UploadFile
Upload a file to Anthropic
Uploads a file from Kestra internal storage to the Anthropic Files API using the beta Files endpoint.
type: io.kestra.plugin.anthropic.UploadFileExamples
Upload a text file
id: anthropic_upload_file
namespace: company.team
tasks:
- id: upload
type: io.kestra.plugin.anthropic.UploadFile
apiKey: "{{ secret('ANTHROPIC_API_KEY') }}"
filePath: "{{ outputs.create_file.uri }}"
mimeType: "text/plain"
Properties
apiKey *Requiredstring
Anthropic API Key
filePath *Requiredstring
File path
Kestra internal storage URI (for example, from a previous task output).
Pebble expression referencing an Internal Storage URI e.g. {{ outputs.mytask.uri }}.
mimeType *Requiredstring
MIME type
Content type to send with the file (e.g., text/plain, image/png, application/pdf).
filename string
Filename override
Optional filename to send to Anthropic. If unset, the Kestra storage filename is used.
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
Outputs
fileId string
File ID
Identifier of the uploaded file.
filename string
Filename
Filename assigned by Anthropic.
size integer
Size
File size in bytes.