-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add minimax abab6.5t support (#9365)
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
api/core/model_runtime/model_providers/minimax/llm/abab6.5t-chat.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
model: abab6.5t-chat | ||
label: | ||
en_US: Abab6.5t-Chat | ||
model_type: llm | ||
features: | ||
- agent-thought | ||
model_properties: | ||
mode: chat | ||
context_size: 8192 | ||
parameter_rules: | ||
- name: temperature | ||
use_template: temperature | ||
min: 0.01 | ||
max: 1 | ||
default: 0.9 | ||
- name: top_p | ||
use_template: top_p | ||
min: 0.01 | ||
max: 1 | ||
default: 0.95 | ||
- name: max_tokens | ||
use_template: max_tokens | ||
required: true | ||
default: 3072 | ||
min: 1 | ||
max: 8192 | ||
- name: mask_sensitive_info | ||
type: boolean | ||
default: true | ||
label: | ||
zh_Hans: 隐私保护 | ||
en_US: Moderate | ||
help: | ||
zh_Hans: 对输出中易涉及隐私问题的文本信息进行打码,目前包括但不限于邮箱、域名、链接、证件号、家庭住址等,默认true,即开启打码 | ||
en_US: Mask the sensitive info of the generated content, such as email/domain/link/address/phone/id.. | ||
- name: presence_penalty | ||
use_template: presence_penalty | ||
- name: frequency_penalty | ||
use_template: frequency_penalty | ||
pricing: | ||
input: '0.005' | ||
output: '0.005' | ||
unit: '0.001' | ||
currency: RMB |