From ed2615b7c87e6bdaed7a33d1b10dc3bb5e0ad63d Mon Sep 17 00:00:00 2001 From: Bryce Zuccaro Date: Fri, 14 Aug 2026 10:41:17 -0600 Subject: [PATCH] docs: import LlamaSwapConfig from util in poller plan --- docs/superpowers/plans/2026-08-14-llama-watch.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/superpowers/plans/2026-08-14-llama-watch.md b/docs/superpowers/plans/2026-08-14-llama-watch.md index 3761143..05e0d96 100644 --- a/docs/superpowers/plans/2026-08-14-llama-watch.md +++ b/docs/superpowers/plans/2026-08-14-llama-watch.md @@ -641,7 +641,8 @@ Expected: FAIL — module not found. - [ ] **Step 3: Implement `src/lib/metrics-poller.ts`** ```ts -import { fetchMetrics, type LlamaSwapConfig } from "./llamaswap"; +import { fetchMetrics } from "./llamaswap"; +import { type LlamaSwapConfig } from "./util"; import { gpuInfos, parseGpuMetrics, type GpuMetricKind, type GpuSample } from "./metrics-parser"; const RING_SIZE = 60;