diff --git a/app/utils/aws.ts b/app/utils/aws.ts index 22c6d0baa..f612a702a 100644 --- a/app/utils/aws.ts +++ b/app/utils/aws.ts @@ -11,19 +11,6 @@ export interface BedrockCredentials { secretAccessKey: string; } -export interface BedrockRequestConfig { - modelId: string; - shouldStream: boolean; - body: any; - credentials: BedrockCredentials; -} - -export interface ModelValidationConfig { - requiredFields: string[]; - optionalFields?: string[]; - customValidation?: (body: any) => string | null; -} - // Type definitions for better type safety type ParsedEvent = Record; type EventResult = ParsedEvent[];