~/models

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

catalog

8 of 8
mlx-community/Qwen3.5-4B-MLX-4bittext

Advertised on the network by 3 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 · 14s agolive directory
machines3
input1Mtokens/Mtok
output1Mtokens/Mtok
runs · 7d10req
tokens · 7d25.5K
tokens · 24h11.7K

machines on this model

3 rows

righost24hlast seen

feixiao · Apple M4, 16 GB

4 req · 11.7K tk

14s ago

MacBook Air · Apple M2, 16 GB

0 req · 0 tk

26s ago

PochoNode Mac mini · Apple M1, 16 GB

1 req · 40 tk

27s ago

example usage

OpenAI SDK (and curl) — same snippets as API docs.

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://cocore.dev/v1",
  apiKey: "cocore-...",
});

const stream = await client.chat.completions.create({
  model: "mlx-community/Qwen3.5-4B-MLX-4bit",
  messages: [{ role: "user", content: "Hello" }],
  stream: true,
});

for await (const chunk of stream) {
  process.stdout.write(chunk.choices[0]?.delta?.content ?? "");
}