Merge pull request #511 from gaby/new-envs
Some checks are pending
Deploy site to Pages / build (push) Waiting to run
Deploy site to Pages / deploy (push) Blocked by required conditions

Document new Qdrant and Thread Pool ENV variables
This commit is contained in:
Tim Jaeryang Baek 2025-04-22 08:10:18 -07:00 committed by GitHub
commit a6958bdc8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,6 +127,12 @@ is also being used and set to `True`. Failure to do so will result in the inabil
- Description: Enables or disables user webhooks.
- Persistence: This environment variable is a `PersistentConfig` variable.
#### `THREAD_POOL_SIZE`
- Type: `int`
- Default: `0`
- Description: Sets the thread pool size for FastAPI/AnyIO blocking calls. By default FastAPI/AnyIO use `40` threads.
#### `SHOW_ADMIN_DETAILS`
- Type: `bool`
@ -1106,6 +1112,24 @@ modeling files for reranking.
- Type: `str`
- Description: Sets the URI for Qdrant.
#### `QDRANT_ON_DISK`
- Type: `bool`
- Default: `False`
- Description: Enable the usage of memmap(also known as on-disk) storage
#### `QDRANT_PREFER_GRPC`
- Type: `bool`
- Default: `False`
- Description: Use gPRC interface whenever possible
#### `QDRANT_GRPC_PORT`
- Type: `int`
- Default: `6334`
- Description: Sets the gRPC port number for Qdrant.
### Pinecone
When using Pinecone as the vector store, the following environment variables are used to control its behavior. Make sure to set these variables in your `.env` file or deployment environment.
@ -1520,12 +1544,6 @@ When enabling `GOOGLE_DRIVE_INTEGRATION`, ensure that you have configured `GOOGL
- Description: Specifies the client ID for OneDrive integration.
- Persistence: This environment variable is a `PersistentConfig` variable.
#### `QDRANT_ON_DISK`
- Type: `bool`
- Default: `False`
- Description: Enable the usage of memmap(also known as on-disk) storage
## Web Search
#### `ENABLE_WEB_SEARCH`