Quasar 438B: What Europe's Highest-Scoring Reasoning Model Means for Enterprise Agents and Coding

·10 min read·Evergreen Tools Team
Close-up of a processor representing the 438 billion parameter model

💡 Tool TipEvaluating a 438B-class model for enterprise agents? Use Evergreen Tools' AI Token Counter to model per-task inference cost, Text Diff Checker to inspect what the model changed across a trial run, and AI Code Reviewer to grade its coding output consistently. AI Token Counter, Text Diff Checker, AI Code Reviewer

On September 2, 2026, Spanish company Multiverse Computing launched Quasar 438B, the first large-scale model from a firm better known for compressed and quantum-inspired AI, and it is aimed squarely at enterprise-scale agents and coding. On Artificial Analysis' Intelligence Index v4.1.1 it scores 43, the highest result ever achieved by a European model, ahead of Mistral Medium 3.5 at 30 and NVIDIA Nemotron 3 Ultra at 38. For developers, the news is less about another 438-billion-parameter model and more about three things: the state of European sovereign AI, the methodology of a compression company building large, and the open question of whether a model this size can be fast enough for interactive agent work. This guide separates the launch facts from the benchmark noise and the engineering reality.

1. The Launch Facts: Who, When, and What

Multiverse Computing is headquartered in San Sebastian, Spain, and built its reputation on compressed AI models and quantum-inspired algorithms. On September 2, 2026, with some outlets reporting on September 3, it launched Quasar 438B: 438 billion parameters, the company's first large model, explicitly targeting enterprise-scale agents and coding, with support for English and Spanish. The official story and third-party data line up on the headline numbers: a score of 43 on Artificial Analysis' Intelligence Index v4.1.1, the highest for a European model; 69.3 on Terminal-Bench v2.1; and 75.0 on the Long Context Reasoning benchmark, 18.7 points ahead of Mistral Medium 3.5 and 15.4 points ahead of Nemotron 3 Ultra. The launch messaging also leans on sovereignty, arguing that Europe can compete with US models.

# Pull the public model card facts before you evaluate.
# Quasar 438B launch facts reported on 2026-09-02/03:
# - Artificial Analysis Intelligence Index v4.1.1: 43
# - Mistral Medium 3.5: 30 | NVIDIA Nemotron 3 Ultra: 38
# - Terminal-Bench v2.1: 69.3 | Long Context Reasoning: 75.0
FACTS = {
  "vendor": "Multiverse Computing",
  "params": 438_000_000_000,
  "intelligence_index": 43,
  "terminal_bench_v21": 69.3,
  "long_context_reasoning": 75.0
}
print(FACTS)

2. What a Score of 43 Means: A New European Reference Point

The number 43 only means something inside the European coordinate system: on the same evaluation, Mistral Medium 3.5 sits at 30 and NVIDIA Nemotron 3 Ultra at 38. In other words, Quasar is not just another European model; it moves the continent's best score from 38 to 43. Stay sober about the gap to US frontier models, though, and note that The New Stack's September 2 coverage already warned that the benchmarks tell a more complicated story, with speed and reasoning quality inconsistent across tasks. The useful engineering frame is to treat Quasar as the new reference point of the European camp: if data sovereignty or compliance requires inference inside Europe, this is the first time a locally hosted near-frontier agent option has a comparable scorecard at all.

Global network visual representing sovereign European AI
# Latency budget: is 183 tokens per second enough for your agent?
# A 4,000-token answer at 183 tps takes about 22 seconds of generation.
def generation_seconds(output_tokens, tps):
    return round(output_tokens / tps, 1)

for out in (2000, 4000, 8000):
    print(out, "tokens ->", generation_seconds(out, 183), "s")

3. The Numbers That Matter for Enterprise Agents: 69.3, 75.0, and 183 tps

Three numbers matter most for enterprise agent teams. First, 69.3 on Terminal-Bench v2.1, a terminal and agent-operation benchmark that resembles having an agent run commands in real environments. Second, 75.0 on Long Context Reasoning, which matters for pushing contracts, audit reports, or a large repository into context before reasoning, and is the differentiator the vendor emphasizes. Third, the roughly 183 output tokens per second recorded by Artificial Analysis: a 4,000-token answer takes around 22 seconds of generation, which interactive agents tolerate, but batch processing still needs queueing and concurrency planning. Do not stop at peak scores; multiply the throughput by your average output length and compute real end-to-end latency.

