Add gpt-4.5-preview

This commit is contained in:
Wolfsblvt
2025-02-27 22:08:29 +01:00
parent f43b42544b
commit ea643cce6e
4 changed files with 12 additions and 1 deletions

View File

@@ -410,6 +410,10 @@ export function getTokenizerModel(requestModel) {
return 'gpt-4o';
}
if (requestModel.includes('gpt-4.5-preview')) {
return 'gpt-4o';
}
if (requestModel.includes('gpt-4-32k')) {
return 'gpt-4-32k';
}