All production models and adapters are available on HuggingFace: https://huggingface.co/Raiff1982
pip install huggingface-hub
# Recommended default: 8B Q4
huggingface-cli download Raiff1982/Meta-Llama-3.1-8B-Instruct-Q4 \
--include "Meta-Llama-3.1-8B-Instruct-Q4_K_M.gguf" \
--local-dir models/base/
# Lightweight CPU option
huggingface-cli download Raiff1982/Llama-3.2-1B-Instruct-Q8 \
--include "llama-3.2-1b-instruct-q8_0.gguf" \
--local-dir models/base/
# Behavioral adapters
huggingface-cli download Raiff1982/codette-lora-adapters \
--include "behavioral-gguf/*" \
--local-dir behavioral-lora-f16-gguf/- Visit: https://huggingface.co/Raiff1982
- Select model repository
- Click "Files and versions"
- Download
.gguffiles tomodels/base/ - Download adapters to
adapters/
git clone https://huggingface.co/Raiff1982/Meta-Llama-3.1-8B-Instruct-Q4
git lfs pullAll models are quantized GGUF format (optimized for llama.cpp and similar):
| Model | Size | Location | Type |
|---|---|---|---|
| Llama 3.1 8B Q4 | 4.6 GB | Raiff1982/Meta-Llama-3.1-8B-Instruct-Q4 | Default (recommended) |
| Llama 3.1 8B F16 | 3.4 GB | Raiff1982/Meta-Llama-3.1-8B-Instruct-F16 | High quality |
| Llama 3.2 1B Q8 | 1.3 GB | Raiff1982/Llama-3.2-1B-Instruct-Q8 | Lightweight/CPU |
| Codette Behavioral Adapters | ~500 MB | Raiff1982/codette-lora-adapters | Behavioral GGUF adapters |
git clone https://github.com/Raiff1982/Codette-Reasoning.git
cd Codette-Reasoningpip install -r requirements.txt# Quick method using huggingface-cli
huggingface-cli download Raiff1982/Meta-Llama-3.1-8B-Instruct-Q4 \
--local-dir models/base/
huggingface-cli download Raiff1982/Llama-3.2-1B-Instruct-Q8 \
--local-dir models/base/
huggingface-cli download Raiff1982/codette-lora-adapters \
--include "behavioral-gguf/*" \
--local-dir behavioral-lora-f16-gguf/ls -lh models/base/ # Should show 3 GGUF files
ls behavioral-lora-f16-gguf/*.ggufpython inference/codette_server.py
# Visit http://localhost:7860All models hosted at: https://huggingface.co/Raiff1982
Models include:
- Complete documentation
- Model cards with specifications
- License information
- Version history
If you have models downloaded locally:
# Just copy files to correct location
cp /path/to/models/*.gguf models/base/
cp /path/to/adapters/*.gguf behavioral-lora-f16-gguf/# Increase timeout
huggingface-cli download Raiff1982/Meta-Llama-3.1-8B-Instruct-Q4 \
--local-dir models/base/ \
--resume-downloadEach model needs:
- Llama 3.1 8B Q4: 4.6 GB
- Llama 3.1 8B F16: 3.4 GB
- Llama 3.2 1B: 1.3 GB
- Adapters: ~1 GB
- Total: ~10 GB minimum
huggingface-cli login
# Paste token from: https://huggingface.co/settings/tokensTypical download times:
- Llama 3.1 8B Q4: 5-15 minutes (100 Mbps connection)
- Llama 3.2 1B: 2-5 minutes
- Adapters: 1-2 minutes
- Total: 8-22 minutes (first-time setup)
Models:
- Llama: Meta AI (open source)
- GGUF Quantization: Ollama/ggerganov
- Adapters: Jonathan Harrison (Raiff1982)
License: See individual model cards on HuggingFace
Once downloaded, follow DEPLOYMENT.md for production setup.
For questions, visit: https://huggingface.co/Raiff1982