“Models” have been fully integrated into a “Plugin” ecosystem. For detailed development instructions on model plugins, please refer to Plugin Development. The following content has been archived.
label (object) Provider display name, i18n, with en_US English and zh_Hans Chinese language settings
zh_Hans (string) [optional] Chinese label name, if zh_Hans is not set, en_US will be used by default.
en_US (string) English label name
description (object) Provider description, i18n
zh_Hans (string) [optional] Chinese description
en_US (string) English description
icon_small (string) [optional] Small provider ICON, stored in the _assets directory under the corresponding provider implementation directory, with the same language strategy as label
zh_Hans (string) Chinese ICON
en_US (string) English ICON
icon_large (string) [optional] Large provider ICON, stored in the _assets directory under the corresponding provider implementation directory, with the same language strategy as label
zh_Hans (string) Chinese ICON
en_US (string) English ICON
background (string) [optional] Background color value, e.g., #FFFFFF, if empty, the default frontend color value will be displayed.
help (object) [optional] help information
title (object) help title, i18n
zh_Hans (string) [optional] Chinese title
en_US (string) English title
url (object) help link, i18n
zh_Hans (string) [optional] Chinese link
en_US (string) English link
supported_model_types (array[ModelType]) Supported model types
features (array[ModelFeature]) [optional] Supported feature list
model_properties (object) Model properties
mode (LLMMode) Mode (available for model type llm)
context_size (int) Context size (available for model types llm, text-embedding)
max_chunks (int) Maximum number of chunks (available for model types text-embedding, moderation)
file_upload_limit (int) Maximum file upload limit, in MB (available for model type speech2text)
supported_file_extensions (string) Supported file extension formats, e.g., mp3, mp4 (available for model type speech2text)
default_voice (string) default voice, e.g.:alloy,echo,fable,onyx,nova,shimmer(available for model type tts)
voices (list) List of available voice.(available for model type tts)
mode (string) voice model.(available for model type tts)
name (string) voice model display name.(available for model type tts)
language (string) the voice model supports languages.(available for model type tts)
word_limit (int) Single conversion word limit, paragraphwise by default(available for model type tts)
audio_type (string) Support audio file extension format, e.g.:mp3,wav(available for model type tts)
max_workers (int) Number of concurrent workers supporting text and audio conversion(available for model typetts)
max_characters_per_chunk (int) Maximum characters per chunk (available for model type moderation)
parameter_rules (array[ParameterRule]) [optional] Model invocation parameter rules
pricing (PriceConfig) [optional] Pricing information
deprecated (bool) Whether deprecated. If deprecated, the model will no longer be displayed in the list, but those already configured can continue to be used. Default False.
predefined-model Predefined modelIndicates that users can use the predefined models under the provider by configuring the unified provider credentials.
customizable-model Customizable modelUsers need to add credential configuration for each model.
fetch-from-remote Fetch from remoteConsistent with the predefined-model configuration method, only unified provider credentials need to be configured, and models are obtained from the provider through credential information.
name (string) Actual model invocation parameter name
use_template (string) [optional] Using templateBy default, 5 variable content configuration templates are preset:
temperature
top_p
frequency_penalty
presence_penalty
max_tokens
In use_template, you can directly set the template variable name, which will use the default configuration in entities.defaults.PARAMETER_RULE_TEMPLATE
No need to set any parameters other than name and use_template. If additional configuration parameters are set, they will override the default configuration.
Refer to openai/llm/gpt-3.5-turbo.yaml.
label (object) [optional] Label, i18n
zh_Hans(string) [optional] Chinese label name
en_US (string) English label name
type(string) [optional] Parameter type
int Integer
float Float
string String
boolean Boolean
help (string) [optional] Help information
zh_Hans (string) [optional] Chinese help information
en_US (string) English help information
required (bool) Required, default False.
default(int/float/string/bool) [optional] Default value
min(int/float) [optional] Minimum value, applicable only to numeric types
max(int/float) [optional] Maximum value, applicable only to numeric types
precision(int) [optional] Precision, number of decimal places to keep, applicable only to numeric types
options (array[string]) [optional] Dropdown option values, applicable only when type is string, if not set or null, option values are not restricted