You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/env-configuration.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1117,6 +1117,17 @@ modeling files for reranking.
1117
1117
- Default: `chroma`
1118
1118
- Description: Specifies which vector database system to use. This setting determines which vector storage system will be used for managing embeddings.
1119
1119
1120
+
:::note
1121
+
1122
+
PostgreSQL Dependencies
1123
+
To use `pgvector`, ensure you have PostgreSQL dependencies installed:
1124
+
1125
+
```bash
1126
+
pip install open-webui[all]
1127
+
```
1128
+
1129
+
:::
1130
+
1120
1131
### ChromaDB
1121
1132
1122
1133
#### `CHROMA_TENANT`
@@ -1308,6 +1319,17 @@ modeling files for reranking.
1308
1319
1309
1320
### PGVector
1310
1321
1322
+
:::note
1323
+
1324
+
PostgreSQL Dependencies
1325
+
To use `pgvector`, ensure you have PostgreSQL dependencies installed:
1326
+
1327
+
```bash
1328
+
pip install open-webui[all]
1329
+
```
1330
+
1331
+
:::
1332
+
1311
1333
#### `PGVECTOR_DB_URL`
1312
1334
1313
1335
- Type: `str`
@@ -3638,7 +3660,10 @@ If the endpoint is an S3-compatible provider like MinIO that uses a TLS certific
3638
3660
3639
3661
:::info
3640
3662
3641
-
Supports SQLite, Postgres, and encrypted SQLite via SQLCipher. Changing the URL does not migrate data between databases.
3663
+
**For PostgreSQL support, ensure you installed with `pip install open-webui[all]` instead of the basic installation.**
3664
+
Supports SQLite, Postgres, and encrypted SQLite via SQLCipher.
3665
+
**Changing the URL does not migrate data between databases.**
3666
+
3642
3667
Documentation on the URL scheme is available [here](https://docs.sqlalchemy.org/en/20/core/engines.html#database-urls).
3643
3668
3644
3669
If your database password contains special characters, please ensure they are properly URL-encoded. For example, a password like `p@ssword` should be encoded as `p%40ssword`.
0 commit comments