2024-02-22 21:48:57 +01:00
|
|
|
const MODELS = {
|
2024-02-24 02:33:16 +01:00
|
|
|
"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,
|
|
|
|
},
|
2024-02-22 21:48:57 +01:00
|
|
|
"codellama-34b-instruct": {
|
|
|
|
id: "codellama-34b-instruct",
|
|
|
|
name: "codellama-34b-instruct",
|
|
|
|
maxLength: 16384,
|
|
|
|
},
|
|
|
|
"codellama-70b-instruct": {
|
|
|
|
id: "codellama-70b-instruct",
|
|
|
|
name: "codellama-70b-instruct",
|
|
|
|
maxLength: 16384,
|
|
|
|
},
|
|
|
|
"llama-2-70b-chat": {
|
|
|
|
id: "llama-2-70b-chat",
|
|
|
|
name: "llama-2-70b-chat",
|
|
|
|
maxLength: 4096,
|
|
|
|
},
|
|
|
|
"mistral-7b-instruct": {
|
|
|
|
id: "mistral-7b-instruct",
|
|
|
|
name: "mistral-7b-instruct",
|
2024-02-24 02:33:16 +01:00
|
|
|
maxLength: 16384,
|
2024-02-22 21:48:57 +01:00
|
|
|
},
|
|
|
|
"mixtral-8x7b-instruct": {
|
|
|
|
id: "mixtral-8x7b-instruct",
|
|
|
|
name: "mixtral-8x7b-instruct",
|
2024-02-24 02:33:16 +01:00
|
|
|
maxLength: 16384,
|
2024-02-22 21:48:57 +01:00
|
|
|
},
|
|
|
|
"pplx-7b-chat": {
|
|
|
|
id: "pplx-7b-chat",
|
|
|
|
name: "pplx-7b-chat",
|
2024-02-24 02:33:16 +01:00
|
|
|
maxLength: 16384,
|
2024-02-22 21:48:57 +01:00
|
|
|
},
|
|
|
|
"pplx-7b-online": {
|
|
|
|
id: "pplx-7b-online",
|
|
|
|
name: "pplx-7b-online",
|
2024-02-24 02:33:16 +01:00
|
|
|
maxLength: 12000,
|
|
|
|
},
|
|
|
|
"pplx-70b-chat": {
|
|
|
|
id: "pplx-70b-chat",
|
|
|
|
name: "pplx-70b-chat",
|
2024-02-22 21:48:57 +01:00
|
|
|
maxLength: 8192,
|
|
|
|
},
|
|
|
|
"pplx-70b-online": {
|
|
|
|
id: "pplx-70b-online",
|
|
|
|
name: "pplx-70b-online",
|
2024-02-24 02:33:16 +01:00
|
|
|
maxLength: 4000,
|
2024-02-22 21:48:57 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports.MODELS = MODELS;
|