mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +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',
|
||||
name: 'frequencyPenalty',
|
||||
type: 'number',
|
||||
default: 1,
|
||||
default: 0,
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
minValue: 0,
|
||||
},
|
||||
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",
|
||||
|
||||
Reference in New Issue
Block a user