From 0c8aa4d1ea69060c59b23dda2ef78625f0c4f1b9 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 27 Apr 2026 08:04:46 -0400 Subject: [PATCH] fix(models): move import to top of index.ts before export declarations Co-Authored-By: Claude Sonnet 4.6 --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index e101622..85c1310 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,7 @@ +import { DIRECT_MODELS, BEDROCK_MODELS, isBedrockEnv } from "./server/models.js"; + export const type = "claude_k8s"; export const label = "Claude (Kubernetes)"; - -import { DIRECT_MODELS, BEDROCK_MODELS, isBedrockEnv } from "./server/models.js"; export const models = isBedrockEnv() ? BEDROCK_MODELS : DIRECT_MODELS; export const agentConfigurationDoc = `# claude_k8s agent configuration