// Enterprise agent configuration, English or Spanish.
{
  "model": "quasar-438b",
  "language": "en",
  "agent": {
    "role": "senior_engineer",
    "tools": ["read_repo", "search_code", "suggest_diff"],
    "max_steps": 8
  },
  "output": {"format": "diff", "include_explanation": true}
}

4. A Compression Company Building 438B: Watch the Deployment Narrative

Multiverse's core competency is model compression and quantum-inspired algorithms, so the implicit Quasar narrative is 438-billion-parameter capability at a manageable deployment cost. That pitch is attractive for enterprises that want to run a model of this class on their own or Europe-based infrastructure instead of sending data to offshore APIs. Engineering should verify three things: whether compression-induced accuracy loss is acceptable on your tasks; the real throughput after FP8 or lower-precision quantization; and how KV cache and long-context behavior perform on constrained hardware. The New Stack's evaluation already shows the speed story is more complicated than the company's framing, so let one word of marketing convince you of nothing. Run a benchmark on your own GPU budget.

Team in an office representing enterprise agent evaluation

5. Sovereign AI and Bilingual Support: What It Actually Buys European Teams

Quasar supports English and Spanish, and the launch messaging leans on European sovereign AI. For European enterprises that translates into two concrete benefits. First, data governed by GDPR and sector regulations can stay inside Europe for inference, avoiding the compliance cost of cross-border data transfer. Second, Spanish is one of the world's largest native-language populations, so bilingual support gives customer service, documentation, and internal tooling in Southern European markets a genuinely local large model for the first time. But sovereignty is not a substitute for engineering diligence: verify where the model is hosted, who operates it, and what the vendor's long-term support commitment looks like. Sovereign AI only matters when you actually control the data path.

# Evaluation harness: 15 enterprise tasks, compare two endpoints.
def trial(endpoint, tasks):
    rows = []
    for t in tasks:
        r = call(endpoint, t)
        rows.append({
            "task": t.id,
            "resolved": r.resolved,
            "tokens": r.total_tokens,
            "seconds": r.wall_seconds,
            "review_score": grade(r.diff)   # human or AI review
        })
    return rows

a = trial("quasar-438b", TASKS)
b = trial("current-model", TASKS)
print("quasar resolved:", sum(x["resolved"] for x in a), "/", len(TASKS))
print("current resolved:", sum(x["resolved"] for x in b), "/", len(TASKS))

6. An Evaluation Checklist Before Adopting Any 438B-Class Model

No matter how good the launch looks, run the same evaluation before adopting. Pick fifteen real enterprise tasks spanning long-document reasoning, repository-level code changes, terminal operations, and bilingual scenarios; run Quasar and your current model against the same set; and compare resolved rate, tokens per task, wall-clock time, and code-review scores. Use a diff checker to verify its edits stay disciplined and an AI code reviewer to grade output consistently. Stress long context in particular: 75.0 on a Long Context benchmark looks great in a demo, but your mix of contracts and repositories may be entirely different. After two weeks of data, route the tasks Quasar wins to Quasar and leave the rest in place. Europe's progress deserves attention, but your invoices and defect data deserve the final call.

// Serving shape for a 438B-class model with compression in mind.
// Numbers are planning placeholders; benchmark your own GPUs.
{
  "model": "quasar-438b",
  "tensor_parallel_size": 8,
  "quantization": "fp8",
  "max_model_len": 65536,
  "gpu_memory_utilization": 0.9,
  "enable_prefix_caching": true
}

📌 Frequently Asked Questions

When was Quasar 438B released?

Multiverse Computing launched Quasar 438B on September 2, 2026, with some outlets reporting on September 3. It is the company's first large model, with 438 billion parameters aimed at enterprise agents and coding.

When was Quasar 438B released?

Multiverse Computing launched Quasar 438B on September 2, 2026, with some outlets reporting on September 3. It is the company's first large model, with 438 billion parameters aimed at enterprise agents and coding.

When was Quasar 438B released?

Multiverse Computing launched Quasar 438B on September 2, 2026, with some outlets reporting on September 3. It is the company's first large model, with 438 billion parameters aimed at enterprise agents and coding.

When was Quasar 438B released?

