September 7, 2026 · 7 min read

How to run Qwen 3.8 without a GPU

Two different questions hide behind this one. If you mean the big Qwen 3.8 checkpoints, the answer is a hosted endpoint, no subscription required, and the numbers are below. If you mean Qwen 3.8 in general, there is a 27B in the same family that runs on a 16 GB card, and that is a better answer for most people. Both routes are here.

What is actually hosted

The cloud catalog carries two Qwen 3.8 entries, and every plan and every credit pack reaches both of them:

Qwen 3.8 MaxQwen 3.8 A95B
Model idQwen/Qwen3.8-MaxQwen/Qwen3.8-2.4T-A95B
PlanEvery plan and every credit packEvery plan and every credit pack
Credits per input token0.1650.2
Credits per output token0.49510.6
Image inputNoNo
ThinkingOn by default, can be switched offOn by default, cannot be switched off
Tool callsNativeNative

One credit is $0.00001 of wholesale inference cost. The difference between those two is smaller than the names suggest and the thinking switch is the part that matters, which is why it has its own page.

Which plan, and what it buys

Every plan and every credit pack reaches the whole chat catalog, so a bigger plan buys a bigger budget and nothing else. A 5 EUR credit pack is 165,000 credits and needs no subscription at all. The Hosted plan is 19 EUR a month for 900,000 credits, Pro is 49 EUR for 2,350,000 and Max is 99 EUR for 5,000,000.

Spent entirely on output tokens, that works out to roughly:

BudgetQwen 3.8 MaxQwen 3.8 A95B
5 EUR pack, 165,000 credits333,000 output tokens275,000 output tokens
Hosted, 900,000 credits1.8 million1.5 million
Pro, 2,350,000 credits4.7 million3.9 million
Max, 5,000,000 credits10.1 million8.3 million

Those are output tokens only. Input tokens come out of the same wallet, so a long context chat lands below the figure in the row.

What else is in the same picker

The other 36 chat models sit next to the two Qwen 3.8 entries rather than behind a plan, and most of them are far cheaper per token. A few worth knowing by name:

If what you wanted from Qwen 3.8 was a strong reasoner without buying a card, GLM 5.3 Flash gets you most of the way there for a tenth of the token price, and it reads pictures, which neither Qwen 3.8 entry does.

The API route

  1. Sign in at lu-labs.ai and go to Settings > Cloud API keys.
  2. Create a key. It carries an lu_ prefix and is shown once, so copy it before the dialog closes.
  3. Point your client at base URL https://lu-labs.ai/api/inference/v1 with the OpenAI chat completions shape.
curl https://lu-labs.ai/api/inference/v1/chat/completions \
  -H "Authorization: Bearer $LU_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "Qwen/Qwen3.8-Max",
    "messages": [
      {"role": "user", "content": "Explain this stack trace and name the likely cause."}
    ]
  }'

SillyTavern, Aider, LibreChat and anything else that takes a base URL, a key and a model string work against the same endpoint.

The other answer: run the 27B at home

The same Qwen 3.8 wave shipped a 27B dense checkpoint, and unlike the big two it is Apache 2.0 and it fits on hardware people actually own. Real numbers from our own setup guide:

QuantSizePractical home
UD-Q3_K_XL13.4 GB16 GB cards
IQ4_XS15.7 GB16 GB cards, the last one that fits whole
Q4_K_M17.1 GB24 GB cards, the sweet spot
Q6_K22.9 GB24 GB, barely, or 32 GB

It is a native vision language model, so a 0.9 GB mmproj file gets you image input the hosted Qwen 3.8 entries do not have. Context is 262,144 native. The full walkthrough with the KV cache math and the chat template trap is in how to run Qwen 3.8 27B locally, and there is a mirror of it at lu-labs.ai.

Our free desktop app for Windows and Linux is one way to run it, and it has a Cloud switch on the same account, so the local 27B and the hosted models sit in one picker. That is the setup we actually use: the 27B for the everyday work that stays on the machine, the switch for the prompts that outgrow it.

Related reading


Locally Uncensored is AGPL-3.0 licensed. Built by PurpleDoubleD. Bug reports and feature requests on GitHub Discussions or in the Discord.

Qwen 3.8 Max and A95B in the hosted picker, or the 27B on your own card. Same account either way.

Get Qwen 3.8 on LU Labs