@n8n/n8n-nodes-langchain
Version:
13 lines (12 loc) • 582 B
TypeScript
import { type ILoadOptionsFunctions, type INodeListSearchResult, type INodeType, type INodeTypeDescription, type ISupplyDataFunctions, type SupplyData } from 'n8n-workflow';
declare function searchModels(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
export declare class LmChatDatabricks implements INodeType {
methods: {
listSearch: {
searchModels: typeof searchModels;
};
};
description: INodeTypeDescription;
supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>;
}
export {};