Open LLMs/amazon

Open-Weight LLM · Private & Custom AI

BMOJOF-primed-HQwen3-8B-Instruct

A hybrid Attention+SSM model engineered for long-context ops workflows at 1.75× faster inference than standard transformers—designed to run private, self-hosted, with reduced memory footprint for high-throughput batch processing.

BMOJOF-primed-HQwen3-8B-Instruct is an 8B instruction-tuned hybrid model that replaces half its Attention layers with B'MOJO-F layers (coupled sliding-window Attention + State-Space Model). It natively handles 128K context while maintaining 50% of a standard transformer's KV cache footprint. For ops teams, this means faster inference on long documents (tickets, logs, contracts, knowledge bases) without the memory penalty—critical when you're running 50+ concurrent customer or internal workflows.

9.3B
Parameters
apache-2.0
License (OSI/permissive)
Unknown
Context
69.4k
Downloads

Model facts

Developeramazon
Parameters9.3B
Context windowUnknown
Licenseapache-2.0 — OSI/permissive
Tasktext-generation
GatedNo
Downloads69.4k
Likes2
Updated2026-04-03
Sourceamazon/BMOJOF-primed-HQwen3-8B-Instruct

Private deployment

Run BMOJOF-primed-HQwen3-8B-Instruct in your own environment

Self-hostable on a single GPU (16–24GB VRAM depending on batch size and precision). The hybrid architecture's fixed-size SSM state—instead of growing KV cache—makes it practical for on-premise or VPC-locked deployment where data never leaves your infrastructure. Apache 2.0 license removes licensing friction. Trade-off: unfused SSM kernels mean slower single-token latency than some alternatives; throughput advantage emerges at scale and long contexts.

Operational AI use cases

01

Long-Document Support Ticket Automation

Route and auto-summarize customer tickets that include full email threads (20–50K tokens). The 128K context + 1.75× inference speed allows your support team to process 2–3× more tickets per hour without cascading to GPT-4-class infrastructure. Running private means customer data stays in your VPC.

02

Internal Knowledge Base & Compliance Query Agent

Deploy as a conversational QA layer over your internal wiki, legal docs, and SOP repositories. Feed an entire 100K-token document corpus per query; hybrid architecture keeps SSM-compressed context of the full knowledge graph while Attention layers pinpoint exact policy clauses. Private self-hosting ensures audit compliance for regulated workflows (finance, healthcare).

03

Log Analysis & Incident Response Automation

Ingest 128K tokens of structured logs, stack traces, and metrics in a single context window. Hybrid model's memory efficiency means you can spin up dedicated log-analysis agents without consuming your main inference cluster. Faster throughput at scale reduces MTTR for on-call incident routing.

Custom AI

As a base for custom AI

Solid foundation for custom chatbot, document-processing, or agent scaffolding. The 8B parameter count + long context is ideal for fine-tuning on domain-specific instruction datasets (financial analysis, legal doc review, technical support) without the cost of larger models. Priming pipeline (visible on GitHub) allows you to extend context further or adjust the Attention/SSM ratio for your workload. However, it's not a reasoning-specialized model—for complex multi-step problem-solving, consider alternatives.

In the operating system

Where it fits

Agent backbone for retrieval + reasoning workflows. Sits in the language-model layer of an ops AI system—handles document ingestion, context assembly, and instruction-following. Works best paired with a vector DB (retrieval) and agentic orchestration layer (task decomposition). Not suitable as a reasoning-heavy model for complex planning; better as a high-throughput document-understanding module.

Data control & security

Private self-hosting is an architecture choice: you control inference hardware, network isolation, and data residency. Running your own instance means no data transits to third-party endpoints—documents, logs, customer records stay within your VPC. No security guarantees from the model itself, but deployment control eliminates third-party inference risk. Ensure your ops tooling (orchestration, APIs, log ingestion) follows your own security posture.

Hardware footprint

