LLM·Dex
Open weightsOtheropentext

DBRX

Databricks' 132B MoE, a notable 2024 open-weight release tuned for enterprise.

Updated


Quick facts

Released
Mar 2024
Context
32K tokens
Output / 1M
Pricing not published
License
Databricks Open Model License

About DBRX

DBRX was Databricks' splashy March 2024 entry into open-weight LLMs, 132B parameters in a sparse MoE config, tuned specifically for enterprise SQL, RAG, and code workloads. It's seen modest direct deployment but is a useful Databricks-lock-in option.

Benchmarks

Published scores from Other's model card or independent leaderboards. We do not publish numbers we cannot source, see methodology.

HumanEval
,
Python coding pass@1
MMLU
73.7
Broad academic knowledge
GPQA
,
Graduate-level reasoning
SWE-bench
,
Real software-engineering tasks
  • MMLU73.7

Capabilities

Strengths

  • Databricks-native
  • Tuned for enterprise SQL/code

Tracked weaknesses

  • Smaller community
  • Custom license

Pricing

Per-million-token rates as published by Other.

Per-token pricing not yet published for DBRX. Check the official provider site for current tiers.

Call DBRX from your code

Drop-in snippet for the Other SDK. Set your API key in the environment and run.

typescript
import OpenAI from "openai";

const client = new OpenAI({
  // Use OPENAI_API_KEY for OpenAI, or your provider's key + baseURL.
  apiKey: process.env.OPENAI_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "dbrx",
  messages: [
    { role: "user", content: "What's the time complexity of quicksort?" },
  ],
});

console.log(completion.choices[0].message.content);

Compare DBRX with…

Frequently asked

  • How much does DBRX cost?
    Other has not published per-token API pricing for DBRX at the time of writing. Check the official site for current pricing tiers, or compare against alternative models on LLMDex.
  • What is DBRX's context window?
    DBRX supports a context window of 32K tokens.
  • Is DBRX open source?
    DBRX ships with open weights under the Databricks Open Model License license. You can self-host it, fine-tune it, and (subject to the license terms) deploy it commercially.
  • When was DBRX released?
    DBRX was released on Mar 27, 2024 by Other.
Friday digest

Intelligence, distilled weekly.

One short email every Friday, new model launches, leaderboard moves, and pricing drops. Curated by hand. Free, no spam.