feat: support mistral (#94)

This commit is contained in:
Buer
2024-03-10 01:53:33 +08:00
committed by GitHub
parent d8d880bf85
commit 6329db1a49
10 changed files with 340 additions and 0 deletions

View File

@@ -89,6 +89,12 @@ export const CHANNEL_OPTIONS = {
value: 29,
color: 'default'
},
30: {
key: 30,
text: 'Mistral',
value: 30,
color: 'orange'
},
24: {
key: 24,
text: 'Azure Speech',

View File

@@ -181,6 +181,20 @@ const typeConfig = {
test_model: 'moonshot-v1-8k'
},
modelGroup: 'Moonshot'
},
30: {
input: {
models: [
'open-mistral-7b',
'open-mixtral-8x7b',
'mistral-small-latest',
'mistral-medium-latest',
'mistral-large-latest',
'mistral-embed'
],
test_model: 'open-mistral-7b'
},
modelGroup: 'Mistral'
}
};