mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
cfaab0b829
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
127 lines
3.3 KiB
TypeScript
127 lines
3.3 KiB
TypeScript
/* eslint-disable n8n-nodes-base/node-dirname-against-convention */
|
|
import {
|
|
NodeConnectionType,
|
|
type IExecuteFunctions,
|
|
type INodeType,
|
|
type INodeTypeDescription,
|
|
type SupplyData,
|
|
} from 'n8n-workflow';
|
|
import { BedrockEmbeddings } from '@langchain/community/embeddings/bedrock';
|
|
|
|
import { logWrapper } from '../../../utils/logWrapper';
|
|
import { getConnectionHintNoticeField } from '../../../utils/sharedFields';
|
|
|
|
export class EmbeddingsAwsBedrock implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Embeddings AWS Bedrock',
|
|
name: 'embeddingsAwsBedrock',
|
|
icon: 'file:bedrock.svg',
|
|
credentials: [
|
|
{
|
|
name: 'aws',
|
|
required: true,
|
|
},
|
|
],
|
|
group: ['transform'],
|
|
version: 1,
|
|
description: 'Use Embeddings AWS Bedrock',
|
|
defaults: {
|
|
name: 'Embeddings AWS Bedrock',
|
|
},
|
|
|
|
codex: {
|
|
categories: ['AI'],
|
|
subcategories: {
|
|
AI: ['Embeddings'],
|
|
},
|
|
resources: {
|
|
primaryDocumentation: [
|
|
{
|
|
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock/',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-inputs-wrong-regular-node
|
|
inputs: [],
|
|
// eslint-disable-next-line n8n-nodes-base/node-class-description-outputs-wrong
|
|
outputs: [NodeConnectionType.AiEmbedding],
|
|
outputNames: ['Embeddings'],
|
|
requestDefaults: {
|
|
ignoreHttpStatusErrors: true,
|
|
baseURL: '=https://bedrock.{{$credentials?.region ?? "eu-central-1"}}.amazonaws.com',
|
|
},
|
|
properties: [
|
|
getConnectionHintNoticeField([NodeConnectionType.AiVectorStore]),
|
|
{
|
|
displayName: 'Model',
|
|
name: 'model',
|
|
type: 'options',
|
|
description:
|
|
'The model which will generate the completion. <a href="https://docs.aws.amazon.com/bedrock/latest/userguide/foundation-models.html">Learn more</a>.',
|
|
typeOptions: {
|
|
loadOptions: {
|
|
routing: {
|
|
request: {
|
|
method: 'GET',
|
|
url: '/foundation-models?byInferenceType=ON_DEMAND&byOutputModality=EMBEDDING',
|
|
},
|
|
output: {
|
|
postReceive: [
|
|
{
|
|
type: 'rootProperty',
|
|
properties: {
|
|
property: 'modelSummaries',
|
|
},
|
|
},
|
|
{
|
|
type: 'setKeyValue',
|
|
properties: {
|
|
name: '={{$responseItem.modelName}}',
|
|
description: '={{$responseItem.modelArn}}',
|
|
value: '={{$responseItem.modelId}}',
|
|
},
|
|
},
|
|
{
|
|
type: 'sort',
|
|
properties: {
|
|
key: 'name',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
routing: {
|
|
send: {
|
|
type: 'body',
|
|
property: 'model',
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
],
|
|
};
|
|
|
|
async supplyData(this: IExecuteFunctions, itemIndex: number): Promise<SupplyData> {
|
|
const credentials = await this.getCredentials('aws');
|
|
const modelName = this.getNodeParameter('model', itemIndex) as string;
|
|
|
|
const embeddings = new BedrockEmbeddings({
|
|
region: credentials.region as string,
|
|
model: modelName,
|
|
maxRetries: 3,
|
|
credentials: {
|
|
secretAccessKey: credentials.secretAccessKey as string,
|
|
accessKeyId: credentials.accessKeyId as string,
|
|
sessionToken: credentials.sessionToken as string,
|
|
},
|
|
});
|
|
|
|
return {
|
|
response: logWrapper(embeddings, this),
|
|
};
|
|
}
|
|
}
|