Multiverse Computing launched Quasar 438B on September 2, 2026, with some outlets reporting on September 3. It is the company's first large model, with 438 billion parameters aimed at enterprise agents and coding.

When was Quasar 438B released?

Multiverse Computing launched Quasar 438B on September 2, 2026, with some outlets reporting on September 3. It is the company's first large model, with 438 billion parameters aimed at enterprise agents and coding.

What did Quasar score on Artificial Analysis?

It scored 43 on the Intelligence Index v4.1.1, the highest European result, ahead of Mistral Medium 3.5 at 30 and NVIDIA Nemotron 3 Ultra at 38.

What did Quasar score on Artificial Analysis?

It scored 43 on the Intelligence Index v4.1.1, the highest European result, ahead of Mistral Medium 3.5 at 30 and NVIDIA Nemotron 3 Ultra at 38.

What did Quasar score on Artificial Analysis?

It scored 43 on the Intelligence Index v4.1.1, the highest European result, ahead of Mistral Medium 3.5 at 30 and NVIDIA Nemotron 3 Ultra at 38.

What did Quasar score on Artificial Analysis?

It scored 43 on the Intelligence Index v4.1.1, the highest European result, ahead of Mistral Medium 3.5 at 30 and NVIDIA Nemotron 3 Ultra at 38.

What did Quasar score on Artificial Analysis?

It scored 43 on the Intelligence Index v4.1.1, the highest European result, ahead of Mistral Medium 3.5 at 30 and NVIDIA Nemotron 3 Ultra at 38.

How fast is Quasar's output?

Artificial Analysis recorded roughly 183 output tokens per second, so a 4,000-token answer takes about 22 seconds of generation; your end-to-end latency depends on average output length and concurrency.

How fast is Quasar's output?

Artificial Analysis recorded roughly 183 output tokens per second, so a 4,000-token answer takes about 22 seconds of generation; your end-to-end latency depends on average output length and concurrency.

How fast is Quasar's output?

Artificial Analysis recorded roughly 183 output tokens per second, so a 4,000-token answer takes about 22 seconds of generation; your end-to-end latency depends on average output length and concurrency.

How fast is Quasar's output?

Artificial Analysis recorded roughly 183 output tokens per second, so a 4,000-token answer takes about 22 seconds of generation; your end-to-end latency depends on average output length and concurrency.

How fast is Quasar's output?

Artificial Analysis recorded roughly 183 output tokens per second, so a 4,000-token answer takes about 22 seconds of generation; your end-to-end latency depends on average output length and concurrency.

Which languages does Quasar support?

The company says Quasar supports English and Spanish, positioning it for European markets and the sovereign-AI narrative.

Which languages does Quasar support?

The company says Quasar supports English and Spanish, positioning it for European markets and the sovereign-AI narrative.

Which languages does Quasar support?

The company says Quasar supports English and Spanish, positioning it for European markets and the sovereign-AI narrative.

Which languages does Quasar support?

The company says Quasar supports English and Spanish, positioning it for European markets and the sovereign-AI narrative.

Which languages does Quasar support?

The company says Quasar supports English and Spanish, positioning it for European markets and the sovereign-AI narrative.

Should my enterprise adopt Quasar immediately?

Run a side-by-side trial on fifteen real tasks first and compare resolved rate, cost, and latency. Independent coverage such as The New Stack notes the benchmark story is more complicated than the launch messaging.

Should my enterprise adopt Quasar immediately?

Run a side-by-side trial on fifteen real tasks first and compare resolved rate, cost, and latency. Independent coverage such as The New Stack notes the benchmark story is more complicated than the launch messaging.

Should my enterprise adopt Quasar immediately?

Run a side-by-side trial on fifteen real tasks first and compare resolved rate, cost, and latency. Independent coverage such as The New Stack notes the benchmark story is more complicated than the launch messaging.

Should my enterprise adopt Quasar immediately?

Run a side-by-side trial on fifteen real tasks first and compare resolved rate, cost, and latency. Independent coverage such as The New Stack notes the benchmark story is more complicated than the launch messaging.

Should my enterprise adopt Quasar immediately?

Run a side-by-side trial on fifteen real tasks first and compare resolved rate, cost, and latency. Independent coverage such as The New Stack notes the benchmark story is more complicated than the launch messaging.