🏛️ 6 Foundation Models (~150GB)
🎨 24 Art Style LoRAs (~2.4GB)
👤 19 Character LoRAs (~1.9GB)
🔄 4 Editing/Video Models (~5GB)
🧠 12 LLM Runtimes (FREE)
⚡ MASTER SCRIPT — Download EVERYTHING
One script to download all 60+ models. Save as download-all.sh and run on your server.
#!/bin/bash
# ═══════════════════════════════════════════════════════════════
# Ms Money Penny — Ultimate AI Model Downloader
# Life Imitates Art Inc. Nonprofit
# ═══════════════════════════════════════════════════════════════
# NO LOGIN REQUIRED | NO API KEYS | 100% FREE PUBLIC MODELS
# ═══════════════════════════════════════════════════════════════
set -e
BOLD="\033[1m"
GOLD="\033[0;33m"
GREEN="\033[0;32m"
CYAN="\033[0;36m"
RESET="\033[0m"
# ── Configuration ────────────────────────────────────────────
BASE_DIR="${1:-/mnt/100tb/huggingface-models}"
PARALLEL_DOWNLOADS=4
echo -e "${BOLD}${GOLD}"
echo " ╔═══════════════════════════════════════════════════╗"
echo " ║ Ms Money Penny — AI Model Bulk Downloader ║"
echo " ║ Life Imitates Art Inc. Nonprofit ║"
echo " ║ NO LOGIN | NO API KEYS | 100% OFFLINE ║"
echo " ╚═══════════════════════════════════════════════════╝"
echo -e "${RESET}"
# ── Prerequisites ────────────────────────────────────────────
echo -e "${CYAN}[1/6] Checking prerequisites...${RESET}"
command -v git >/dev/null || { echo "❌ git required"; exit 1; }
git lfs install --skip-smudge 2>/dev/null || true
echo -e "${GREEN}✓ Ready${RESET}"
# ── Create directories ───────────────────────────────────────
echo -e "${CYAN}[2/6] Creating directories...${RESET}"
mkdir -p "$BASE_DIR"/{foundation,loras/art-styles,loras/characters,editing,video}
echo -e "${GREEN}✓ $BASE_DIR created${RESET}"
# ── Foundation Models (~150GB) ───────────────────────────────
echo -e "\n${BOLD}${GOLD}[3/6] Downloading Foundation Models (~150GB)...${RESET}"
cd "$BASE_DIR/foundation"
declare -a FOUNDATION=(
"black-forest-labs/FLUX.1-dev"
"black-forest-labs/FLUX.1-schnell"
"black-forest-labs/FLUX.2-dev"
"stabilityai/stable-diffusion-xl-base-1.0"
"stabilityai/stable-diffusion-3.5-large"
"Wan-AI/Wan2.1-T2I-14B"
)
for repo in "${FOUNDATION[@]}"; do
name=$(basename "$repo")
if [ -d "$name" ]; then
echo -e " ⏭️ $name (already exists, skipping)"
else
echo -e " 📥 Downloading $repo..."
git clone "https://huggingface.co/$repo" && echo -e " ${GREEN}✓ $name${RESET}" || echo -e " ⚠️ Failed: $name"
fi
done
# ── Art Style LoRAs (~2.4GB) ─────────────────────────────────
echo -e "\n${BOLD}${GOLD}[4/6] Downloading Art Style LoRAs (~2.4GB)...${RESET}"
cd "$BASE_DIR/loras/art-styles"
declare -a LORA_STYLES=(
"andrbykov/vangogh_style_LoRA"
"ZayacGde/vangog_style_LoRA"
"pils0n/claudemonet_style_LoRA"
"Vafich/avasnetsov_style_LoRA"
"Alia31566/Vinogradov_LoRA"
"Alia31566/NOZHEV_LoRA"
"Alia31566/Delovarya_LoRA"
"Alia31566/Niko_Pirosmani_LoRA"
"Mariiaaaaa/vittorio_reggianini_LoRA"
"Cilvia/Kochkina_style_LoRA"
"Cilvia/cherakshin_style_LoRA"
"polichwafer/olviertakac_style_LoRA"
"Zhmak/fairey_posters_style_LoRA"
"pils0n/langreiter_style_LoRA"
"pils0n/frutiger_style_LoRA"
"pils0n/rosie_style_LoRA"
"gvhfyhgif/tekilasuns3t_style_LoRA"
"gvhfyhgif/rosetty_style_LoRA"
"ftyuiolkmnjhg/diberkato_style_LoRA"
"LippmannAI/veiter-lora-flux"
"neiroia/rockconcert_style_LoRA"
"nepirog/nepirog_style_LoRA"
"kristian1515/filmgrain-redmond-filmgrain-lora-for-sdxl"
"imbaQ/lcm-lora-sdxl"
)
for repo in "${LORA_STYLES[@]}"; do
name=$(basename "$repo")
[ -d "$name" ] && echo " ⏭️ $name (exists)" && continue
echo -e " 🎨 $name..."
git clone "https://huggingface.co/$repo" 2>/dev/null && echo -e " ${GREEN}✓${RESET}" || echo " ⚠️ Failed"
done
# ── Character LoRAs (~1.9GB) ─────────────────────────────────
echo -e "\n${BOLD}${GOLD}[5/6] Downloading Character LoRAs (~1.9GB)...${RESET}"
cd "$BASE_DIR/loras/characters"
declare -a CHARACTERS=(
"alphaduriendur/avatar-weights-01"
"Barlowtech/rina_ai"
"Natasamk/lumi-character-lora"
"1337goose/KaterinaTLOD"
"1337goose/KetTLOD"
"Alex2422/Amaya_new"
"Krioklininkas/kaia"
"globaltraders/lara-21-flux-lora"
"xr669/Tessa"
"sololo-xyz/VG22Flora"
"sololo-xyz/VG21Amanda_ZITv2"
"bigdotdog/rachel2500"
"BadRabbit11101/Cat_Tina"
"darrenfu/Asian_model"
"sneaxnvice/lustly-ai"
"V1shu69/flux-RealismLora"
"Rabornkraken/flux2-xhs-travel-lora"
"Kokosha01/Wan2.2_StrangeNames"
"XonarLabs/OLOID_Framework"
)
for repo in "${CHARACTERS[@]}"; do
name=$(basename "$repo")
[ -d "$name" ] && echo " ⏭️ $name (exists)" && continue
echo -e " 👤 $name..."
git clone "https://huggingface.co/$repo" 2>/dev/null && echo -e " ${GREEN}✓${RESET}" || echo " ⚠️ Failed"
done
# ── Editing & Video Models ───────────────────────────────────
echo -e "\n${BOLD}${GOLD}[6/6] Downloading Editing & Video Models...${RESET}"
cd "$BASE_DIR/editing"
declare -a EDITING=(
"prithivMLmods/QIE-2509-Object-Mover-Bbox"
"prithivMLmods/QIE-2511-Object-Mover-Bbox"
"yxw1231/Qwen-Edit-2509-Multiple-angles"
)
for repo in "${EDITING[@]}"; do
name=$(basename "$repo")
[ -d "$name" ] && echo " ⏭️ $name (exists)" && continue
echo -e " 🔄 $name..."
git clone "https://huggingface.co/$repo" 2>/dev/null && echo -e " ${GREEN}✓${RESET}" || echo " ⚠️ Failed"
done
cd "$BASE_DIR/video"
git clone "https://huggingface.co/editedge/LTX-2-19b-LoRA-Camera-Control-Jib-Down" 2>/dev/null || true
# ── Summary ──────────────────────────────────────────────────
echo -e "\n${BOLD}${GOLD}═══════════════════════════════════════════════════${RESET}"
echo -e "${BOLD}${GREEN} ✅ ALL DOWNLOADS COMPLETE!${RESET}"
echo -e "${BOLD}${GOLD}═══════════════════════════════════════════════════${RESET}"
echo ""
echo -e " 📂 Models saved to: ${CYAN}$BASE_DIR${RESET}"
echo -e " 🏛️ Foundation: $(ls $BASE_DIR/foundation/ 2>/dev/null | wc -l) models"
echo -e " 🎨 Art LoRAs: $(ls $BASE_DIR/loras/art-styles/ 2>/dev/null | wc -l) models"
echo -e " 👤 Characters: $(ls $BASE_DIR/loras/characters/ 2>/dev/null | wc -l) models"
echo -e " 🔄 Editing: $(ls $BASE_DIR/editing/ 2>/dev/null | wc -l) models"
echo ""
echo -e " ${GOLD}Next: Install ComfyUI, Diffusers, or Ollama to start using!${RESET}"
echo ""
🏛️ Foundation Models Only (~150GB)
Download just the 6 base models — required for all LoRAs
#!/bin/bash
# Foundation Models — NO LOGIN REQUIRED
git lfs install
mkdir -p /mnt/100tb/models/foundation && cd /mnt/100tb/models/foundation
git clone https://huggingface.co/black-forest-labs/FLUX.1-dev
git clone https://huggingface.co/black-forest-labs/FLUX.1-schnell
git clone https://huggingface.co/black-forest-labs/FLUX.2-dev
git clone https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0
git clone https://huggingface.co/stabilityai/stable-diffusion-3.5-large
git clone https://huggingface.co/Wan-AI/Wan2.1-T2I-14B
echo "✅ All foundation models downloaded!"
🎨 All LoRA Models Only (~4GB)
43 LoRA adapters — art styles + characters. Tiny files, huge variety.
#!/bin/bash
# All LoRA Models — NO LOGIN REQUIRED
mkdir -p /mnt/100tb/models/loras && cd /mnt/100tb/models/loras
# Art Styles
git clone https://huggingface.co/andrbykov/vangogh_style_LoRA
git clone https://huggingface.co/pils0n/claudemonet_style_LoRA
git clone https://huggingface.co/Vafich/avasnetsov_style_LoRA
git clone https://huggingface.co/Alia31566/Vinogradov_LoRA
git clone https://huggingface.co/Alia31566/NOZHEV_LoRA
git clone https://huggingface.co/Alia31566/Delovarya_LoRA
git clone https://huggingface.co/Alia31566/Niko_Pirosmani_LoRA
git clone https://huggingface.co/Zhmak/fairey_posters_style_LoRA
git clone https://huggingface.co/neiroia/rockconcert_style_LoRA
git clone https://huggingface.co/kristian1515/filmgrain-redmond-filmgrain-lora-for-sdxl
git clone https://huggingface.co/artshooter/flux-hand-drawn-stickman
git clone https://huggingface.co/ALDOGS/miami-lora
# Characters
git clone https://huggingface.co/alphaduriendur/avatar-weights-01
git clone https://huggingface.co/Barlowtech/rina_ai
git clone https://huggingface.co/Natasamk/lumi-character-lora
git clone https://huggingface.co/Alex2422/Amaya_new
git clone https://huggingface.co/Krioklininkas/kaia
git clone https://huggingface.co/Kokosha01/Wan2.2_StrangeNames
git clone https://huggingface.co/XonarLabs/OLOID_Framework
git clone https://huggingface.co/Rabornkraken/flux2-xhs-travel-lora
git clone https://huggingface.co/V1shu69/flux-RealismLora
echo "✅ All LoRA models downloaded!"
🖥️ Ms Money Penny Desktop App
Download the standalone desktop app for your platform