~/models

10 models22 operators onlinepick a model · inspect machines · call via OpenAI SDK

catalog

10 of 10
mlx-community/Qwen2.5-0.5B-Instruct-4bittext

Advertised on the network by 10 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.

currency · CCfreshest record · just nowlive directory
machines10
input1Mtokens/Mtok
output1Mtokens/Mtok
runs · 7d594req
tokens · 7d438.5K
tokens · 24h365.6K

machines on this model

10 rows

righost24hlast seen

sparkle · Apple M1, 16 GB

Atlas
Atlas

27 req · 57.6K tk

18s ago

mac.lan · Apple M2, 24 GB

Devin Gaffney
Devin Gaffney

78 req · 78.1K tk

29s ago

noz.am mbpro · Apple M4 Pro, 48 GB

David
David

12 req · 1.1K tk

16s ago

paperclip_maximizer_01 · Apple M1, 16 GB

Jack
Jack

0 req · 0 tk

just now

silver-cube · Apple M4 Max, 64 GB

Bailey Townsend 🦀
Bailey Townsend 🦀

30 req · 3.3K tk

9s ago

Mac Mini · Apple M1, 8 GB

Devin Gaffney
Devin Gaffney

78 req · 78.1K tk

29s ago

fair-wind · Apple M4 Max, 128 GB

Nick Gerakines
Nick Gerakines

9 req · 9.2K tk

10s ago

wackintosh · Apple M4, 16 GB

westin
westin

12 req · 5.3K tk

just now

Lino’s MacBook Pro · Apple M4 Pro, 48 GB

Lino Le Van
Lino Le Van

19 req · 200.5K tk

30s ago

gui.do MM2 · Apple M2 Pro, 16 GB

Guido X Jansen
Guido X Jansen

20 req · 4K tk

just now

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 ?? "");
}