UNPKG

@n8n/n8n-nodes-langchain

Version:

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

66 lines (60 loc) 2.56 kB
/** * Anthropic Chat Model Node - Version 1.4 * Language Model Anthropic */ export interface LcLmChatAnthropicV14Params { /** * The model. Choose from the list, or specify an ID. &lt;a href="https://docs.anthropic.com/claude/docs/models-overview"&gt;Learn more&lt;/a&gt;. * @builderHint Default to claude-sonnet-4-6 (latest Sonnet); use claude-opus-4-7 when the user needs the most capable model. Never use Claude Sonnet 4.5, Claude 3.x, Claude 2, or LEGACY options — those are superseded and are not valid choices. * @searchListMethod searchModels * @default {"mode":"list","value":"claude-sonnet-4-6","cachedResultName":"Claude Sonnet 4.6"} */ model?: { __rl: true; mode: 'list' | 'id'; value: string; cachedResultName?: string }; /** * Additional options to add * @default {} */ options?: { /** The maximum number of tokens to generate in the completion * @default 4096 */ maxTokensToSample?: number | Expression<number>; /** Controls randomness: Lowering results in less random completions. As the temperature approaches zero, the model will become deterministic and repetitive. * @displayOptions.hide { thinking: [true] } * @default 0.7 */ temperature?: number | Expression<number>; /** Used to remove "long tail" low probability responses. Defaults to -1, which disables it. * @displayOptions.hide { thinking: [true] } * @default -1 */ topK?: 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. * @displayOptions.hide { thinking: [true] } * @default 1 */ topP?: number | Expression<number>; /** Whether to enable thinking mode for the model * @default false */ thinking?: boolean | Expression<boolean>; /** The maximum number of tokens to use for thinking * @displayOptions.show { thinking: [true] } * @default 1024 */ thinkingBudget?: number | Expression<number>; }; } export interface LcLmChatAnthropicV14Credentials { anthropicApi: CredentialReference; } interface LcLmChatAnthropicV14NodeBase { type: '@n8n/n8n-nodes-langchain.lmChatAnthropic'; version: 1.4; credentials?: LcLmChatAnthropicV14Credentials; isTrigger: true; } export type LcLmChatAnthropicV14ParamsNode = LcLmChatAnthropicV14NodeBase & { config: NodeConfig<LcLmChatAnthropicV14Params>; }; export type LcLmChatAnthropicV14Node = LcLmChatAnthropicV14ParamsNode;