From 68921bc4752235ae25640b7631f4eccb2fabca31 Mon Sep 17 00:00:00 2001 From: yangdx Date: Mon, 7 Jul 2025 17:49:33 +0800 Subject: [PATCH] Update env.example --- env.example | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/env.example b/env.example index 03bc8555..1efe4830 100644 --- a/env.example +++ b/env.example @@ -1,6 +1,5 @@ ### This is sample file of .env - ### Server Configuration HOST=0.0.0.0 PORT=9621 @@ -51,7 +50,7 @@ OLLAMA_EMULATING_MODEL_TAG=latest # MAX_TOKEN_RELATION_DESC=4000 # MAX_TOKEN_ENTITY_DESC=4000 -### Entity and ralation summarization configuration +### Entity and relation summarization configuration ### Language: English, Chinese, French, German ... SUMMARY_LANGUAGE=English ### Number of duplicated entities/edges to trigger LLM re-summary on merge ( at least 3 is recommented) @@ -111,7 +110,7 @@ EMBEDDING_BINDING_HOST=http://localhost:11434 ########################### ### Data storage selection ########################### -### In-memory database with data persistence to local files +### In-memory database with local file persistence(Recommended for small scale deployment) # LIGHTRAG_KV_STORAGE=JsonKVStorage # LIGHTRAG_DOC_STATUS_STORAGE=JsonDocStatusStorage # LIGHTRAG_GRAPH_STORAGE=NetworkXStorage @@ -122,18 +121,18 @@ EMBEDDING_BINDING_HOST=http://localhost:11434 # LIGHTRAG_DOC_STATUS_STORAGE=PGDocStatusStorage # LIGHTRAG_GRAPH_STORAGE=PGGraphStorage # LIGHTRAG_VECTOR_STORAGE=PGVectorStorage -### MongoDB (recommended for production deployment with Atlas service enabled.) +### MongoDB (Vector storage only available on Atlas Cloud) # LIGHTRAG_KV_STORAGE=MongoKVStorage # LIGHTRAG_DOC_STATUS_STORAGE=MongoDocStatusStorage # LIGHTRAG_GRAPH_STORAGE=MongoGraphStorage # LIGHTRAG_VECTOR_STORAGE=MongoVectorDBStorage -### Redis Storage (recommended for production deployment) +### Redis Storage (Recommended for production deployment) # LIGHTRAG_KV_STORAGE=RedisKVStorage # LIGHTRAG_DOC_STATUS_STORAGE=RedisDocStatusStorage -### Vector Storage (recommended for production deployment) +### Vector Storage (Recommended for production deployment) # LIGHTRAG_VECTOR_STORAGE=MilvusVectorDBStorage # LIGHTRAG_VECTOR_STORAGE=QdrantVectorDBStorage -### Graph Storage (recommended for production deployment) +### Graph Storage (Recommended for production deployment) # LIGHTRAG_GRAPH_STORAGE=Neo4JStorage ####################################################################