mirror of
https://github.com/labring/FastGPT.git
synced 2026-06-13 01:07:50 +08:00
d23c72690e
* feat: add openGauss DataVec as vector database backend Add openGauss with DataVec extension as a new vector storage option alongside PGVector and Milvus. Includes vector DB controller, Docker Compose deployment configs (CN/Global), deploy generation scripts, and test templates. * test: add opengauss vectorDB integration entry * test: adjust vector env template for opengauss run * fix: ts --------- Co-authored-by: archer <545436317@qq.com>
12 lines
492 B
Bash
12 lines
492 B
Bash
VECTOR_VQ_LEVEL=32
|
|
# PG
|
|
PG_URL=postgresql://username:password@localhost:6001/postgres
|
|
# OceanBase 可以用云服务来测
|
|
# OCEANBASE_URL=mysql://root%40tenantname:tenantpassword@localhost:6005/mysql
|
|
# SeekDB vector database connection
|
|
SEEKDB_URL=mysql://root:seekdbpassword@127.0.0.1:6003/mysql
|
|
# Milvus vector database connection
|
|
MILVUS_ADDRESS=http://localhost:6002
|
|
MILVUS_TOKEN=
|
|
# openGauss vector database connection
|
|
OPENGAUSS_URL=postgresql://gaussdb:FastGPT@123@localhost:5432/fastgpt |