UNPKG

@n8n/n8n-nodes-langchain

Version:
11 lines (10 loc) 494 B
import { BedrockRuntimeClient } from '@aws-sdk/client-bedrock-runtime'; import type { AwsCredentialIdentity, AwsCredentialIdentityProvider } from '@smithy/types'; import { type AWSRegion } from 'n8n-nodes-base/aws-credentials'; export declare function createBedrockRuntimeClient(params: { region: AWSRegion; credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider; bedrockRuntimeEndpoint?: string; maxRetries?: number; timeout?: number; }): BedrockRuntimeClient;