23 lines
517 B
Bash
Executable file
23 lines
517 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
# Parse --env argument to source the right env file
|
|
ARGS=("$@")
|
|
ENV_FILE=".env"
|
|
if [ ! -f "$ENV_FILE" ]; then
|
|
echo "Error: Environment file $ENV_FILE not found"
|
|
exit 1
|
|
fi
|
|
|
|
echo "🚀 Starting LongMemEval Benchmark with '${ENV_MODE}' environment..."
|
|
echo "📄 Loading environment from $ENV_FILE"
|
|
echo ""
|
|
|
|
# Export all variables from env file
|
|
set -a
|
|
source "$ENV_FILE"
|
|
set +a
|
|
|
|
uv run python hindsight-dev/benchmarks/longmemeval/longmemeval_benchmark.py "${ARGS[@]}"
|