#!/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