Update env-configuration.md

This commit is contained in:
Silentoplayz 2024-12-28 00:36:36 -05:00
parent ebbf6850c2
commit e886656ae5

View File

@ -679,8 +679,10 @@ modeling files for reranking.
#### `VECTOR_DB` #### `VECTOR_DB`
- Type: `str` - Type: `str`
- Options:
- `chroma`, `milvus`, `qdrant`, `opensearch`, `pgvector`
- Default: `chroma` - 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. - Description: Specifies which vector database system to use. This setting determines which vector storage system will be used for managing embeddings.
#### `RAG_EMBEDDING_ENGINE` #### `RAG_EMBEDDING_ENGINE`
@ -775,6 +777,8 @@ Provide a clear and direct response to the user's query, including inline citati
#### `RAG_TEXT_SPLITTER` #### `RAG_TEXT_SPLITTER`
- Type: `str` - Type: `str`
- Options: `character`, `token`
- Default: `character`
- Description: Sets the text splitter for RAG models. - Description: Sets the text splitter for RAG models.
- Persistence: This environment variable is a `PersistentConfig` variable. - Persistence: This environment variable is a `PersistentConfig` variable.
@ -1282,11 +1286,13 @@ the search query. Example: `http://searxng.local/search?q=<query>`
#### `AUDIO_TTS_ENGINE` #### `AUDIO_TTS_ENGINE`
- Type: `str` (enum: `elevenlabs`, `openai`) - Type: `str` (enum: `azure`, `elevenlabs`, `openai`, `transformers`)
- Options: - Options:
- Leave empty to use built-in WebAPI engine for Text-to-Speech. - Leave empty to use built-in WebAPI engine for Text-to-Speech.
- `azure` - Uses Azure engine for Text-to-Speech.
- `elevenlabs` - Uses ElevenLabs engine for Text-to-Speech - `elevenlabs` - Uses ElevenLabs engine for Text-to-Speech
- `openai` - Uses OpenAI engine for Text-to-Speech. - `openai` - Uses OpenAI engine for Text-to-Speech.
- `transformers` - Uses SentenceTransformers for Text-to-Speech.
- Description: Specifies the Text-to-Speech engine to use. - Description: Specifies the Text-to-Speech engine to use.
- Persistence: This environment variable is a `PersistentConfig` variable. - Persistence: This environment variable is a `PersistentConfig` variable.