๐ Navigation:
๐ Home | ๐ Docs | ๐ฆ Installation | ๐ง LangGraph | ๐ OSINT
git clone https://github.com/arn-c0de/Crawllama.git
cd Crawllama
Windows:
setup.bat
Linux/macOS:
chmod +x setup.sh
./setup.sh
The script automatically installs:
.env.example โ .envโ ๏ธ Note: Installing dependencies (e.g., torch, sentence-transformers) may take 5โ10 minutes on first run.
# In a separate terminal
ollama serve
๐พ Disk Space Requirements:
Project + venv + optional models: ~1โ2 GB (can increase with larger models).
Approx. model sizes:
qwen3:4b โ 2โ4 GBqwen3:8b โ 8โ12 GBdeepseek-r1:8b โ 6โ10 GBllama3:7b โ 6โ9 GBmistral:7b โ 4โ8 GBphi3:14b โ 12โ20+ GBNote: Sizes vary depending on format (FP16, INT8) and extra assets.
ollama pull deepseek-r1:8b
Other options:
ollama pull qwen3:4b # Smaller, faster
ollama pull llama3:7b # Larger, more accurate
ollama pull mistral:7b # Good for reasoning
ollama pull phi3:14b # High-performance, more RAM
Windows:
run.bat
Linux/macOS:
./run.sh
Always use the run scripts to auto-activate the virtual environment.
Start CrawlLama and ask questions:
run.bat # Windows
./run.sh # Linux/macOS
โฏ What is Python?
โฏ How does photosynthesis work?
โฏ Who developed the theory of relativity?
Edit config.json:
{
"llm": {
"model": "deepseek-r1:8b",
"temperature": 0.7,
"max_tokens": 4096
},
"cache": {
"enabled": true,
"ttl_hours": 24
}
}
| Windows | Linux/macOS | Description |
|---|---|---|
run.bat |
./run.sh |
Interactive mode |
run.bat "Question" |
./run.sh "Question" |
Direct question |
run.bat --stats |
./run.sh --stats |
Show stats |
run.bat --clear-cache |
./run.sh --clear-cache |
Clear cache |
run.bat --no-web |
./run.sh --no-web |
Offline mode |
run.bat --debug |
./run.sh --debug |
Debug mode |
ollama serve
ollama pull deepseek-r1:8b
setup.bat # Windows
./setup.sh # Linux/macOS
rm -rf data/embeddings/ # Linux/macOS
rmdir /s data\embeddings # Windows
README.md - Main docsdocs/INSTALLATION.md - Detailed setupdocs/LANGGRAPH_GUIDE.md - Multi-hop reasoning$ run.bat
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ CrawlLama - Local Search Agent โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
โฏ What is the capital of Germany?
The capital of Germany is **Berlin** (since 1990).
โฏ How many inhabitants does Berlin have?
Berlin has about **3.7 million** people (2024).
โฏ stats
{
"tools_available": 3,
"web_enabled": true,
"model": "qwen3:4b",
"cache": {
"total_files": 2,
"total_size_mb": 0.05
}
}
โฏ exit
Goodbye!
CrawlLama is now installed and ready for use.
If you encounter issues: GitHub Issues