You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
443 B
24 lines
443 B
const MODELS = {
|
|
"sonar-reasoning-pro": {
|
|
id: "sonar-reasoning-pro",
|
|
name: "sonar-reasoning-pro",
|
|
maxLength: 127072,
|
|
},
|
|
"sonar-reasoning": {
|
|
id: "sonar-reasoning",
|
|
name: "sonar-reasoning",
|
|
maxLength: 127072,
|
|
},
|
|
"sonar-pro": {
|
|
id: "sonar-pro",
|
|
name: "sonar-pro",
|
|
maxLength: 200000,
|
|
},
|
|
sonar: {
|
|
id: "sonar",
|
|
name: "sonar",
|
|
maxLength: 127072,
|
|
},
|
|
};
|
|
|
|
module.exports.MODELS = MODELS;
|