UNPKG

@n8n/n8n-nodes-langchain

Version:

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

69 lines (63 loc) 2.66 kB
/** * Alibaba Cloud Chat Model Node - Version 1 * For advanced usage with an AI chain */ export interface LcLmChatAlibabaCloudV1Params { /** * The model which will generate the completion. &lt;a href="https://www.alibabacloud.com/help/en/model-studio/getting-started/models"&gt;Learn more&lt;/a&gt;. * @builderHint Default to the latest Qwen flagship (qwen3.6-max-preview or qwen3.6-plus). Use qwen-plus for cost-efficient builds. Avoid qwen-turbo, Qwen 3.5 and earlier, and older dated snapshots. * @default qwen-plus */ model?: string | Expression<string>; /** * Additional options to add * @default {} */ options?: { /** Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim * @default 0 */ frequencyPenalty?: number | Expression<number>; /** The maximum number of tokens to generate in the completion. The limit depends on the selected model. * @default -1 */ maxTokens?: number | Expression<number>; /** Response Format * @default text */ responseFormat?: 'text' | 'json_object' | Expression<string>; /** Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics * @default 0 */ presencePenalty?: number | Expression<number>; /** Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive. * @default 0.7 */ temperature?: number | Expression<number>; /** Maximum amount of time a request is allowed to take in milliseconds * @default 360000 */ timeout?: number | Expression<number>; /** Maximum number of retries to attempt * @default 2 */ maxRetries?: number | Expression<number>; /** Controls diversity via nucleus sampling: 0.5 means half of all likelihood-weighted options are considered. We generally recommend altering this or temperature but not both. * @default 1 */ topP?: number | Expression<number>; }; } export interface LcLmChatAlibabaCloudV1Credentials { alibabaCloudApi: CredentialReference; } interface LcLmChatAlibabaCloudV1NodeBase { type: '@n8n/n8n-nodes-langchain.lmChatAlibabaCloud'; version: 1; credentials?: LcLmChatAlibabaCloudV1Credentials; isTrigger: true; } export type LcLmChatAlibabaCloudV1ParamsNode = LcLmChatAlibabaCloudV1NodeBase & { config: NodeConfig<LcLmChatAlibabaCloudV1Params>; }; export type LcLmChatAlibabaCloudV1Node = LcLmChatAlibabaCloudV1ParamsNode;