Transformers
Dummymodel / download_model.sh
paulinergt
init-container
644971b
Raw
History Blame Contribute Delete
276 Bytes
#!/bin/bash
set -e
function download_object_from_bucket() {
local response
response=$(aws --debug s3 cp \
"$LLM_BUCKET" \
"$LOCAL_PATH" \
--recursive \
--endpoint-url $AWS_ENDPOINT_URL \
--region $AWS_DEFAULT_REGION)
}
download_object_from_bucket