🚀 feat: Support for GPT-3.5 Turbo/0125 Model (#1704)

* 🚀 feat: Support for GPT-3.5 Turbo/0125 Model

* ci: fix tx test
This commit is contained in:
Danny Avila 2024-02-02 01:01:11 -05:00 committed by GitHub
parent 30e143e96d
commit 8479ac7293
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 15 additions and 4 deletions

View file

@ -90,6 +90,9 @@ describe('getMultiplier', () => {
expect(getMultiplier({ tokenType: 'completion', model: 'gpt-4-turbo-vision-preview' })).toBe(
tokenValues['gpt-4-1106'].completion,
);
expect(getMultiplier({ tokenType: 'completion', model: 'gpt-3.5-turbo-0125' })).toBe(
tokenValues['gpt-3.5-turbo-0125'].completion,
);
});
it('should return defaultRate if derived valueKey does not match any known patterns', () => {