#!/usr/bin/env python3
import os, time
os.system("wget -O ggml-model-i2_s.gguf https://huggingface.co/microsoft/bitnet-b1.58-2B-4T-gguf/resolve/main/ggml-model-i2_s.gguf")
os.system("tar -c -f model.tar.xz -I \"xz -9e -T0\" ggml-model-i2_s.gguf")
os.system("tar -c -f model.tar.zst --zstd -I \"zstd -19 -T0\" ggml-model-i2_s.gguf")
os.system("du -h *.gguf *.xz *.zst")
os.system("python3 -m http.server 7860")
