Model

TNG: DeepSeek R1T2 Chimera

Performance and pricing snapshot from the global rankings; composite scoring matches the on-site model board.

Data updated:

Data version: v20260430T083453Z Data size: 100

About this model

TNG: DeepSeek R1T2 Chimera ranks #32 on our global model leaderboard. It is listed as a LLM with 164k ctx and a typical snapshot price around $0.70 per 1M tokens. The table below compares provider quotes from the same data snapshot; the code snippet shows a minimal OpenRouter-compatible integration.

You can also explore more models from Tngtech , and browse more options from 🇩🇪 Germany .

Key metrics

Rank
32
Kind
LLM
Core metric
164k ctx
1M tokens (avg)
$0.70
Vendor / team
Tngtech
Origin
🇩🇪 Germany
License
Proprietary
VRAM requirement
API-managed

Hippo's Quick Action

OpenRouter chat completions URL; set Authorization and body per docs.

Price calculator

Est. monthly cost (USD):

Price comparison (snapshot)

Source / aggregator Price / 1M tokens Latency
OpenRouter $0.70

Figures come from the imported leaderboard snapshot; live aggregator pricing and latency can change.

Token pricing by provider

Compare per-provider token prices for this model across available platforms.

Provider Input / 1M tokens Output / 1M tokens Status Price updated
OpenRouter $0.30 $1.10 Verified 2026-04-30T08:36:20.549Z
DeepSeek $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Mistral La Plateforme $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Groq $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Cerebras Inference $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Fireworks $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
SambaNova $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Lepton $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Together $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
DeepInfra $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Nebius $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Hyperbolic $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
FriendliAI $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Baseten $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
fal $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Anyscale $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Novita $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Perplexity $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
Replicate $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z
SiliconFlow $0.14 $0.28 Snapshot 2026-04-29T05:13:01.369Z

Provider prices are sourced from the token comparison dataset and may change between snapshots.

How to integrate

OpenRouter exposes an OpenAI-compatible Chat Completions endpoint. Use the tabs below to switch example languages. Replace the model id with the one from your provider page if you route elsewhere.

// Node.js 18+ — set OPENROUTER_API_KEY in your environment
const res = await fetch('https://openrouter.ai/api/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.OPENROUTER_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: "tngtech/deepseek-r1t2-chimera",
    messages: [{ role: 'user', content: 'Hello' }],
  }),
});
const data = await res.json();
console.log(data);

Store API keys in environment variables or a secret manager—never commit them to source control.

Alternative picks

Pick one or two more models on global rankings and use Compare to view them side by side.

Run with Ollama

Paste into your terminal (install Ollama first):