d13100ebf3
Update draft releases / main (push) Has been cancelled
Build and push docs image / build-image (push) Has been cancelled
Build Web Application / build-web (macos-latest) (push) Has been cancelled
Build Web Application / build-web (ubuntu-latest) (push) Has been cancelled
Python Code Quality Checks / build (push) Has been cancelled
Test Python / test-python (macos-latest, 3.10) (push) Has been cancelled
Test Python / test-python (macos-latest, 3.11) (push) Has been cancelled
Test Python / test-python (ubuntu-latest, 3.10) (push) Has been cancelled
Test Python / test-python (ubuntu-latest, 3.11) (push) Has been cancelled
28 lines
593 B
TOML
28 lines
593 B
TOML
[system]
|
|
# Load language from environment variable(It is set by the hook)
|
|
language = "${env:DBGPT_LANG:-en}"
|
|
log_level = "INFO"
|
|
api_keys = []
|
|
encrypt_key = "your_secret_key"
|
|
|
|
# Server Configurations
|
|
[service.web]
|
|
host = "0.0.0.0"
|
|
port = 5670
|
|
light = true
|
|
controller_addr = "${env:CONTROLLER_ADDR}"
|
|
|
|
[service.web.database]
|
|
type = "mysql"
|
|
host = "${env:MYSQL_HOST}"
|
|
port = "${env:MYSQL_PORT}"
|
|
database = "${env:MYSQL_DATABASE}"
|
|
user = "${env:MYSQL_USER}"
|
|
password ="${env:MYSQL_PASSWORD}"
|
|
|
|
|
|
[models]
|
|
default_embedding = "${env:EMBEDDING_MODEL_NAME:-text-embedding-3-small}"
|
|
|
|
[log]
|
|
level = "INFO" |