UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

29 lines (23 loc) 773 B
/** * Embeddings Lemonade Node - Version 1 * Use Lemonade Embeddings */ export interface LcEmbeddingsLemonadeV1Params { /** * The model which will generate the completion. Models are loaded and managed through the Lemonade server. */ model: string | Expression<string>; } export interface LcEmbeddingsLemonadeV1Credentials { lemonadeApi: CredentialReference; } interface LcEmbeddingsLemonadeV1NodeBase { type: '@n8n/n8n-nodes-langchain.embeddingsLemonade'; version: 1; credentials?: LcEmbeddingsLemonadeV1Credentials; isTrigger: true; } export type LcEmbeddingsLemonadeV1ParamsNode = LcEmbeddingsLemonadeV1NodeBase & { config: NodeConfig<LcEmbeddingsLemonadeV1Params>; }; export type LcEmbeddingsLemonadeV1Node = LcEmbeddingsLemonadeV1ParamsNode;