mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
add MixtralAI Model (#8517)
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
Some checks are pending
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/amd64, build-api-amd64) (push) Waiting to run
Build and Push API & Web / build (api, DIFY_API_IMAGE_NAME, linux/arm64, build-api-arm64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/amd64, build-web-amd64) (push) Waiting to run
Build and Push API & Web / build (web, DIFY_WEB_IMAGE_NAME, linux/arm64, build-web-arm64) (push) Waiting to run
Build and Push API & Web / create-manifest (api, DIFY_API_IMAGE_NAME, merge-api-images) (push) Blocked by required conditions
Build and Push API & Web / create-manifest (web, DIFY_WEB_IMAGE_NAME, merge-web-images) (push) Blocked by required conditions
This commit is contained in:
parent
5541248264
commit
5ddb601e43
|
@ -1,3 +1,8 @@
|
||||||
|
- pixtral-12b-2409
|
||||||
|
- codestral-latest
|
||||||
|
- mistral-embed
|
||||||
|
- open-mistral-nemo
|
||||||
|
- open-codestral-mamba
|
||||||
- open-mistral-7b
|
- open-mistral-7b
|
||||||
- open-mixtral-8x7b
|
- open-mixtral-8x7b
|
||||||
- open-mixtral-8x22b
|
- open-mixtral-8x22b
|
||||||
|
|
|
@ -0,0 +1,51 @@
|
||||||
|
model: codestral-latest
|
||||||
|
label:
|
||||||
|
zh_Hans: codestral-latest
|
||||||
|
en_US: codestral-latest
|
||||||
|
model_type: llm
|
||||||
|
features:
|
||||||
|
- agent-thought
|
||||||
|
model_properties:
|
||||||
|
mode: chat
|
||||||
|
context_size: 32000
|
||||||
|
parameter_rules:
|
||||||
|
- name: temperature
|
||||||
|
use_template: temperature
|
||||||
|
default: 0.7
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: top_p
|
||||||
|
use_template: top_p
|
||||||
|
default: 1
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: max_tokens
|
||||||
|
use_template: max_tokens
|
||||||
|
default: 1024
|
||||||
|
min: 1
|
||||||
|
max: 4096
|
||||||
|
- name: safe_prompt
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
help:
|
||||||
|
en_US: Whether to inject a safety prompt before all conversations.
|
||||||
|
zh_Hans: 是否开启提示词审查
|
||||||
|
label:
|
||||||
|
en_US: SafePrompt
|
||||||
|
zh_Hans: 提示词审查
|
||||||
|
- name: random_seed
|
||||||
|
type: int
|
||||||
|
help:
|
||||||
|
en_US: The seed to use for random sampling. If set, different calls will generate deterministic results.
|
||||||
|
zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定
|
||||||
|
label:
|
||||||
|
en_US: RandomSeed
|
||||||
|
zh_Hans: 随机数种子
|
||||||
|
default: 0
|
||||||
|
min: 0
|
||||||
|
max: 2147483647
|
||||||
|
pricing:
|
||||||
|
input: '0.008'
|
||||||
|
output: '0.024'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: USD
|
|
@ -0,0 +1,51 @@
|
||||||
|
model: mistral-embed
|
||||||
|
label:
|
||||||
|
zh_Hans: mistral-embed
|
||||||
|
en_US: mistral-embed
|
||||||
|
model_type: llm
|
||||||
|
features:
|
||||||
|
- agent-thought
|
||||||
|
model_properties:
|
||||||
|
mode: chat
|
||||||
|
context_size: 8192
|
||||||
|
parameter_rules:
|
||||||
|
- name: temperature
|
||||||
|
use_template: temperature
|
||||||
|
default: 0.7
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: top_p
|
||||||
|
use_template: top_p
|
||||||
|
default: 1
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: max_tokens
|
||||||
|
use_template: max_tokens
|
||||||
|
default: 1024
|
||||||
|
min: 1
|
||||||
|
max: 1024
|
||||||
|
- name: safe_prompt
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
help:
|
||||||
|
en_US: Whether to inject a safety prompt before all conversations.
|
||||||
|
zh_Hans: 是否开启提示词审查
|
||||||
|
label:
|
||||||
|
en_US: SafePrompt
|
||||||
|
zh_Hans: 提示词审查
|
||||||
|
- name: random_seed
|
||||||
|
type: int
|
||||||
|
help:
|
||||||
|
en_US: The seed to use for random sampling. If set, different calls will generate deterministic results.
|
||||||
|
zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定
|
||||||
|
label:
|
||||||
|
en_US: RandomSeed
|
||||||
|
zh_Hans: 随机数种子
|
||||||
|
default: 0
|
||||||
|
min: 0
|
||||||
|
max: 2147483647
|
||||||
|
pricing:
|
||||||
|
input: '0.008'
|
||||||
|
output: '0.024'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: USD
|
|
@ -0,0 +1,51 @@
|
||||||
|
model: open-codestral-mamba
|
||||||
|
label:
|
||||||
|
zh_Hans: open-codestral-mamba
|
||||||
|
en_US: open-codestral-mamba
|
||||||
|
model_type: llm
|
||||||
|
features:
|
||||||
|
- agent-thought
|
||||||
|
model_properties:
|
||||||
|
mode: chat
|
||||||
|
context_size: 256000
|
||||||
|
parameter_rules:
|
||||||
|
- name: temperature
|
||||||
|
use_template: temperature
|
||||||
|
default: 0.7
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: top_p
|
||||||
|
use_template: top_p
|
||||||
|
default: 1
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: max_tokens
|
||||||
|
use_template: max_tokens
|
||||||
|
default: 1024
|
||||||
|
min: 1
|
||||||
|
max: 16384
|
||||||
|
- name: safe_prompt
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
help:
|
||||||
|
en_US: Whether to inject a safety prompt before all conversations.
|
||||||
|
zh_Hans: 是否开启提示词审查
|
||||||
|
label:
|
||||||
|
en_US: SafePrompt
|
||||||
|
zh_Hans: 提示词审查
|
||||||
|
- name: random_seed
|
||||||
|
type: int
|
||||||
|
help:
|
||||||
|
en_US: The seed to use for random sampling. If set, different calls will generate deterministic results.
|
||||||
|
zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定
|
||||||
|
label:
|
||||||
|
en_US: RandomSeed
|
||||||
|
zh_Hans: 随机数种子
|
||||||
|
default: 0
|
||||||
|
min: 0
|
||||||
|
max: 2147483647
|
||||||
|
pricing:
|
||||||
|
input: '0.008'
|
||||||
|
output: '0.024'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: USD
|
|
@ -0,0 +1,51 @@
|
||||||
|
model: open-mistral-nemo
|
||||||
|
label:
|
||||||
|
zh_Hans: open-mistral-nemo
|
||||||
|
en_US: open-mistral-nemo
|
||||||
|
model_type: llm
|
||||||
|
features:
|
||||||
|
- agent-thought
|
||||||
|
model_properties:
|
||||||
|
mode: chat
|
||||||
|
context_size: 128000
|
||||||
|
parameter_rules:
|
||||||
|
- name: temperature
|
||||||
|
use_template: temperature
|
||||||
|
default: 0.7
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: top_p
|
||||||
|
use_template: top_p
|
||||||
|
default: 1
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: max_tokens
|
||||||
|
use_template: max_tokens
|
||||||
|
default: 1024
|
||||||
|
min: 1
|
||||||
|
max: 8192
|
||||||
|
- name: safe_prompt
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
help:
|
||||||
|
en_US: Whether to inject a safety prompt before all conversations.
|
||||||
|
zh_Hans: 是否开启提示词审查
|
||||||
|
label:
|
||||||
|
en_US: SafePrompt
|
||||||
|
zh_Hans: 提示词审查
|
||||||
|
- name: random_seed
|
||||||
|
type: int
|
||||||
|
help:
|
||||||
|
en_US: The seed to use for random sampling. If set, different calls will generate deterministic results.
|
||||||
|
zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定
|
||||||
|
label:
|
||||||
|
en_US: RandomSeed
|
||||||
|
zh_Hans: 随机数种子
|
||||||
|
default: 0
|
||||||
|
min: 0
|
||||||
|
max: 2147483647
|
||||||
|
pricing:
|
||||||
|
input: '0.008'
|
||||||
|
output: '0.024'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: USD
|
|
@ -0,0 +1,51 @@
|
||||||
|
model: pixtral-12b-2409
|
||||||
|
label:
|
||||||
|
zh_Hans: pixtral-12b-2409
|
||||||
|
en_US: pixtral-12b-2409
|
||||||
|
model_type: llm
|
||||||
|
features:
|
||||||
|
- agent-thought
|
||||||
|
model_properties:
|
||||||
|
mode: chat
|
||||||
|
context_size: 128000
|
||||||
|
parameter_rules:
|
||||||
|
- name: temperature
|
||||||
|
use_template: temperature
|
||||||
|
default: 0.7
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: top_p
|
||||||
|
use_template: top_p
|
||||||
|
default: 1
|
||||||
|
min: 0
|
||||||
|
max: 1
|
||||||
|
- name: max_tokens
|
||||||
|
use_template: max_tokens
|
||||||
|
default: 1024
|
||||||
|
min: 1
|
||||||
|
max: 8192
|
||||||
|
- name: safe_prompt
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
help:
|
||||||
|
en_US: Whether to inject a safety prompt before all conversations.
|
||||||
|
zh_Hans: 是否开启提示词审查
|
||||||
|
label:
|
||||||
|
en_US: SafePrompt
|
||||||
|
zh_Hans: 提示词审查
|
||||||
|
- name: random_seed
|
||||||
|
type: int
|
||||||
|
help:
|
||||||
|
en_US: The seed to use for random sampling. If set, different calls will generate deterministic results.
|
||||||
|
zh_Hans: 当开启随机数种子以后,你可以通过指定一个固定的种子来使得回答结果更加稳定
|
||||||
|
label:
|
||||||
|
en_US: RandomSeed
|
||||||
|
zh_Hans: 随机数种子
|
||||||
|
default: 0
|
||||||
|
min: 0
|
||||||
|
max: 2147483647
|
||||||
|
pricing:
|
||||||
|
input: '0.008'
|
||||||
|
output: '0.024'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: USD
|
Loading…
Reference in New Issue
Block a user