refactor: remove unused InferenceProfileSummary type from bedrock-discovery.ts

This commit is contained in:
devmangel 2026-01-30 11:49:06 -05:00
parent 6df9b8f671
commit 6292060f44

View File

@ -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<ListFoundationModelsCommandOutput["modelSummaries"]>[number];
type InferenceProfileSummary = NonNullable<
ListInferenceProfilesCommandOutput["inferenceProfileSummaries"]
>[number];
type BedrockDiscoveryCacheEntry = {
expiresAt: number;
value?: ModelDefinitionConfig[];