bash Clone the official repo once released git clone https://github.com/<official-org /happy-horse-1.0 cd happy-horse-1.0 Create isolated environment python -m venv .venv source .venv/bin/activate # Windows: .venv\Scripts\activate Install dependencies (anticipated) pip install -r requirements.txt Download model weights (anticipated — likely via huggingface hub) pip install huggingface hub python -c " from huggingface hub import snapshot download snapshot download( repo id='<official-org /happy-horse-1.0', local dir='./weights/happy-horse-1.0' ) " bash Set before running inference export HF TO…