From e8650e2c7e745af3f7b5267bc2897839b1de790d Mon Sep 17 00:00:00 2001 From: heimoshuiyu Date: Sat, 10 Feb 2024 15:28:41 +0800 Subject: [PATCH] add gpt-3.5-turbo-0125 --- src/models.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/models.ts b/src/models.ts index 381a622..7de9b70 100644 --- a/src/models.ts +++ b/src/models.ts @@ -7,6 +7,10 @@ interface Model { } const models: Record = { + "gpt-3.5-turbo-0125": { + maxToken: 16385, + price: { prompt: 0.0005 / 1000, completion: 0.0015 / 1000 }, + }, "gpt-3.5-turbo-1106": { maxToken: 16385, price: { prompt: 0.001 / 1000, completion: 0.002 / 1000 },