Skip to content

translateModel

translateModel(modelName, options): TranslationResult

Defined in: ai.matey.core/src/model-translation.ts:117

Translate a model name using exact mapping.

string

Original model name

ModelTranslationOptions = {}

Translation options

TranslationResult

Translation result

const result = translateModel('gpt-4', {
mapping: { 'gpt-4': 'claude-3-5-sonnet-20241022' }
});
// → { translated: 'claude-3-5-sonnet-20241022', source: 'exact', wasTranslated: true }