feat: support deepseek (#60)

This commit is contained in:
Buer
2024-02-02 10:03:00 +08:00
committed by GitHub
parent 332b6fd397
commit 48f9ed29e8
6 changed files with 54 additions and 0 deletions

View File

@@ -77,6 +77,12 @@ export const CHANNEL_OPTIONS = {
value: 27,
color: 'orange'
},
28: {
key: 28,
text: 'Deepseek',
value: 28,
color: 'default'
},
24: {
key: 24,
text: 'Azure Speech',

View File

@@ -175,6 +175,12 @@ const typeConfig = {
prompt: {
key: '按照如下格式输入APISecret|groupID'
}
},
28: {
input: {
models: ['deepseek-coder', 'deepseek-chat'],
test_model: 'deepseek-chat'
}
}
};