mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 09:10:13 +01:00
40 lines
876 B
JavaScript
40 lines
876 B
JavaScript
const MODELS = {
|
|
"sonar-small-chat": {
|
|
id: "sonar-small-chat",
|
|
name: "sonar-small-chat",
|
|
maxLength: 16384,
|
|
},
|
|
"sonar-small-online": {
|
|
id: "sonar-small-online",
|
|
name: "sonar-small-online",
|
|
maxLength: 12000,
|
|
},
|
|
"sonar-medium-chat": {
|
|
id: "sonar-medium-chat",
|
|
name: "sonar-medium-chat",
|
|
maxLength: 16384,
|
|
},
|
|
"sonar-medium-online": {
|
|
id: "sonar-medium-online",
|
|
name: "sonar-medium-online",
|
|
maxLength: 12000,
|
|
},
|
|
"codellama-70b-instruct": {
|
|
id: "codellama-70b-instruct",
|
|
name: "codellama-70b-instruct",
|
|
maxLength: 16384,
|
|
},
|
|
"mistral-7b-instruct": {
|
|
id: "mistral-7b-instruct",
|
|
name: "mistral-7b-instruct",
|
|
maxLength: 16384,
|
|
},
|
|
"mixtral-8x7b-instruct": {
|
|
id: "mixtral-8x7b-instruct",
|
|
name: "mixtral-8x7b-instruct",
|
|
maxLength: 16384,
|
|
},
|
|
};
|
|
|
|
module.exports.MODELS = MODELS;
|