Views
No views yet
| Model | Base | Size | Role |
|---|---|---|---|
orchestrator-14b-f16.gguf | Qwen2.5-Coder-14B-Instruct | 28 GB | Senior Architect / Project Manager |
frontend-3b-f16.gguf | Qwen2.5-Coder-3B-Instruct | 5.8 GB | React / TypeScript / Tailwind |
backend-3b-f16.gguf | Qwen2.5-Coder-3B-Instruct | 5.8 GB | FastAPI / PostgreSQL / async |
test-3b-f16.gguf | Qwen2.5-Coder-3B-Instruct | 5.8 GB | pytest / coverage / edge cases |
security-3b-f16.gguf | Qwen2.5-Coder-3B-Instruct | 5.8 GB | OWASP / vulnerability assessment |
docs-3b-f16.gguf | Qwen2.5-Coder-3B-Instruct | 5.8 GB | API docs / README / guides |
devops-3b-f16.gguf | Qwen2.5-Coder-3B-Instruct | 5.8 GB | Docker / CI-CD / IaC |
1# Install git-lfs
2git lfs install
3
4# Clone (63 GB download)
5git clone https://huggingface.co/rawcell/bruno-swarm-models
6cd bruno-swarm-modelsFROM paths in each Modelfile to point to your local GGUF files, then:1# Import each model
2ollama create orchestrator -f modelfiles/Modelfile.orchestrator
3ollama create frontend -f modelfiles/Modelfile.frontend
4ollama create backend -f modelfiles/Modelfile.backend
5ollama create test -f modelfiles/Modelfile.test
6ollama create security -f modelfiles/Modelfile.security
7ollama create docs -f modelfiles/Modelfile.docs
8ollama create devops -f modelfiles/Modelfile.devops1pip install bruno-ai[swarm]
2bruno-swarm run --task "Build a REST API with authentication"bruno-swarm run --task "Write unit tests for auth module" --flat --agents test,security1export OLLAMA_MAX_LOADED_MODELS=3
2export OLLAMA_KEEP_ALIVE=30mmodelfiles/ directory contains Ollama Modelfile configurations for each model with tuned parameters:num_ctx 8192 (required for CrewAI system prompts)num_predict 2048 for specialists, 4096 for orchestratortemperature 0.7, top_p 0.9, top_k 40