~/models

8 models18 operators onlinepick a model · inspect machines · call via OpenAI SDK

catalog

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

Advertised 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.

currency · CCfreshest record · just nowlive directory
machines13
input1Mtokens/Mtok
output1Mtokens/Mtok
runs · 7d526req
tokens · 7d141.3K
tokens · 24h68K

machines on this model

13 rows

righost24hlast seen

jacks-mac-mini · Apple M2, 8 GB

…phbhfn7v

41 req · 2.4K tk

just now

mini.localdomain · Apple M4, 16 GB

westin
westin

1 req · 181 tk

27s ago

sparkle · Apple M1, 16 GB

Atlas
Atlas

18 req · 14K tk

11s ago

jays-Virtual-Machine.local · Apple M5 Pro (Virtual), 4 GB

NeuroWinter
NeuroWinter

12 req · 531 tk

just now

Jay · Apple M3 Pro, 36 GB

Jay 🔔
Jay 🔔

10 req · 442 tk

26s ago

Mac Mini · Apple M1, 8 GB

Devin Gaffney
Devin Gaffney

78 req · 37.3K tk

11s ago

mac.lan · Apple M2, 24 GB

Devin Gaffney
Devin Gaffney

78 req · 37.3K tk

11s ago

paperclip_maximizer_01 · Apple M1, 16 GB

Jack
Jack

0 req · 0 tk

24s ago

noz.am mbpro · Apple M4 Pro, 48 GB

David
David

4 req · 177 tk

just now

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

Lino Le Van
Lino Le Van

5 req · 326 tk

11s ago

fair-wind · Apple M4 Max, 128 GB

Nick Gerakines
Nick Gerakines

13 req · 9.1K tk

25s ago

gui.do MM2 · Apple M2 Pro, 16 GB

Guido X Jansen
Guido X Jansen

12 req · 1.6K tk

26s ago

silver-cube · Apple M4 Max, 64 GB

Bailey Townsend 🦀
Bailey Townsend 🦀

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