Merge branch 'main' of github.com:langgenius/dify into feat/plugins
commit
e8127756e0
@ -0,0 +1,38 @@
|
|||||||
|
model: hunyuan-turbo
|
||||||
|
label:
|
||||||
|
zh_Hans: hunyuan-turbo
|
||||||
|
en_US: hunyuan-turbo
|
||||||
|
model_type: llm
|
||||||
|
features:
|
||||||
|
- agent-thought
|
||||||
|
- tool-call
|
||||||
|
- multi-tool-call
|
||||||
|
- stream-tool-call
|
||||||
|
model_properties:
|
||||||
|
mode: chat
|
||||||
|
context_size: 32000
|
||||||
|
parameter_rules:
|
||||||
|
- name: temperature
|
||||||
|
use_template: temperature
|
||||||
|
- name: top_p
|
||||||
|
use_template: top_p
|
||||||
|
- name: max_tokens
|
||||||
|
use_template: max_tokens
|
||||||
|
default: 1024
|
||||||
|
min: 1
|
||||||
|
max: 32000
|
||||||
|
- name: enable_enhance
|
||||||
|
label:
|
||||||
|
zh_Hans: 功能增强
|
||||||
|
en_US: Enable Enhancement
|
||||||
|
type: boolean
|
||||||
|
help:
|
||||||
|
zh_Hans: 功能增强(如搜索)开关,关闭时将直接由主模型生成回复内容,可以降低响应时延(对于流式输出时的首字时延尤为明显)。但在少数场景里,回复效果可能会下降。
|
||||||
|
en_US: Allow the model to perform external search to enhance the generation results.
|
||||||
|
required: false
|
||||||
|
default: true
|
||||||
|
pricing:
|
||||||
|
input: '0.015'
|
||||||
|
output: '0.05'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: RMB
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
model: jina-embeddings-v3
|
||||||
|
model_type: text-embedding
|
||||||
|
model_properties:
|
||||||
|
context_size: 8192
|
||||||
|
max_chunks: 2048
|
||||||
|
pricing:
|
||||||
|
input: '0.001'
|
||||||
|
unit: '0.001'
|
||||||
|
currency: USD
|
||||||
@ -1,5 +1,4 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from .fine_tuning_job import FineTuningJob as FineTuningJob
|
from .fine_tuning_job import FineTuningJob, ListOfFineTuningJob
|
||||||
from .fine_tuning_job import ListOfFineTuningJob as ListOfFineTuningJob
|
from .fine_tuning_job_event import FineTuningJobEvent
|
||||||
from .fine_tuning_job_event import FineTuningJobEvent as FineTuningJobEvent
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue