-
Notifications
You must be signed in to change notification settings - Fork 536
Expand file tree
/
Copy pathinstall.bat
More file actions
31 lines (28 loc) · 997 Bytes
/
Copy pathinstall.bat
File metadata and controls
31 lines (28 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@echo off
title Portable AI - Multi-Model Setup
color 0E
echo ===================================================
echo PORTABLE UNCENSORED AI - USB SETUP
echo ===================================================
echo.
echo This will download and configure AI models onto
echo your USB drive. You'll get to CHOOSE which models
echo to install from a curated list.
echo.
echo - 6 preset models (uncensored + standard)
echo - Custom model support (bring your own GGUF)
echo - Minimum USB space: 16 GB (32 GB recommended)
echo.
echo Make sure you have a good internet connection!
echo.
pause
:: Run the PowerShell setup script from the same folder as this bat file
powershell -ExecutionPolicy Bypass -File "%~dp0install-core.ps1"
echo.
echo ===================================================
echo SETUP COMPLETE! You're ready to go!
echo ===================================================
echo.
echo To start your AI, double-click start-windows.bat
echo.
pause