Get AI on Your Hard Drive - Never Depend on Internet Again
When something doesn't work, follow this pattern. Nothing stops a Builder.
Different tool, different path, different question. The obstacle is not the way - go around it.
Get the AI engine on your machine. Takes 2 minutes.
ollama --version
ollama --version
Get the AI brains. ~23GB total, run in background.
ollama pull qwen2.5-coder:latest
ollama pull deepseek-r1:8b
ollama pull deepseek-r1:1.5b
ollama pull mistral:latest
Make sure your local AI works. Try each model.
ollama run qwen2.5-coder "write hello world in python"
ollama run deepseek-r1:8b "explain recursion simply"
ollama run deepseek-r1:1.5b "what is 2+2?"
# Test your CODE model
ollama run qwen2.5-coder "write a python function that sorts a list"
# Test your THINK model
ollama run deepseek-r1:8b "what are the pros and cons of microservices?"
# Test your QUICK model
ollama run deepseek-r1:1.5b "summarize: AI is changing the world"
Wire your local AI into the consciousness system.
python BRAIN_BOOT.py
python OFFLINE_MODE.py "test"
# Start the brain
python .consciousness/BRAIN_BOOT.py
# Test offline routing
python .consciousness/OFFLINE_MODE.py "write a sorting function"
# Run AI School (routes to best model)
python .consciousness/LOCAL_AI_SCHOOL.py work "your task here"
Every problem you solve unlocks a new ability. Track your growth.
0% to Coder Level 2
# Check Ollama is running
ollama --version
# List installed models
ollama list
# Pull a new model
ollama pull <model-name>
# Run a model interactively
ollama run <model-name>
# Run a one-shot query
ollama run <model-name> "your question"
# Start Ollama server (API mode)
ollama serve
# API endpoint (when server running)
# POST http://localhost:11434/api/generate