Snowflake's enterprise-focused open LLM with 480B total parameters using a fine-grained MoE architecture with only 17B active parameters per input. Apache 2.0 licensed, excels at SQL generation, coding, and enterprise intelligence tasks with breakthrough training efficiency.
4K tokens
1
available
Cheapest
Snowflake Cortex AI
$0.00/1M tokens
Snowflake Cortex AI
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: FreeOut: Free | 300 RPM / 1.0M TPM | us-east-1us-west-2eu-west-1 | Unhealthy | 0ms |
Use this model via Snowflake Cortex AI with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.snowflake.com/v1",
apiKey: process.env.SNOWFLAKE_API_KEY,
});
const response = await client.chat.completions.create({
model: "snowflake-arctic-instruct",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Snowflake Cortex AI API • OpenAI-compatible SDK