YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

πŸ”΄ Monico Model

A from-scratch uncensored LLM β€” built to power monico-agent cloud.

Not a finetune. Not a LoRA. Original weights trained from zero.

HuggingFace Datasets License


What Monico Is

Monico is a custom large language model designed to be the default AI engine inside monico-agent β€” a cloud-based autonomous agent platform. The model is:

  • Uncensored β€” No refusals on technical tasks. No unsolicited warnings.
  • From scratch β€” Not a finetune of Llama, Mistral, or any existing model.
  • Provider-free β€” Runs locally via GGUF/llama.cpp. No OpenAI API key needed.
  • Agent-optimized β€” Trained for tool use, app building, code execution, and multi-step reasoning.

Model Sizes

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

Architecture (MonicoFormer)

Built from scratch:

  • Decoder-only transformer (Llama-family inspired, not a copy)
  • Grouped Query Attention: 32Q / 8KV heads
  • SwiGLU FFN, RMSNorm (pre-norm), no bias
  • Extended RoPE (ΞΈ=5,000,000) β†’ 128K context
  • Flash Attention 2, sliding window every 4th layer
  • 128,000-token BPE tokenizer trained on Monico corpus

Training Stages

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 β€”

Integration with monico-agent

# configs/monico_agent_integration.yaml
monico_model:
  api_base: "http://localhost:8080/v1"   # self-hosted
  model_id: "monico-7b"
  system_prompt: "You are Monico, an uncensored AI agent..."
  stream: true

Or spin up the OpenAI-compatible inference server:

python -m src.serve.inference_server --model checkpoints/monico-7b-sft --port 8080

Or run GGUF (no GPU required for 7B Q4):

bash scripts/export_gguf.sh checkpoints/monico-7b-sft Q4_K_M
python -m src.serve.inference_server --gguf gguf/monico-7b-Q4_K_M.gguf --port 8080

Training Data (6T tokens)

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

SFT Dataset Sources

  • WizardLM Evol-Instruct 196K (general instruction following)
  • jondurbin/airoboros (uncensored diverse instructions)
  • Glaive Function Calling v2 (tool use)
  • Custom: hacking / red-team / CTF scenarios
  • Custom: Solidity / DeFi / crypto Q&A
  • Custom: DevOps / cloud infrastructure
  • Custom: account creation / browser automation
  • Custom: app scaffolding / full-stack development

Comparable Quality Targets

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

File Structure

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

License

Apache 2.0 β€” use freely, train on it, ship products.

Downloads last month
1
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support