📚 Navigation:
🏠 Home | 📖 Docs | 🚀 Quickstart | 🧠 LangGraph
setup.bat
ollama serve
⚠️ Note: The first pip install -r requirements.txt inside the new venv may take 5–10 minutes or longer for packages like torch and sentence-transformers. Wait until installation completes.
ollama pull deepseek-r1:8b
run.bat
chmod +x setup.sh run.sh
./setup.sh
ollama serve
ollama pull deepseek-r1:8b
./run.sh
venv)data/, logs/).env.example → .envAlways use the run scripts to activate the virtual environment automatically.
Examples:
# Interactive mode
run.bat
# Direct question
run.bat "What is Python?"
# Options
run.bat --no-web "Offline question"
run.bat --debug "Debug mode"
run.bat --stats
run.bat --clear-cache
Windows:
venv\Scripts\activate
python main.py
Linux/macOS:
source venv/bin/activate
python main.py
crawllama/
├── venv/ # Virtual environment
├── data/
│ ├── cache/ # Web cache
│ ├── embeddings/ # ChromaDB
│ └── history/ # Chat history
├── logs/
│ └── app.log # Logs
├── setup.bat/setup.sh # Setup scripts
├── run.bat/run.sh # Start scripts
└── ...
| Issue | Solution |
|---|---|
venv not found |
Run setup.bat or ./setup.sh again |
Ollama not running |
Start Ollama: ollama serve in separate terminal |
Model not found |
Download: ollama pull deepseek-r1:8b |
| Missing dependencies | Run setup script again |
# Recommended
ollama pull deepseek-r1:8b
# Faster, smaller
ollama pull qwen3:4b
# Larger, more accurate
ollama pull llama3:7b
ollama pull mistral:7b
# Very high performance, more RAM
ollama pull phi3:14b
💾 Disk Space Note: After setup + models, expect 1–2 GB minimum; larger models may require 6–20+ GB depending on format.
# Show system stats
run.bat --stats
Expected output:
{
"tools_available": 3,
"web_enabled": true,
"model": "deepseek-r1:8b",
"cache": {...}
}
README.md, QUICKSTART.mdrun.bat --debug or ./run.sh --debug