fix: typo

This commit is contained in:
Louis 2025-06-25 19:42:22 +07:00
parent a7c441ee58
commit d407ebc4e9
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ export const extractModelLoadParams = (
temperature: undefined,
repeat_penalty: undefined,
repeat_last_n: undefined,
presente_penalty: undefined,
presence_penalty: undefined,
frequency_penalty: undefined,
}
const settingParams: ModelSettingParams = {}

View File

@ -127,7 +127,7 @@ export type ModelSettingParams = {
temperature?: number
repeat_penalty?: number
repeat_last_n?: number
presente_penalty?: number
presence_penalty?: number
frequency_penalty?: number
}