You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
[system]
|
|
# Load language from environment variable(It is set by the hook)
|
|
language = "${env:DBGPT_LANG:-zh}"
|
|
api_keys = []
|
|
encrypt_key = "your_secret_key"
|
|
|
|
# Server Configurations
|
|
[service.web]
|
|
host = "0.0.0.0"
|
|
port = 5670
|
|
|
|
[service.web.database]
|
|
type = "sqlite"
|
|
path = "pilot/meta_data/dbgpt.db"
|
|
|
|
[rag.storage]
|
|
[rag.storage.vector]
|
|
type = "chroma"
|
|
persist_path = "pilot/data"
|
|
|
|
# Model Configurations
|
|
[models]
|
|
[[models.llms]]
|
|
name = "Qwen2.5-Coder-0.5B-Instruct"
|
|
provider = "hf"
|
|
# If not provided, the model will be downloaded from the Hugging Face model hub
|
|
# uncomment the following line to specify the model path in the local file system
|
|
# path = "the-model-path-in-the-local-file-system"
|
|
path = "models/Qwen2.5-Coder-0.5B-Instruct"
|
|
|
|
[[models.embeddings]]
|
|
name = "BAAI/bge-large-zh-v1.5"
|
|
provider = "hf"
|
|
# If not provided, the model will be downloaded from the Hugging Face model hub
|
|
# uncomment the following line to specify the model path in the local file system
|
|
# path = "the-model-path-in-the-local-file-system"
|
|
path = "models/BAAI/bge-large-zh-v1.5"
|
|
|
|
|