From 26b9fa97cd3f41cba6b1c295ff2801e604329c31 Mon Sep 17 00:00:00 2001 From: glay Date: Sun, 8 Dec 2024 08:47:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/utils/aws.ts | 13 ------------- 1 file changed, 13 deletions(-) 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[];