mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 07:39:00 +08:00
feat: add pgvecto-rs and analyticdb in docker/.env.example (#8823)
This commit is contained in:
parent
a36117e12d
commit
6fbaabc1bc
@ -346,7 +346,7 @@ VOLCENGINE_TOS_REGION=your-region
|
|||||||
# ------------------------------
|
# ------------------------------
|
||||||
|
|
||||||
# The type of vector store to use.
|
# The type of vector store to use.
|
||||||
# Supported values are `weaviate`, `qdrant`, `milvus`, `myscale`, `relyt`, `pgvector`, `chroma`, `opensearch`, `tidb_vector`, `oracle`, `tencent`, `elasticsearch`.
|
# Supported values are `weaviate`, `qdrant`, `milvus`, `myscale`, `relyt`, `pgvector`, `pgvecto-rs`, ``chroma`, `opensearch`, `tidb_vector`, `oracle`, `tencent`, `elasticsearch`, `analyticdb`.
|
||||||
VECTOR_STORE=weaviate
|
VECTOR_STORE=weaviate
|
||||||
|
|
||||||
# The Weaviate endpoint URL. Only available when VECTOR_STORE is `weaviate`.
|
# The Weaviate endpoint URL. Only available when VECTOR_STORE is `weaviate`.
|
||||||
@ -385,13 +385,30 @@ MYSCALE_PASSWORD=
|
|||||||
MYSCALE_DATABASE=dify
|
MYSCALE_DATABASE=dify
|
||||||
MYSCALE_FTS_PARAMS=
|
MYSCALE_FTS_PARAMS=
|
||||||
|
|
||||||
# pgvector configurations, only available when VECTOR_STORE is `pgvecto-rs or pgvector`
|
# pgvector configurations, only available when VECTOR_STORE is `pgvector`
|
||||||
PGVECTOR_HOST=pgvector
|
PGVECTOR_HOST=pgvector
|
||||||
PGVECTOR_PORT=5432
|
PGVECTOR_PORT=5432
|
||||||
PGVECTOR_USER=postgres
|
PGVECTOR_USER=postgres
|
||||||
PGVECTOR_PASSWORD=difyai123456
|
PGVECTOR_PASSWORD=difyai123456
|
||||||
PGVECTOR_DATABASE=dify
|
PGVECTOR_DATABASE=dify
|
||||||
|
|
||||||
|
# pgvecto-rs configurations, only available when VECTOR_STORE is `pgvecto-rs`
|
||||||
|
PGVECTO_RS_HOST=pgvecto-rs
|
||||||
|
PGVECTO_RS_PORT=5432
|
||||||
|
PGVECTO_RS_USER=postgres
|
||||||
|
PGVECTO_RS_PASSWORD=difyai123456
|
||||||
|
PGVECTO_RS_DATABASE=dify
|
||||||
|
|
||||||
|
# analyticdb configurations, only available when VECTOR_STORE is `analyticdb`
|
||||||
|
ANALYTICDB_KEY_ID=your-ak
|
||||||
|
ANALYTICDB_KEY_SECRET=your-sk
|
||||||
|
ANALYTICDB_REGION_ID=cn-hangzhou
|
||||||
|
ANALYTICDB_INSTANCE_ID=gp-ab123456
|
||||||
|
ANALYTICDB_ACCOUNT=testaccount
|
||||||
|
ANALYTICDB_PASSWORD=testpassword
|
||||||
|
ANALYTICDB_NAMESPACE=dify
|
||||||
|
ANALYTICDB_NAMESPACE_PASSWORD=difypassword
|
||||||
|
|
||||||
# TiDB vector configurations, only available when VECTOR_STORE is `tidb`
|
# TiDB vector configurations, only available when VECTOR_STORE is `tidb`
|
||||||
TIDB_VECTOR_HOST=tidb
|
TIDB_VECTOR_HOST=tidb
|
||||||
TIDB_VECTOR_PORT=4000
|
TIDB_VECTOR_PORT=4000
|
||||||
|
Loading…
x
Reference in New Issue
Block a user