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
可用
价格最低
Snowflake Cortex AI
$0.00/1M tokens
Snowflake Cortex AI
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: 免费输出: 免费 | 300 RPM / 1.0M TPM | us-east-1us-west-2eu-west-1 | 异常 | 0ms |
通过 Snowflake Cortex AI 使用此模型,兼容 OpenAI 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);使用 Snowflake Cortex AI API · 兼容 OpenAI SDK