~/models
catalog
8 of 8Advertised on the network by 13 machines. Rates come from each provider's priceList entry for this model id (typically tokens per MTok at the 1:1 uniform rate). Activity is from indexed receipts.
machines on this model
13 rows
| rig | host | 24h | last seen |
|---|---|---|---|
jacks-mac-mini · Apple M2, 8 GB | … | 41 req · 2.4K tk | just now |
mini.localdomain · Apple M4, 16 GB | 1 req · 181 tk | 27s ago | |
sparkle · Apple M1, 16 GB | 18 req · 14K tk | 11s ago | |
jays-Virtual-Machine.local · Apple M5 Pro (Virtual), 4 GB | 12 req · 531 tk | just now | |
Jay · Apple M3 Pro, 36 GB | 10 req · 442 tk | 26s ago | |
Mac Mini · Apple M1, 8 GB | 78 req · 37.3K tk | 11s ago | |
mac.lan · Apple M2, 24 GB | 78 req · 37.3K tk | 11s ago | |
paperclip_maximizer_01 · Apple M1, 16 GB | 0 req · 0 tk | 24s ago | |
noz.am mbpro · Apple M4 Pro, 48 GB | 4 req · 177 tk | just now | |
Lino’s MacBook Pro · Apple M4 Pro, 48 GB | 5 req · 326 tk | 11s ago | |
fair-wind · Apple M4 Max, 128 GB | 13 req · 9.1K tk | 25s ago | |
gui.do MM2 · Apple M2 Pro, 16 GB | 12 req · 1.6K tk | 26s ago | |
silver-cube · Apple M4 Max, 64 GB | 24 req · 2.1K tk | 24s ago |
example usage
OpenAI SDK (and curl) — same snippets as API docs.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://console.cocore.dev/v1",
apiKey: "cocore-...",
});
const stream = await client.chat.completions.create({
model: "mlx-community/Qwen2.5-0.5B-Instruct-4bit",
messages: [{ role: "user", content: "Hello" }],
stream: true,
});
for await (const chunk of stream) {
process.stdout.write(chunk.choices[0]?.delta?.content ?? "");
}