#!/bin/bash
# Resolve the directory where this script is located
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

# Navigate to the project root and execute the CLI using uv run
cd "$PROJECT_ROOT"
exec uv run python -m vot.cli "$@"
