Qwen3.5-9B-FP8 with thinking + tool calling — CCA note-taker and tool orchestrator.
1.1K
Serves Qwen3.5-9B-FP8 with thinking + tool calling for CCA's note-taker and tool orchestrator roles. Part of the CCA Full Stack.
A small, fast LLM that runs alongside the main CCA coder model:
Runs on the same GPU as CCA (uses only 50% GPU memory), leaving room for the embedding server.
docker run -d \
--gpus all \
--name vllm-notetaker \
-v /data/models:/models:ro \
-p 8400:8400 \
hellohal2064/cca-notetaker:latest
Download Qwen3.5-9B-FP8 (~9GB) to your models directory.
# Chat completion with tool calling (OpenAI-compatible)
curl http://localhost:8400/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{"model": "/models/Qwen3.5-9B-FP8", "messages": [{"role": "user", "content": "Hello"}]}'
# Health check
curl http://localhost:8400/health
| Setting | Value |
|---|---|
| Model | Qwen3.5-9B-FP8 (dense, not MoE) |
| Port | 8400 |
| Max context | 32768 tokens |
| GPU memory | 50% utilization |
| KV cache | FP8 (memory efficient) |
| Attention | FlashInfer (native SM121) |
| Tool calling | qwen3_coder parser |
| Reasoning | qwen3 parser (thinking mode) |
| Prefix caching | enabled |
| Load format | fastsafetensors |
This is one of 11 containers in the CCA full stack. See:
Content type
Image
Digest
sha256:5fb43a7d5…
Size
11.3 GB
Last updated
6 months ago
docker pull hellohal2064/cca-notetaker