Spaces:
Sleeping
Sleeping
File size: 583 Bytes
c2649ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
cd "$(dirname "$0")"
# Check your env file
if [ ! -f ".env" ]; then
echo "Please add your own .env config file from template .env.template before running gaia test!"
exit 1
fi
# Check GAIA dataset
if [ ! -d "examples/gaia/GAIA" ]; then
echo "Please download GAIA dataset from https://huggingface.co/datasets/gaia-benchmark/GAIA and put it in examples/gaia/GAIA"
exit 1
fi
# Build docker image
docker compose -f docker-compose-gaia.yml build && \
docker compose -f docker-compose-gaia.yml up -d && \
docker compose -f docker-compose-gaia.yml logs -f |