-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils.js
32 lines (30 loc) · 915 Bytes
/
utils.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @fileoverview Utility functions for LangRoute.
*
* This module provides various utility functions used throughout the application
* for common operations like model name parsing and standardization.
*
* @module utils
*/
/**
* Extracts the base model name from a fully qualified model identifier.
*
* For example:
* - 'gpt-3.5-turbo' -> 'gpt'
* - 'mistral-small' -> 'mistral'
* - 'claude-2' -> 'claude'
*
* This is used to standardize model names across different providers
* and versions for consistent handling in the application.
*
* @param {string} modelName - The full model identifier
* @returns {string} The base model name
* @example
* getModel('gpt-3.5-turbo') // returns 'gpt'
* getModel('mistral-small') // returns 'mistral'
*/
function getModel(modelName) {
const baseModelName = modelName.split('-')[0];
return baseModelName;
}
module.exports = { getModel };