UNPKG

@n8n/n8n-nodes-langchain

Version:
12 lines (11 loc) 458 B
import { type INodeType, type INodeTypeDescription, type ISupplyDataFunctions, type SupplyData } from 'n8n-workflow'; import { listModels } from './methods/listModels'; export declare class EmbeddingsAwsBedrock implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { listModels: typeof listModels; }; }; supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>; }