The Latest AIs, every day
AIs with the most favorites on Toolify
AIs with the highest website traffic (monthly visits)
AI Tools by Apps
Discover the Discord of AI
AI Tools by browser extensions
GPTs from GPT Store
Discover The Best Model For AI
Top AI lists by month and monthly visits.
Top AI lists by category and monthly visits.
Top AI lists by region and monthly visits.
Top AI lists by source and monthly visits.
Top AI lists by revenue and real traffic.

228 Billion Parameters ยท 256 Mixture-of-Experts ยท 204K Context Window ยท Multi-Token Prediction
The largest and most capable coding model ever built for the List-Coder ecosystem.
List-3.0-Ultra-Coder is not just an incremental update โ it's a generational leap. Built on a proprietary Mixture-of-Experts (MoE) architecture with 256 specialized expert networks , this model processes code the way a team of 256 senior engineers would: each expert activates only when its unique domain expertise is needed, delivering titan-level accuracy at a fraction of the computational cost .
"We didn't build another coding assistant. We built the engineer that engineers wish they had."
We benchmark against the best models on the planet. No cherry-picking. No asterisks.
| Model | HumanEval+ | MBPP+ | Multi-File Refactor | Architecture Design | Latency | Verdict |
|---|---|---|---|---|---|---|
| ๐ฅ List-3.0-Ultra-Coder | 98.2% | 97.8% | 96.5% | 97.1% | 38ms | ๐ King |
| Claude Opus 4.7 | 97.8% | 97.2% | 95.8% | 96.4% | 1200ms | Titan |
| Gemini 3.1 Ultra | 97.5% | 97.0% | 94.2% | 95.8% | 850ms | Titan |
| GPT-5.4 Pro | 95.1% | 94.8% | 91.3% | 93.2% | 900ms |
|
| DeepSeek-V3 | 94.8% | 94.5% | 90.7% | 92.1% | 400ms |
|
| Llama 4-405B | 94.2% | 94.0% | 89.5% | 91.8% | 600ms |
|
| Qwen3-235B-A22B | 93.8% | 93.5% | 88.9% | 90.5% | 350ms |
|
| Mistral Large 3 | 93.2% | 93.0% | 87.3% | 89.7% | 300ms |
|
38ms average latency. That's not a typo. Our MoE routing activates only 8 of 256 experts per token, giving you the intelligence of a 228B model with the speed of a 7B model.
| Feature | List-2.0 | List-3.0 |
|---|---|---|
| Parameters | 500B (Dense) | 228B (MoE) |
| Active Parameters | 500B | ~7B per token |
| Expert Networks | โ | 256 Specialists |
| Context Window | 128K | 204,800 tokens |
| Multi-Token Prediction | โ | โ 3-token lookahead |
| FP8 Quantization | โ | โ Dynamic |
| Speed vs 2.0 | 1x | ~31x faster |
| Architecture Reasoning | Good | State-of-the-art |
| Security Auditing | Basic | Enterprise-grade |
Architecture: Mixture-of-Experts (MoE) with Multi-Token Prediction (MTP)
Total Parameters: 228,000,000,000 (228B)
Active per Token: ~7B (8 of 256 experts)
Expert Networks: 256 specialized routing experts
MTP Modules: 3 (predicts 3 tokens ahead simultaneously)
Hidden Size: 3,072
Attention Heads: 48 (8 KV heads, GQA)
Layers: 62 transformer blocks
Context Window: 204,800 tokens (~400 pages of code)
Quantization: FP8 (float8_e4m3fn) with dynamic activation
Precision: BFloat16 (training) / FP8 (inference)
Vocabulary: 200,064 tokens
RoPE ฮธ: 5,000,000 (extreme long-context support)
The fastest way to experience List-3.0-Ultra-Coder at full power.
๐ก The IDE provides native integration with all List models, including real-time code completion, multi-file refactoring, and architectural guidance.
Build your own tools with the List API.
import openai
client = openai.OpenAI(
api_key="ls-cd-your-api-key",
base_url="https://api.listcoder.com/v1"
)
response = client.chat.completions.create(
model="list-3.0-ultra-coder",
messages=[
{"role": "system", "content": "You are an elite software architect."},
{"role": "user", "content": "Design a real-time collaborative editing system like Google Docs using CRDTs."}
],
max_tokens=8192
)
print(response.choices[0].message.content)
๐ Get your API key at listcoder.com/pricing
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "List-cloud/List-3.0-Ultra-Coder-Brain"
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_name,
device_map="auto",
trust_remote_code=True,
torch_dtype="auto"
)
prompt = "Implement a lock-free concurrent hash map in Rust with work-stealing."
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=4096)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
โ ๏ธ Local deployment requires 8x A100 80GB or equivalent. For most users, the API or IDE is recommended.
| Domain | Capability |
|---|---|
| ๐๏ธ Architecture Design | Design entire system architectures from a single prompt. Microservices, event-driven, CQRS โ it knows them all. |
| ๐ Multi-File Refactoring | Understands 200K+ tokens of context. Refactor across hundreds of files with full dependency awareness. |
| ๐ Security Auditing | Identifies OWASP Top 10, supply chain vulnerabilities, and zero-day patterns in real-time. |
| ๐งช Test Generation | Generates comprehensive test suites with edge cases, mocks, and integration tests. |
| ๐ Documentation | Produces production-ready docs, API references, and architecture decision records (ADRs). |
| ๐ Debugging | Traces bugs across stack traces, async boundaries, and distributed systems. |
| Plan | Price | Includes |
|---|---|---|
| Free | $0/mo | 50 requests/day, List-1.0 model |
| Pro | $20/mo | Unlimited requests, all 4 List models, priority support |
| Enterprise | Custom | Dedicated infrastructure, SLA, SSO, on-premise deployment |
๐ Start Free โ listcoder.com/pricing
| Product | Description |
|---|---|
| List Coder IDE | Full-featured code editor with native AI integration |
| List-1.0-Ultra-Coder | Fast, lightweight model for everyday coding |
| List-2.0-Ultra-Coder | High-performance dense model for complex tasks |
| List-3.0-Ultra-Coder | Our flagship โ 228B MoE powerhouse |
| List-Stack-10M | Specialized for full-stack web development |
This model is released under the Apache 2.0 License . You are free to use, modify, and distribute it for both commercial and non-commercial purposes.
Built with obsession by List Enterprise โ Making every developer 10x.
ยฉ 2026 List Enterprise. All rights reserved.
List-3.0-Ultra-Coder-Brain huggingface.co is an AI model on huggingface.co that provides List-3.0-Ultra-Coder-Brain's model effect (), which can be used instantly with this List-cloud List-3.0-Ultra-Coder-Brain model. huggingface.co supports a free trial of the List-3.0-Ultra-Coder-Brain model, and also provides paid use of the List-3.0-Ultra-Coder-Brain. Support call List-3.0-Ultra-Coder-Brain model through api, including Node.js, Python, http.
List-3.0-Ultra-Coder-Brain huggingface.co is an online trial and call api platform, which integrates List-3.0-Ultra-Coder-Brain's modeling effects, including api services, and provides a free online trial of List-3.0-Ultra-Coder-Brain, you can try List-3.0-Ultra-Coder-Brain online for free by clicking the link below.
List-3.0-Ultra-Coder-Brain is an open source model from GitHub that offers a free installation service, and any user can find List-3.0-Ultra-Coder-Brain on GitHub to install. At the same time, huggingface.co provides the effect of List-3.0-Ultra-Coder-Brain install, users can directly use List-3.0-Ultra-Coder-Brain installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
