Meta Superintelligence Labs' updated flagship, building on Muse Spark with stronger agentic reasoning, more reliable multi-agent orchestration, and improved multimodal understanding across voice, text, and image. Extends the context window and reduces latency and reasoning token usage while raising coding and tool-use accuracy. Powers Meta AI across its product ecosystem.
512K tokens
1
Доступна
Самый доступный
Meta AI
$5.50/1M tokens
Meta AI
Сортировка по общей стоимости входных и выходных токенов за 1 млн. Выберите строку, чтобы открыть страницу провайдера.
| Провайдер | Цена за 1 млн | Лимиты | Регионы | Состояние | Задержка |
|---|---|---|---|---|---|
Вход: $1.25Выход: $4.25 | 120 RPM / 250K TPM | global | Работает | 0ms |
Используйте эту модель через Meta AI с OpenAI-совместимым SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.meta.com/v1",
apiKey: process.env.META_API_KEY,
});
const response = await client.chat.completions.create({
model: "muse-spark-1.1",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API Meta AI · OpenAI-совместимый SDK