n8n-nodes-sap-ai-core
Version:
n8n nodes for SAP AI Core LLM and embeddings integration
14 lines • 563 B
TypeScript
import { ISupplyDataFunctions, ILoadOptionsFunctions, INodeType, INodeTypeDescription, INodeListSearchResult } from 'n8n-workflow';
declare class SapAiCoreChatModel implements INodeType {
methods: {
listSearch: {
searchModels: (this: ILoadOptionsFunctions) => Promise<INodeListSearchResult>;
};
};
description: INodeTypeDescription;
supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<{
response: any;
}>;
}
export { SapAiCoreChatModel };
//# sourceMappingURL=SapAiCoreChatModel.node.d.ts.map