🎚️ refactor: Update Min. Values for OpenAI Parameters (#8922)

This commit is contained in:
Joseph Licata 2025-08-07 14:38:08 -04:00 committed by GitHub
parent 429bb6653a
commit b9f72f4869
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -208,13 +208,13 @@ export const openAISettings = {
default: 1 as const,
},
presence_penalty: {
min: 0 as const,
min: -2 as const,
max: 2 as const,
step: 0.01 as const,
default: 0 as const,
},
frequency_penalty: {
min: 0 as const,
min: -2 as const,
max: 2 as const,
step: 0.01 as const,
default: 0 as const,
@ -374,13 +374,13 @@ export const agentsSettings = {
default: 1 as const,
},
presence_penalty: {
min: 0 as const,
min: -2 as const,
max: 2 as const,
step: 0.01 as const,
default: 0 as const,
},
frequency_penalty: {
min: 0 as const,
min: -2 as const,
max: 2 as const,
step: 0.01 as const,
default: 0 as const,