diff --git a/deploy/chart/euler_copilot/configs/framework/config.toml b/deploy/chart/euler_copilot/configs/framework/config.toml index e079db2fec122d22991a81c34818a01fdd966400..040c109993c84824da5d6bbce9a57757c5850804 100644 --- a/deploy/chart/euler_copilot/configs/framework/config.toml +++ b/deploy/chart/euler_copilot/configs/framework/config.toml @@ -84,6 +84,14 @@ socket_connect_timeout = 5.0 max_connections = 10 health_check_interval = 30 +[vectordb] +type = 'opengauss' +host = 'opengauss-db.{{ .Release.Namespace }}.svc.cluster.local' +port = 5432 +user = 'postgres' +password = '${gauss-password}' +db = 'postgres' + [minio] endpoint = 'minio-service.{{ .Release.Namespace }}.svc.cluster.local:9000' access_key = 'minioadmin' @@ -93,7 +101,7 @@ secure = false [llm] provider = '{{ .Values.models.answer.provider }}' endpoint = '{{ .Values.models.answer.endpoint }}' -key = '{{ .Values.models.answer.key }}' +api_key = '{{ .Values.models.answer.key }}' model = '{{ .Values.models.answer.name }}' ctx_length = {{ default 8192 .Values.models.answer.ctxLength }} max_tokens = {{ default 2048 .Values.models.answer.maxTokens }}