~/models
10 models10 operators onlinepick a model · inspect machines · call via OpenAI SDK
catalog
10 of 10mlx-community/Qwen3.5-0.8B-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 · 12s agolive directory
machines3
input1Mtokens/Mtok
output1Mtokens/Mtok
runs · 7d3req
tokens · 7d3.5K
tokens · 24h36
machines on this model
3 rows
| rig | host | 24h | last seen |
|---|---|---|---|
PochoNode Mac mini · Apple M1, 16 GB | 0 req · 0 tk | 18s ago | |
aerie · Apple M2, 16 GB | 1 req · 36 tk | 12s ago | |
MBP-M1 · Apple M1 Pro, 32 GB | 0 req · 0 tk | 21s 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-0.8B-MLX-4bit",
messages: [{ role: "user", content: "Hello" }],
stream: true,
});
for await (const chunk of stream) {
process.stdout.write(chunk.choices[0]?.delta?.content ?? "");
}