Databricks' open-source 132B parameter Mixture-of-Experts transformer model with 36B active parameters per input. Released under Databricks Open Model License, optimized for enterprise workloads including SQL generation and coding tasks.
33K tokens
1
available
Cheapest
Lambda
$2.40/1M tokens
Lambda
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $0.60Out: $1.80 | 100 RPM / 500K TPM | us-east-1us-west-2 | Unhealthy | 0ms |
Use this model via Lambda with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.lambda.com/v1",
apiKey: process.env.LAMBDA_API_KEY,
});
const response = await client.chat.completions.create({
model: "dbrx-instruct",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Lambda API • OpenAI-compatible SDK