From 8d5c11d31ba922d7d6dbd6171db72c83974928d8 Mon Sep 17 00:00:00 2001 From: Shakker Date: Wed, 1 Apr 2026 19:07:54 +0100 Subject: [PATCH] refactor: trim thinking helper import graph --- src/auto-reply/thinking.shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto-reply/thinking.shared.ts b/src/auto-reply/thinking.shared.ts index 01a80dc2e89..c788334064d 100644 --- a/src/auto-reply/thinking.shared.ts +++ b/src/auto-reply/thinking.shared.ts @@ -1,4 +1,4 @@ -import { matchesExactOrPrefix } from "../plugin-sdk/provider-model-shared.js"; +import { matchesExactOrPrefix } from "../plugins/provider-model-helpers.js"; export type ThinkLevel = "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "adaptive"; export type VerboseLevel = "off" | "on" | "full";