Merge branch 'main' into feature/Credential

This commit is contained in:
Henry
2023-07-27 11:37:30 +01:00
25 changed files with 30 additions and 27 deletions
@@ -143,7 +143,7 @@ class OpenAI_LLMs implements INode {
}
if (maxTokens) obj.maxTokens = parseInt(maxTokens, 10)
if (topP) obj.topP = parseInt(topP, 10)
if (topP) obj.topP = parseFloat(topP)
if (frequencyPenalty) obj.frequencyPenalty = parseInt(frequencyPenalty, 10)
if (presencePenalty) obj.presencePenalty = parseInt(presencePenalty, 10)
if (timeout) obj.timeout = parseInt(timeout, 10)