curl --request POST \
--url https://api.fireworks.ai/v1/accounts/{account_id}/evaluators/{evaluator_id}:getUploadEndpoint \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"filenameToSize": {},
"readMask": "<string>"
}
'{
"filenameToSignedUrls": {}
}Returns signed URLs for uploading evaluator source code (step 3 in the
Create Evaluator workflow). After receiving
the signed URL, upload your .tar.gz archive using HTTP PUT with
Content-Type: application/octet-stream header.
curl --request POST \
--url https://api.fireworks.ai/v1/accounts/{account_id}/evaluators/{evaluator_id}:getUploadEndpoint \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"filenameToSize": {},
"readMask": "<string>"
}
'{
"filenameToSignedUrls": {}
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
A successful response.
Show child attributes
Was this page helpful?