mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-21 00:49:36 +00:00
73 lines
3.0 KiB
Plaintext
73 lines
3.0 KiB
Plaintext
#*******************************************************************#
|
|
#** DB-GPT - GENERAL SETTINGS **#
|
|
#*******************************************************************#
|
|
## DISABLED_COMMAND_CATEGORIES - The list of categories of commands that are disabled. Each of the below are an option:
|
|
## pilot.commands.query_execute
|
|
|
|
## For example, to disable coding related features, uncomment the next line
|
|
# DISABLED_COMMAND_CATEGORIES=
|
|
|
|
|
|
#*******************************************************************#
|
|
#*** LLM PROVIDER ***#
|
|
#*******************************************************************#
|
|
|
|
# TEMPERATURE=0
|
|
|
|
#*******************************************************************#
|
|
#** LLM MODELS **#
|
|
#*******************************************************************#
|
|
|
|
## SMART_LLM_MODEL - Smart language model (Default: vicuna-13b)
|
|
## FAST_LLM_MODEL - Fast language model (Default: chatglm-6b)
|
|
# SMART_LLM_MODEL=vicuna-13b
|
|
# FAST_LLM_MODEL=chatglm-6b
|
|
|
|
|
|
### EMBEDDINGS
|
|
## EMBEDDING_MODEL - Model to use for creating embeddings
|
|
## EMBEDDING_TOKENIZER - Tokenizer to use for chunking large inputs
|
|
## EMBEDDING_TOKEN_LIMIT - Chunk size limit for large inputs
|
|
# EMBEDDING_MODEL=all-MiniLM-L6-v2
|
|
# EMBEDDING_TOKENIZER=all-MiniLM-L6-v2
|
|
# EMBEDDING_TOKEN_LIMIT=8191
|
|
|
|
|
|
#*******************************************************************#
|
|
#** DATABASE SETTINGS **#
|
|
#*******************************************************************#
|
|
DB_SETTINGS_MYSQL_USER=root
|
|
DB_SETTINGS_MYSQL_PASSWORD=password
|
|
DB_SETTINGS_MYSQL_HOST=localhost
|
|
DB_SETTINGS_MYSQL_PORT=3306
|
|
|
|
|
|
### MILVUS
|
|
## MILVUS_ADDR - Milvus remote address (e.g. localhost:19530)
|
|
## MILVUS_USERNAME - username for your Milvus database
|
|
## MILVUS_PASSWORD - password for your Milvus database
|
|
## MILVUS_SECURE - True to enable TLS. (Default: False)
|
|
## Setting MILVUS_ADDR to a `https://` URL will override this setting.
|
|
## MILVUS_COLLECTION - Milvus collection, change it if you want to start a new memory and retain the old memory.
|
|
# MILVUS_ADDR=localhost:19530
|
|
# MILVUS_USERNAME=
|
|
# MILVUS_PASSWORD=
|
|
# MILVUS_SECURE=
|
|
# MILVUS_COLLECTION=dbgpt
|
|
|
|
#*******************************************************************#
|
|
#** ALLOWLISTED PLUGINS **#
|
|
#*******************************************************************#
|
|
|
|
#ALLOWLISTED_PLUGINS - Sets the listed plugins that are allowed (Example: plugin1,plugin2,plugin3)
|
|
#DENYLISTED_PLUGINS - Sets the listed plugins that are not allowed (Example: plugin1,plugin2,plugin3)
|
|
ALLOWLISTED_PLUGINS=
|
|
DENYLISTED_PLUGINS=
|
|
|
|
|
|
#*******************************************************************#
|
|
#** CHAT PLUGIN SETTINGS **#
|
|
#*******************************************************************#
|
|
# CHAT_MESSAGES_ENABLED - Enable chat messages (Default: False)
|
|
# CHAT_MESSAGES_ENABLED=False
|