Update env-configuration.md

This commit is contained in:
Timothy J. Baek 2024-09-20 19:30:14 +02:00
parent bfc6ea4b64
commit 2964c1f840

View File

@ -456,6 +456,12 @@ Available Tools: {{TOOLS}}\nReturn an empty string if no tools match the query.
- Default: `${DATA_DIR}/docs` - Default: `${DATA_DIR}/docs`
- Description: Specifies the directory scanned for documents to add to the RAG database when triggered. - Description: Specifies the directory scanned for documents to add to the RAG database when triggered.
#### `VECTOR_DB`
- Type: `str`
- Default: `chroma`
- Description: Specifies which vector database system to use, either 'chroma' for ChromaDB or 'milvus' for Milvus. This setting determines which vector storage system will be used for managing embeddings.
#### `CHROMA_TENANT` #### `CHROMA_TENANT`
- Type: `str` - Type: `str`
@ -491,6 +497,12 @@ Available Tools: {{TOOLS}}\nReturn an empty string if no tools match the query.
- Default: `False` - Default: `False`
- Description: Controls whether or not SSL is used for ChromaDB Server connections. - Description: Controls whether or not SSL is used for ChromaDB Server connections.
#### `MILVUS_URI`
- Type: `str`
- Default: `${DATA_DIR}/vector_db/milvus.db`
- Description: Specifies the URI for connecting to the Milvus vector database. This can point to a local or remote Milvus server based on the deployment configuration.
#### `RAG_TOP_K` #### `RAG_TOP_K`
- Type: `int` - Type: `int`