CoolFace
Modelpublic

luoyike2003/LongShu-Qwen3.5-99B-Reap-GameDev-MLX-4bit-FP16

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
9likes322downloads
Model Card

LongShu ยท Reaper-V1 (99B FP16 Edition)

An ultra-large multimodal MoE model with 99B total parameters / 10B active, featuring 205 experts and native vision support. Quantized with FP16 baseline for maximum precision on consumer-grade Apple Silicon hardware.

github: https://github.com/luoyike2003ls/LongShuGameDev


๐ŸŽฏ Model Overview

This is the FP16 baseline variant of the LongShu Reaper series, built on the massive Qwen3.5-99B MoE architecture with 205 routed experts. Unlike the standard 122B-A10B version, this model features:

  • โ€”Significantly larger expert pool (205 vs 105 experts) for richer knowledge capacity
  • โ€”FP16 quantization baseline (not BF16) for better compatibility and precision
  • โ€”Native multimodal support with vision config injected for image understanding
  • โ€”3.585 bits-per-weight extreme compression retaining maximum reasoning capability

๐Ÿ—๏ธ REAP Ecosystem

LongShu is the central brain of a complete game development agent network:

RoleCodenamePositioningCore Capabilities
CommanderTianceCore brain, logic reasoning hubGlobal planning, system decomposition, task dispatch
ArchitectXuangouCode architecture expertTech structure analysis, architecture optimization
ExecutorMoxingTask execution specialistCoding, debugging, test case generation
WatcherZhuzhaoMonitoring & alerting expertLog analysis, anomaly detection, risk early warning
ScholarWenyuanKnowledge management expertDocumentation understanding, knowledge graphs
CoordinatorHengshuTeam collaboration expertIntelligent task allocation, cross-functional coordination

โšก Core Technical Highlights

Massive MoE Architecture

  • โ€”48-layer deep network with hybrid Linear + Full Attention
  • โ€”205 routed experts, only a subset activated per token
  • โ€”Enormous knowledge capacity with efficient sparse computation

FP16 Precision Baseline

  • โ€”Quantization coefficients stored in float16 (not bfloat16)
  • โ€”Better compatibility across platforms and inference engines
  • โ€”Embeddings protected at 6-bit for maximum semantic fidelity

Game Engine-Aware Hybrid Quantization Strategy

ComponentBitsGroup SizeRationale
Embeddings & LM Head6-bit64Semantic fidelity hub
Attention Layers4-bit64Core reasoning mechanism
Shared Experts4-bit64Critical path components
Routed Experts3-bit64Massive pool, extreme compression
Router Gate4-bit64Decision-critical routing

Vision Multimodal Support

  • โ€”Vision config injected from original model
  • โ€”Supports image_token_id, video_token_id, vision_start/end_token_id
  • โ€”Ready for visual understanding tasks in game development

๐Ÿ“Š Model Specifications

MetricValue
Total Parameters~99B
Active Parameters~10B
Number of Experts205
Expert Layers48
Quantization3.585 bpw (FP16 baseline)
Model Size~41 GB
Context Length262,144 tokens (256K)
Inference Speed~35 tokens/s (Mac mini M4 Pro)
TTFT (First Token)~10.75s

๐Ÿ’ป Hardware Requirements

ConfigurationRecommendation
MacM2/M3/M4 series, 64GB+ Unified Memory
PCDual RTX 3090/4090 (24GB+)
FormatMLX 4-bit with FP16 baseline
Speed~35 tokens/s (Mac mini M4 Pro 64GB)

๐Ÿš€ Quick Start

python
from mlx_lm import load, generate

model_path = "luoyike2003/LongShu-Qwen3.5-99B-Reap-GameDev-MLX-4bit-FP16"
model, tokenizer = load(model_path)

prompt = "Explain the architecture of a scalable MMO server system"
messages = [{"role": "user", "content": prompt}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)

response = generate(model, tokenizer, prompt=text, max_tokens=2048)
print(response)

๐ŸŽฎ Use Cases

  • โ€”Game System Architecture Design โ€” Decompose complex requirements into modular architectures
  • โ€”Unreal/Unity Engine Expert โ€” Deep understanding of engine internals and APIs
  • โ€”AI Behavior Tree Design โ€” Design and optimize game AI systems
  • โ€”Code Review & Optimization โ€” Review code quality, identify performance bottlenecks
  • โ€”Multimodal Game Asset Analysis โ€” Analyze game screenshots, UI designs, and visual assets

๐Ÿ“„ License

Apache 2.0 License


LongShu ยท AI-Powered Partner for Game Development

<!-- Updated: 2026-06-19 --> <!-- model: 99B-REAP-FP16 -->