New ChatGPT model

This commit is contained in:
Cohee
2024-08-14 20:31:25 +03:00
parent 49f40d9d14
commit bc7ac12317
3 changed files with 8 additions and 3 deletions

View File

@ -268,6 +268,10 @@ function getTokenizerModel(requestModel) {
return 'gpt-4o';
}
if (requestModel.includes('chatgpt-4o-latest')) {
return 'gpt-4o';
}
if (requestModel.includes('gpt-4-32k')) {
return 'gpt-4-32k';
}