fix some example
Browse files- env.example +9 -2
- lightrag/api/README.md +1 -1
env.example
CHANGED
|
@@ -142,10 +142,17 @@ NEO4J_USERNAME=neo4j
|
|
| 142 |
NEO4J_PASSWORD='your_password'
|
| 143 |
|
| 144 |
### MongoDB Configuration
|
| 145 |
-
|
| 146 |
-
|
| 147 |
MONGODB_GRAPH=false # deprecated (keep for backward compatibility)
|
| 148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
### Qdrant
|
| 150 |
QDRANT_URL=http://localhost:16333
|
| 151 |
# QDRANT_API_KEY=your-api-key
|
|
|
|
| 142 |
NEO4J_PASSWORD='your_password'
|
| 143 |
|
| 144 |
### MongoDB Configuration
|
| 145 |
+
MONGO_URI=mongodb://root:root@localhost:27017/
|
| 146 |
+
MONGO_DATABASE=LightRAG
|
| 147 |
MONGODB_GRAPH=false # deprecated (keep for backward compatibility)
|
| 148 |
|
| 149 |
+
### Milvus Configuration
|
| 150 |
+
MILVUS_URI=http://localhost:19530
|
| 151 |
+
MILVUS_DB_NAME=lightrag
|
| 152 |
+
# MILVUS_USER=root
|
| 153 |
+
# MILVUS_PASSWORD=your_password
|
| 154 |
+
# MILVUS_TOKEN=your_token
|
| 155 |
+
|
| 156 |
### Qdrant
|
| 157 |
QDRANT_URL=http://localhost:16333
|
| 158 |
# QDRANT_API_KEY=your-api-key
|
lightrag/api/README.md
CHANGED
|
@@ -267,7 +267,7 @@ OracleGraphStorage Postgres
|
|
| 267 |
|
| 268 |
```
|
| 269 |
NanoVectorDBStorage NanoVector(default)
|
| 270 |
-
|
| 271 |
ChromaVectorDBStorage Chroma
|
| 272 |
TiDBVectorDBStorage TiDB
|
| 273 |
PGVectorStorage Postgres
|
|
|
|
| 267 |
|
| 268 |
```
|
| 269 |
NanoVectorDBStorage NanoVector(default)
|
| 270 |
+
MilvusVectorDBStorage Milvus
|
| 271 |
ChromaVectorDBStorage Chroma
|
| 272 |
TiDBVectorDBStorage TiDB
|
| 273 |
PGVectorStorage Postgres
|