feat: support Groq (#107)

This commit is contained in:
Buer
2024-03-13 15:36:31 +08:00
committed by GitHub
parent 24761c2ce5
commit 05347bc9a1
9 changed files with 145 additions and 1 deletions

View File

@@ -95,6 +95,12 @@ export const CHANNEL_OPTIONS = {
value: 30,
color: 'orange'
},
31: {
key: 31,
text: 'Groq',
value: 31,
color: 'primary'
},
24: {
key: 24,
text: 'Azure Speech',

View File

@@ -195,6 +195,13 @@ const typeConfig = {
test_model: 'open-mistral-7b'
},
modelGroup: 'Mistral'
},
31: {
input: {
models: ['llama2-7b-2048', 'llama2-70b-4096', 'mixtral-8x7b-32768', 'gemma-7b-it'],
test_model: 'llama2-7b-2048'
},
modelGroup: 'Groq'
}
};