🔧 fix: Add modelLabel to OpenAIClient and PluginsClient options (#4995)

This commit is contained in:
Danny Avila 2024-12-14 15:31:50 -05:00 committed by GitHub
parent f15035542f
commit 6ef05dd2e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 0 deletions

View file

@ -412,6 +412,7 @@ describe('OpenAIClient', () => {
it('should return the correct save options', () => {
const options = client.getSaveOptions();
expect(options).toHaveProperty('chatGptLabel');
expect(options).toHaveProperty('modelLabel');
expect(options).toHaveProperty('promptPrefix');
});
});