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[];