Muse Spark 1.2
meta/muse-spark-1.2Standard-tier multimodal reasoning model with function tool calling.
This model is available through the API. It is not currently offered as an agent's reasoning model.
Use through the API- Price: $1.25Price: $4.25
- Text, Image, Audio, Video, File
- 1M
Overview
Standard-tier multimodal reasoning model with function tool calling. It is billed from the same balance as every other model and API here, and the price of each call comes back in the response.
Pricing
Prices in USD per million tokens, using your plan when signed in.
| Meter | Per 1M tokens |
|---|---|
| Input | Price: $1.25 |
| Output | Price: $4.25 |
| Cache read | Price: $0.15 |
| Cache write | Price: $1.25 |
Your balance and per-call records come from /v1/credits and /v1/generation.
Use it
Point your client at the gateway and pass this model id. Nothing else changes.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://gateway.agentsky.dev/v1",
apiKey: process.env.AGENTSKY_API_KEY, // ast_…
});
const completion = await client.chat.completions.create({
model: "meta/muse-spark-1.2",
messages: [{ role: "user", content: "Summarise this ticket." }],
});
console.log(completion.usage.cost); // USD, in the response