Instructions to use batiai/Qwen3.8-27B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use batiai/Qwen3.8-27B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/batiai/Qwen3.8-27B-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use batiai/Qwen3.8-27B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "batiai/Qwen3.8-27B-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "batiai/Qwen3.8-27B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/batiai/Qwen3.8-27B-GGUF:Q4_K_M
- Ollama
How to use batiai/Qwen3.8-27B-GGUF with Ollama:
ollama run hf.co/batiai/Qwen3.8-27B-GGUF:Q4_K_M
- Unsloth Studio
How to use batiai/Qwen3.8-27B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for batiai/Qwen3.8-27B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for batiai/Qwen3.8-27B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for batiai/Qwen3.8-27B-GGUF to start chatting
- Pi
How to use batiai/Qwen3.8-27B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "batiai/Qwen3.8-27B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use batiai/Qwen3.8-27B-GGUF with Docker Model Runner:
docker model run hf.co/batiai/Qwen3.8-27B-GGUF:Q4_K_M
- Lemonade
How to use batiai/Qwen3.8-27B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull batiai/Qwen3.8-27B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.8-27B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use batiai/Qwen3.8-27B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default batiai/Qwen3.8-27B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use batiai/Qwen3.8-27B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf batiai/Qwen3.8-27B-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "batiai/Qwen3.8-27B-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Qwen3.8-27B GGUF โ Quantized by BatiAI
Qwen3.8-27B GGUF โ Quantized by BatiAI
Qwen's newest 27B โ on your Mac, in Korean, in one line.
Weights dropped 2026โ08โ13. Quantized the same week, straight from the official release. Six sizes from 10 GB, vision projector included, Korean output actually tested โ and Ollama tags published alongside, which most GGUF drops skip.
ollama run batiai/qwen3.8-27b:iq4
๐ง What Qwen3.8-27B actually is
Qwen's newest generation, built on the Qwen3.5 architecture โ and the first 27B they call "deploymentโfriendly" while keeping frontier behaviour. Straight from the official card:
| Context | 262,144 tokens native, extensible to 1M |
| Architecture | Hybrid: 16 ร (3 ร Gated DeltaNet โ FFN, then 1 ร Gated Attention โ FFN) โ linear attention for most layers, full attention every 4th. That's why it stays fast at long context. |
| Vision | Native image and video understanding โ STEM diagrams, documents, hourโscale video |
| Thinking | On by default, disable per request, depth tunable via reasoning_effort |
| Agents | Stronger autonomous planning and environmentโfeedback handling |
| Params | 27B dense ยท hidden 5120 ยท 64 layers ยท vocab 248,320 |
Architecture/context figures from the official model card. Qwen's published benchmark numbers are for the fullโprecision base model โ we don't restate them here, because what we can honestly report is what these quants did on our machine (below).
๐ฆ Pick your size
| Quant | Size | Unified memory you need | Why this one |
|---|---|---|---|
Q2_K_S |
10.2 GB | 24 GB | smallest, and the fastest โ 28 t/s on M4 Max |
IQ3_XXS |
11.2 GB | 24 GB | imatrixโcalibrated; better quality than Q2 at a small speed cost |
Q3_K_M |
13.3 GB | 32 GB | โ ๏ธ only if IQ4_XS doesn't fit โ see the speed note below |
IQ4_XS โญ |
15.1 GB | 32 GB | the one to pick โ faster and better than Q3_K_M on Apple Silicon |
Q4_K_M |
16.5 GB | 36 GB+ | high quality, essentially the same speed as IQ4_XS |
Q6_K |
22.1 GB | 48 GB+ | nearโlossless |
mmproj (BF16) |
0.93 GB | + ~1 GB | vision projector โ pair with any of the above for image input |
โ ๏ธ Q3_K_M is smaller and slower on Apple Silicon. Skip it if you can.
Size ordering does not predict speed here. Measured on M4 Max (Metal,
-ngl 99):
Quant Size Generation Q3_K_M12.38 GiB 19.2 t/s โ smaller IQ4_XS14.04 GiB 22.4 t/s (+17%) Q4_K_M15.40 GiB 22.7 t/s (+18%) Why: generation speed is capped by
memory bandwidth รท model sizeโ every token reads the whole model. Against that ceiling (M4 Max, 546 GB/s), the efficiency numbers show what's really going on:
Quant Ceiling Measured Efficiency Q2_K_S 53.4 t/s 28.2 53% IQ3_XXS 48.8 23.7 48% Q3_K_M 41.1 19.2 47% IQ4_XS 36.2 22.4 62% Q4_K_M 33.0 22.7 69% The low-bit tiers sit at ~50% of their ceiling while Q4_K_M reaches 69%. They aren't bandwidth-limited โ they're compute-limited on dequantization. Q2_K/Q3_K/IQ3 unpack in more steps and that costs Metal ALU time. So shrinking the file past Q4 buys you memory, not speed.
On CUDA the same quants land at 70โ80% efficiency across the board (50.8 / 50.3 / 46.2 t/s โ effectively tied), so this is an Apple Silicon effect. Linux/CUDA users can pick on size alone.
And it isn't specific to this model. Going back through our own benchmark archive, the same Q3_K_M โ Q4_K_M ordering shows up across four unrelated model families and two different chips:
Model Chip Q3_K_M Q4_K_M Gap Granite 4.1 (8B dense) M4 Max 60.8 77.4 +27% Qwen3.8โ27B (this model) M4 Max 19.2 22.7 +18% Gemma 4 26B (MoE) M4 Max 78.0 87.6 +12% Granite 4.1 (8B dense) M4 (mini) 12.8 14.3 +11% Qwen3.6โ27B M4 Max 15.3 16.6 +8% Dense and MoE, 8B and 27B, Max and nonโMax โ same direction every time. Treat it as a property of Metal's Q3_K kernel, not of any one checkpoint.
Rows other than Qwen3.8โ27B were measured through Ollama (
bench.sh); the Qwen3.8โ27B row isllama-bench. Absolute values aren't comparable across harnesses โ the ordering within each row is the finding. Qwen3.8โ27B numbers: llama.cpp b9430, M4 Max 128 GB, idle machine. The reversal was reโconfirmed on b10450.Practical reading: on a Mac,
Q4_K_Mis the most efficient kernel andIQ4_XSis within noise of it โ pick IQ4_XS to save 1.4 GB, Q4_K_M if you have the room.
๐จ 16 GB Macs: this model does not fit. Please don't waste the download.
We originally listed 16 GB targets here. That was wrong and we're correcting it. A 16 GB Mac has roughly 12 GB usable after macOS, and measurement on an M4 Max shows
q2โ the smallest quant โ sitting at a 14 GB floor even with context squeezed to 4096:
num_ctxMemory ( q2, measured)262144 (model default) 32 GB 32768 16 GB 8192 / 4096 14 GB (floor) The weights alone are 10 GB; KV cache and runtime overhead do the rest. On 16 GB you get swapping, partial CPU fallback, and a model that feels broken. For 16 GB machines we recommend Qwen3.6โ35BโA3B (MoE, 3B active) or a smaller dense model instead.
Context length is the biggest memory lever here โ this checkpoint's native context is 262,144, so the default allocation is enormous. Our Ollama tags ship a modest
num_ctxdefault; with llama.cpp set-cexplicitly rather than inheriting the model default.Measured on M4 Max 128 GB by the BatiFlow Mac team, Ollama 0.20.0. Numbers for 24/32/36/48 GB rows are extrapolated from that floor plus quant size โ we'll replace them with direct measurements as they come in.
All quantized from Qwen's official BF16 weights with an imatrix calibrated on a mixed
code + English + Korean + Chinese corpus, then BatiAIโsigned (general.author: BatiAI).
All six were rebuilt on 2026โ08โ15. Our first build mishandled this checkpoint's MTP layer โ two files wouldn't load and every Ollama tag failed to start. We found it while benchmarking, pulled the broken files, and republished all six with the fix. Current files are verified on both engines. What went wrong and the correct flags are in "Two things that will bite you" below.
โ Verified โ captured from this build
| Test | Output |
|---|---|
| Math | 127+58 โ 185 |
| Korean | ํ๊ตญ์ ์๋๋ ์์ธ์ ๋๋ค. |
| Tool call | {"tool":"get_weather","args":{"city":"๋ถ์ฐ"}} |
| Code | valid binary_search implementation (see below) |
Full captured output (greedy, temp 0)
[์ฐ์]
185
[ํ๊ตญ์ด]
ํ๊ตญ์ ์๋๋ ์์ธ์
๋๋ค.
๋น๋น๋ฐฅ์ ๋ฐฅ์ ๊ฐ์ข
์ฑ์์ ๊ณ ์ถ์ฅ์ ๋ฃ๊ณ ๋น๋ฒผ ๋จน๋ ํ๊ตญ ๋ํ ์์์
๋๋ค.
๋ถ๊ณ ๊ธฐ๋ ๋ฌ์ฝคํ ์๋
์ ์ฌ์ด ๊ณ ๊ธฐ๋ฅผ ๊ตฌ์ ๋จน๋ ์ธ๊ธฐ ์๋ ํ๊ตญ ์๋ฆฌ์
๋๋ค.
๋ก๋ณถ์ด๋ ๋ก์ ๋งค์ฝค๋ฌ์ฝคํ ์๋
์ ๋ฒ๋ฌด๋ ค ๋จน๋ ๋ํ์ ์ธ ํ๊ตญ ๊ธธ๊ฑฐ๋ฆฌ ์์์
๋๋ค.
[ํด์ฝ]
{"tool":"get_weather","args":{"city":"๋ถ์ฐ"}}
[์ฝ๋ฉ]
```python
def binary_search(arr, target):
left, right = 0, len(arr) - 1
while left <= right:
mid = (left + right) // 2
if arr[mid] == target:
return mid
elif arr[mid] < target:
left = mid + 1
else:
right = mid - 1
return -1
```
Why we print this. A quantized model can look fine on English benchmarks and fall apart in Korean โ we've measured models that repeat a single word 60 times. So we run Korean, toolโcalling and code through every build we publish, and paste what came out. Good or bad.
๐ Usage
Ollama (simplest)
ollama run batiai/qwen3.8-27b:iq4 # 15.1 GB โ 32 GB, the default pick
ollama run batiai/qwen3.8-27b:q2 # 10.2 GB โ 24 GB, the smallest that's realistic
ollama run batiai/qwen3.8-27b:q4 # 16.5 GB โ 36 GB+, if you have the headroom
llama.cpp
hf download batiai/Qwen3.8-27B-GGUF Qwen3.8-27B-IQ4_XS.gguf --local-dir ./q38
./llama-cli -m ./q38/Qwen3.8-27B-IQ4_XS.gguf -ngl 99 -c 8192 -n 700 \
-p "์ด ์ฝ๋๋ฅผ ๋ฆฌํฉํฐ๋งํ๊ณ ์ด์ ๋ฅผ ์ค๋ช
ํด์ค."
# long context (262K native) โ raise -c, watch RAM
./llama-cli -m ./q38/Qwen3.8-27B-IQ4_XS.gguf -ngl 99 -c 131072 -n 700 -f long_document.txt
Vision (image input)
hf download batiai/Qwen3.8-27B-GGUF Qwen3.8-27B-Q4_K_M.gguf mmproj-Qwen3.8-27B-BF16.gguf --local-dir ./q38
./llama-mtmd-cli -m ./q38/Qwen3.8-27B-Q4_K_M.gguf --mmproj ./q38/mmproj-Qwen3.8-27B-BF16.gguf \
--image photo.jpg -p "์ด ์ด๋ฏธ์ง๋ฅผ ์ค๋ช
ํด์ค."
Runs on mainline llama.cpp (arch qwen3_5) โ no custom fork needed.
Ollama: 0.20+ works โ verified on 0.20.0 (Apple Silicon, Metal) and 0.20.6 (Linux, CUDA).
No recent-version requirement, so the one-line install path stays open.
The Ollama tags advertise completion, tools and thinking, so tool calls come back as
structured message.tool_calls and the reasoning block arrives separately in message.thinking โ
you don't have to strip <think> yourself:
curl http://localhost:11434/api/chat -d '{
"model":"batiai/qwen3.8-27b:iq4","stream":false,
"options":{"num_predict":2500},
"messages":[{"role":"user","content":"What is the weather in Busan?"}],
"tools":[{"type":"function","function":{"name":"get_weather",
"parameters":{"type":"object","properties":{"city":{"type":"string"}},"required":["city"]}}}]}'
Give it room: num_predict 2000+ for tool calls. The model reasons before it calls, and a
tight budget cuts it off mid-thought so the call never arrives.
Our Ollama tags ship num_ctx 16384 rather than this checkpoint's native 262,144. The native value
would have Ollama reserve tens of GB of KV cache on first run โ the single most common reason a
model "doesn't fit" on a Mac. This is worth 30% of your throughput, not just memory: on M4 Max,
q2 went from 13.3 t/s at the native context to 17.3 t/s at 16384, with memory dropping
32 GB โ 14 GB. Raise it with /set parameter num_ctx <n> when you actually need
long context, and budget memory accordingly.
โ ๏ธ Two things that will bite you (we hit both)
1. Thinking mode eats your token budget
Thinking is on by default. With a short -n, generation stops inside the reasoning block
and you get nothing usable โ it looks like the model failed, but it just never reached the answer.
# โ looks broken โ stops mid-thinking
./llama-cli -m Qwen3.8-27B-IQ4_XS.gguf -p "127+58์?" -n 64
# โ
give it room
./llama-cli -m Qwen3.8-27B-IQ4_XS.gguf -p "127+58์?" -n 400
# โ
or turn thinking off for short answers
./llama-cli -m Qwen3.8-27B-Q3_K_M.gguf --chat-template-kwargs '{"enable_thinking":false}' -p "127+58์?" -n 64
Rule of thumb from our runs: 400+ tokens for oneโliners, 700+ for anything explanatory.
2. blk.64 is an MTP layer โ and pruning it is a trap
This checkpoint ships a multiโtokenโprediction layer that imatrix doesn't cover, so lowโbit
quantization fails on it (Missing importance matrix for tensor blk.64.attn_k.weight).
--prune-layers 64 makes that error go away and produces a file that looks fine โ correct
GGUF magic, sensible size, uploads cleanly โ and then segfaults on load. We shipped two quants
that way for a few hours before a benchmark run caught it. The tensor count silently drops from
866 to 851 while the rest of the metadata still describes the full model.
Override the type instead of removing the layer:
llama-quantize --imatrix imatrix.dat \
--tensor-type "blk\.64\..*=Q5_K" \
Qwen3.8-27B-BF16.gguf out.gguf Q2_K_S
Q5_K doesn't require imatrix data, so the layer survives at a size that costs nothing measurable. Nothing to do on your side when using our files.
โก Speed (measured, not estimated)
llama-bench, RTX 6000 Ada (48 GB), all layers offloaded, pp512 / tg128:
| Quant | Size | Prompt (pp512) | Generation (tg128) |
|---|---|---|---|
| Q3_K_M | 12.6 GiB | 2068 tok/s | 50.8 tok/s |
| IQ4_XS | 14.3 GiB | โ | rebuilding |
| Q4_K_M | 15.7 GiB | 2128 tok/s | 46.2 tok/s |
| Q6_K | 20.9 GiB | 1810 tok/s | 35.7 tok/s |
Quant size costs you generation speed almost linearly here โ Q6_K is 30% slower than Q3_K_M for weights you may not need. Prompt processing is flat across quants because it's computeโbound, not memoryโbound.
How much you offload matters far more than which quant you pick (Q3_K_M, tg64):
-ngl (layers on GPU) |
Generation |
|---|---|
| 99 (all) | 48.6 tok/s |
| 40 | 13.3 tok/s |
| 20 | 8.4 tok/s |
| 0 (CPU only) | 6.0 tok/s |
Dropping from full offload to twoโthirds costs 73% of your speed. On a Mac this is the same
cliff: if the model doesn't fit in unified memory and macOS starts swapping, you land in the
13 tok/s band and it feels like a different model. Check ollama ps says 100% GPU.
Apple Silicon โ M4 Max 128 GB, Metal, llama-bench, -ngl 99:
| Quant | Size | Prompt (pp512) | Generation (tg128) |
|---|---|---|---|
| Q2_K_S | 9.53 GiB | 242.0 tok/s | 28.2 tok/s |
| IQ3_XXS | 10.41 GiB | 246.4 tok/s | 23.7 tok/s |
| Q3_K_M | 12.38 GiB | 226.0 tok/s | 19.2 tok/s |
| IQ4_XS | 14.04 GiB | 242.2 tok/s | 22.4 tok/s |
| Q4_K_M | 15.40 GiB | 239.9 tok/s | 22.7 tok/s |
Same model through Ollama 0.20.0 (q2): 13.3 tok/s warm, 5.0 s cold load, 100% GPU.
Don't compare that to the table โ different harness, different measurement.
Want it meaningfully faster? Change the model, not the quant.
A 27B dense model must read ~15 GB per token. No quantization setting escapes that. On the same M4 Max 128 GB we measured:
| Model | Type | Generation |
|---|---|---|
Qwen3.6โ27B q4 |
Dense 27B | 16.6 t/s |
Qwen3.6โ35BโA3B iq4 |
MoE, 3B active | 45.1 t/s |
The larger model runs 2.7ร faster because only 3B parameters are active per token. If throughput matters more to you than peak quality, that's the answer โ quant tuning can't close a gap like that.
Things that do help this model, in order: a recent llama.cpp build (the Gated DeltaNet kernels
are still improving), -fa at longer context, and KV cache quantization (-ctk q8_0 -ctv q8_0)
past ~16K. Speculative decoding isn't available โ Qwen3.8 ships only 27B and 2.4TโA95B, so there's
no small draft model sharing this 248,320โtoken vocabulary.
Mac numbers come from Mac owners. We only publish speeds measured on the actual hardware, so Apple Silicon rows stay empty until someone runs it. If you have a Mac and five minutes, the benchmark kit is here โ copyโpaste one terminal block, send the numbers, and your machine gets credited in this table.
| Machine | Quant | Cold start | Generation | Measured by |
|---|---|---|---|---|
| M4 Max 128 GB | Q2_K_S | 5.0 s | 28.2 tok/s | BatiFlow Mac team |
| (your Mac could be here) |
โจ What BatiAI did differently
| ๐ฐ๐ท Korean verified | Every quant family we ship gets Korean generation + toolโcall JSON checked. Most quant repos never test a nonโEnglish language. |
| ๐ฆ Ollama tags | Published alongside the HF files. Most GGUF drops are HFโonly. |
| ๐ Down to 10 GB | Q2/IQ3 tiers built with imatrix so smaller machines get a real option โ and we say plainly when a machine is too small rather than selling the download. |
| ๐๏ธ Vision included | mmproj extracted and published โ not textโonly. |
| ๐ From the source | Quantized from Qwen's official weights, never a reโquant of someone else's GGUF. imatrixโcalibrated, BatiAIโsigned. |
๐ License โ Apache 2.0
Fully permissive: commercial use, modification, redistribution. Base model ยฉ Alibaba Qwen team; quantized weights redistributed under the same terms.
๐ Related
- Previous generation: batiai/Qwen3.6-27B-GGUF ยท batiai/Qwen3.5-27B-GGUF
- MoE sibling: batiai/Qwen3.6-35B-A3B-GGUF
- Base model: Qwen/Qwen3.8-27B
Who we are. BatiAI builds onโdevice Korean AI. BatiFlow runs chat, speechโtoโtext (batisay), document OCR (batisee) and speaker diarization entirely on a Mac โ no audio, no documents, no prompts leave the device. Full line: huggingface.co/batiai
- Downloads last month
- 2,833
2-bit
3-bit
4-bit
6-bit
Model tree for batiai/Qwen3.8-27B-GGUF
Base model
Qwen/Qwen3.8-27B
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "batiai/Qwen3.8-27B-GGUF"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "batiai/Qwen3.8-27B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'