From c6d50f6daf170306eb83f0f96bc19229e433507e Mon Sep 17 00:00:00 2001 From: Bryce Zuccaro Date: Fri, 14 Aug 2026 10:41:28 -0600 Subject: [PATCH] fix: import LlamaSwapConfig from util in metrics poller --- src/lib/metrics-poller.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/metrics-poller.ts b/src/lib/metrics-poller.ts index 0c39973..920c4b4 100644 --- a/src/lib/metrics-poller.ts +++ b/src/lib/metrics-poller.ts @@ -1,4 +1,5 @@ -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;