mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-17 15:42:24 +00:00
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
const MODELS = {
|
|
"sonar-pro": {
|
|
id: "sonar-pro",
|
|
name: "sonar-pro",
|
|
maxLength: 200000,
|
|
},
|
|
sonar: {
|
|
id: "sonar",
|
|
name: "sonar",
|
|
maxLength: 127072,
|
|
},
|
|
};
|
|
|
|
module.exports.MODELS = MODELS;
|