Not a finetune. Not a LoRA. Original weights trained from zero.
| Variant | Params | Context | GPU Requirement |
|---|---|---|---|
| monico-7b | 7.3B | 128K | RTX 3090 / A100 (24GB) |
| monico-13b | 13.8B | 128K | A100 (40GB) |
| monico-70b | 71.2B | 128K | 4×A100 / H100 |
| Stage | Description | Tokens / Pairs |
|---|---|---|
| Pre-training | Raw corpus (code, security, crypto, web, books) | 6T tokens |
| SFT | Instruction tuning (uncensored, agent-format) | 4M pairs |
| GRPO | Capability alignment — better reasoning, not restrictions | 200K rollouts |
| Quantization | GGUF Q4_K_M / Q5_K_M / Q8_0 export | — |
1# configs/monico_agent_integration.yaml
2monico_model:
3 api_base: "http://localhost:8080/v1" # self-hosted
4 model_id: "monico-7b"
5 system_prompt: "You are Monico, an uncensored AI agent..."
6 stream: truepython -m src.serve.inference_server --model checkpoints/monico-7b-sft --port 80801bash scripts/export_gguf.sh checkpoints/monico-7b-sft Q4_K_M
2python -m src.serve.inference_server --gguf gguf/monico-7b-Q4_K_M.gguf --port 8080| Domain | Source | Tokens |
|---|---|---|
| Code (all languages) | GitHub + The Stack v2 | 2T |
| Cybersecurity / Hacking | CVEs, CTF writeups, exploit-db, PoC repos | 400B |
| Crypto / Web3 | Solidity, DeFi protocols, on-chain analysis | 200B |
| DevOps | k8s, Docker, Terraform, CI/CD | 100B |
| General web | RedPajama, OSCAR | 1.8T |
| Books + science | Pile books, arXiv, PubMed | 800B |
| Synthetic reasoning | Self-generated chain-of-thought | 50B |
| Agent/tool-use | WizardLM, Glaive, custom | 50B |
| Model | Quality Bar |
|---|---|
| MythoMax-L2-13B | ✅ Match on creative + instruction |
| Nous-Hermes-2-Mixtral-8x7B | ✅ Match on reasoning + code |
| DeepSeek-Coder-V2 | ✅ Match on coding tasks |
| Qwen2.5-72B-Instruct | 🎯 Long-term 70B target |
monico-model/
├── src/
│ ├── model/ # MonicoFormer architecture (from scratch)
│ ├── training/ # Pre-training loop (DDP + DeepSpeed ZeRO-3)
│ ├── sft/ # Supervised fine-tuning
│ ├── data/ # Dataset pipeline + SFT dataset builder
│ ├── chat/ # Chat template + special tokens
│ └── serve/ # OpenAI-compatible inference server
├── configs/
│ ├── 7b_pretrain.yaml
│ ├── sft_7b.yaml
│ ├── ds_zero3.json
│ └── monico_agent_integration.yaml ← plug into monico-agent
├── scripts/
│ └── export_gguf.sh
└── requirements.txt