Interface LmChatAnthropicNodeParameters
Sourceinterface LmChatAnthropicNodeParameters {
model?:
| { mode: "id"
| "list"; value: string }
| "claude-3-5-sonnet-20241022"
| "claude-3-opus-20240229"
| "claude-3-5-sonnet-20240620"
| "claude-3-sonnet-20240229"
| "claude-3-5-haiku-20241022"
| "claude-3-haiku-20240307"
| "claude-2"
| "claude-2.1"
| "claude-instant-1.2"
| "claude-instant-1";
options?: {
maxTokensToSample?: number;
temperature?: number;
thinking?: boolean;
thinkingBudget?: number;
topK?: number;
topP?: number;
};
}
The model which will generate the completion. Learn more. Default: "claude-2"