**Estimate (bfloat16):** ~18–20 GB VRAM for single-instance inference + small batch buffer. At 50% hybrid ratio, KV cache grows slower than pure Attention—you can batch 2–3× more concurrent sequences on the same GPU vs. Qwen3-8B base. For multi-GPU: 2× A100 40GB or 1× H100 80GB comfortable for high-throughput ops at 128K context.

Integration

Accepts transformers-compatible inputs; supports safetensors format for fast weight loading. Integrate via vLLM, TGI, or llama.cpp for production serving. Typical wire-up: REST API or gRPC endpoint → your ops platform (Zapier, n8n, custom Python agents). Long context requires attention to token counting (use transformers.tokenizer) when batching queries. HuggingFace endpoints-compatible, but self-hosted gives you latency control and cost predictability for high-volume ops.

When it's not the right fit

  • Reasoning-heavy tasks (math, logic puzzles): model is instruction-tuned, not reasoning-specialized; short-context benchmarks show 3–5 point gaps on math/reasoning vs. base Qwen3-8B.
  • Latency-critical single-token generation: unfused SSM kernels make per-token latency slower; use this for batch/throughput, not interactive real-time chat.
  • Fine-tuning with custom LoRA/adapters: hybrid architecture complicates adapter design; refer to Hybrid Model Factory docs for guidance.
  • Extremely cost-sensitive ops (<$0.01 per inference): smaller models (3B–7B pure Attention) may be cheaper; hybrid shines at scale and long-context, not minimal hardware.

Alternatives to consider

Qwen3-8B (base) or Qwen3-8B-Instruct

Pure Transformer baseline. Simpler deployment, lower engineering overhead, slightly better short-context performance. Trade: higher KV cache memory at long contexts; slower throughput when context > 50K.

Llama 3.1 8B Instruct (Meta)

Mature, widely supported open model. Better community tooling (vLLM, llama.cpp). Lacks native 128K context (stops at 128K with extrapolation); no hybrid efficiency gains.

Mamba2-7B or State-Space Mamba variants

Pure SSM architecture; ~2× faster inference at any context. No Attention layers, so trade recall precision for speed. Model card shows Mamba2-primed variant lags ~3 points on benchmarks vs. B'MOJO-F; choose if throughput >> accuracy.

FAQ

Can I run this privately on-premise without calling any cloud API?

Yes. Apache 2.0 license permits self-hosting. Download weights, spin up a vLLM or TGI instance in your VPC (on-prem or private cloud), and integrate via REST/gRPC. Data never leaves your infrastructure. You own inference cost and latency tuning.

Can I use this commercially in a product or SaaS offering?

Yes. Apache 2.0 is commercially permissive—no attribution or revenue-share required. You can wrap it in your product, fine-tune it, and sell. Ensure your service terms reflect that the base model is open-source; recommend publishing any significant improvements upstream.

How does the hybrid architecture help with ops workflows specifically?

Hybrid trades off some single-token latency for much higher batch throughput and lower memory. In ops, you're usually processing queues (support tickets, log files, compliance checks)—not interactive chat. The ~1.75× speedup at long context means you handle 50+ concurrent tasks on one GPU instead of 15–20. SSM's fixed-size state also lets you ingest massive documents (contracts, logs) without memory blowup.

What if I need reasoning or multi-step problem-solving?

This model is instruction-tuned for straightforward tasks, not reasoning. For complex ops workflows (debugging, decision logic, strategy), either: (1) chain it with a reasoning-specialist model (e.g., Qwen3-32B-Instruct or reasoning-tuned variant) for critical steps, or (2) decompose the task in your orchestration layer (agent framework). Not a one-model-fits-all solution.

Build a Private Ops AI System with BMOJOF

Stop paying per-token to cloud LLM APIs for routine document processing, ticket routing, and knowledge queries. Deploy BMOJOF-primed-HQwen3-8B self-hosted in your infrastructure. LLM.co helps you wire hybrid models into your ops stack—retrieval, agentic workflows, data isolation, and cost control. Start building.