mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(Perplexity Node): Allow for penalties below 1 (#17074)
This commit is contained in:
@@ -130,9 +130,9 @@ const properties: INodeProperties[] = [
|
|||||||
displayName: 'Frequency Penalty',
|
displayName: 'Frequency Penalty',
|
||||||
name: 'frequencyPenalty',
|
name: 'frequencyPenalty',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
default: 1,
|
default: 0,
|
||||||
typeOptions: {
|
typeOptions: {
|
||||||
minValue: 1,
|
minValue: 0,
|
||||||
},
|
},
|
||||||
description:
|
description:
|
||||||
"Values greater than 1.0 penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim",
|
"Values greater than 1.0 penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim",
|
||||||
|
|||||||
Reference in New Issue
Block a user