From 6292060f4456a9811301019fa7ec2e3910cf2676 Mon Sep 17 00:00:00 2001 From: devmangel Date: Fri, 30 Jan 2026 11:49:06 -0500 Subject: [PATCH] refactor: remove unused InferenceProfileSummary type from bedrock-discovery.ts --- src/agents/bedrock-discovery.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/agents/bedrock-discovery.ts b/src/agents/bedrock-discovery.ts index aa3efcf20..753783960 100644 --- a/src/agents/bedrock-discovery.ts +++ b/src/agents/bedrock-discovery.ts @@ -3,7 +3,6 @@ import { ListFoundationModelsCommand, ListInferenceProfilesCommand, type ListFoundationModelsCommandOutput, - type ListInferenceProfilesCommandOutput, } from "@aws-sdk/client-bedrock"; import type { BedrockDiscoveryConfig, ModelDefinitionConfig } from "../config/types.js"; @@ -20,10 +19,6 @@ const DEFAULT_COST = { type BedrockModelSummary = NonNullable[number]; -type InferenceProfileSummary = NonNullable< - ListInferenceProfilesCommandOutput["inferenceProfileSummaries"] ->[number]; - type BedrockDiscoveryCacheEntry = { expiresAt: number; value?: ModelDefinitionConfig[];