executor / download_data.sh
eggie5-adyen's picture
fixed typo in wget
b0f6825
raw
history blame contribute delete
876 Bytes
#!/bin/bash
mkdir -p /app/data
wget -O /app/data/payments.csv https://huggingface.co/datasets/adyen/data-agents-benchmark_DS/resolve/main/v1/context/payments.csv
wget -O /app/data/manual.md https://huggingface.co/datasets/adyen/data-agents-benchmark_DS/resolve/main/v1/context/manual.md
wget -O /app/data/fees.json https://huggingface.co/datasets/adyen/data-agents-benchmark_DS/resolve/main/v1/context/fees.json
wget -O /app/data/merchant_category_codes.csv https://huggingface.co/datasets/adyen/data-agents-benchmark_DS/resolve/main/v1/context/merchant_category_codes.csv
wget -O /app/data/merchant_data.json https://huggingface.co/datasets/adyen/data-agents-benchmark_DS/resolve/main/v1/context/merchant_data.json
wget -O /app/data/acquirer_countries.csv https://huggingface.co/datasets/adyen/data-agents-benchmark_DS/resolve/main/v1/context/acquirer_countries.csv
exec "$@"