From 23cf6d168aea9e301f3714bffa7af62898181916 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 5733558..8c6b000 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;