UNPKG

@n8n/n8n-nodes-langchain

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