Sign inSign up

hellohal2064/cca-notetaker

By hellohal2064

Updated 6 months ago

Qwen3.5-9B-FP8 with thinking + tool calling — CCA note-taker and tool orchestrator.

Image
0

1.1K

hellohal2064/cca-notetaker repository overview

CCA Note-Taker

Serves Qwen3.5-9B-FP8 with thinking + tool calling for CCA's note-taker and tool orchestrator roles. Part of the CCA Full Stack.

What This Does

A small, fast LLM that runs alongside the main CCA coder model:

  • Note-taker — observes every CCA interaction, extracts insights, stores to Qdrant
  • Tool orchestrator — drives multi-step research tool iterations (search, graph queries)
  • Summarization — compresses conversation trajectories into structured notes

Runs on the same GPU as CCA (uses only 50% GPU memory), leaving room for the embedding server.

Quick Start

docker run -d \
  --gpus all \
  --name vllm-notetaker \
  -v /data/models:/models:ro \
  -p 8400:8400 \
  hellohal2064/cca-notetaker:latest

Model Required

Download Qwen3.5-9B-FP8 (~9GB) to your models directory.

API

# 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

Configuration (baked into image)

SettingValue
ModelQwen3.5-9B-FP8 (dense, not MoE)
Port8400
Max context32768 tokens
GPU memory50% utilization
KV cacheFP8 (memory efficient)
AttentionFlashInfer (native SM121)
Tool callingqwen3_coder parser
Reasoningqwen3 parser (thinking mode)
Prefix cachingenabled
Load formatfastsafetensors

Part of CCA Stack

This is one of 11 containers in the CCA full stack. See:

Tag summary

Content type

Image

Digest

sha256:5fb43a7d5

Size

11.3 GB

Last updated

6 months ago

docker pull hellohal2064/cca-notetaker