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/models/successful_responses.json
+24-6Lines changed: 24 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -433,10 +433,19 @@
433
433
"title": "PostgreSQL host"
434
434
},
435
435
"port": {
436
-
"type": "string",
437
-
"nullable": true,
436
+
"anyOf": [
437
+
{
438
+
"type": "string"
439
+
},
440
+
{
441
+
"type": "integer"
442
+
},
443
+
{
444
+
"type": "null"
445
+
}
446
+
],
438
447
"default": null,
439
-
"description": "PostgreSQL port for remote::pgvector. Defaults to ${env.POSTGRES_PORT} when rag_type is remote::pgvector.",
448
+
"description": "PostgreSQL port for remote::pgvector. Defaults to ${env.POSTGRES_PORT} when rag_type is remote::pgvector. Accepts string placeholders and integer values.",
440
449
"title": "PostgreSQL port"
441
450
},
442
451
"db": {
@@ -3933,10 +3942,19 @@
3933
3942
"title": "PostgreSQL host"
3934
3943
},
3935
3944
"port": {
3936
-
"type": "string",
3937
-
"nullable": true,
3945
+
"anyOf": [
3946
+
{
3947
+
"type": "string"
3948
+
},
3949
+
{
3950
+
"type": "integer"
3951
+
},
3952
+
{
3953
+
"type": "null"
3954
+
}
3955
+
],
3938
3956
"default": null,
3939
-
"description": "PostgreSQL port. Defaults to ${env.POSTGRES_PORT}.",
3957
+
"description": "PostgreSQL port. Defaults to ${env.POSTGRES_PORT}. Accepts string placeholders and integer values.",
Copy file name to clipboardExpand all lines: docs/models/successful_responses.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -200,7 +200,7 @@ BYOK (Bring Your Own Knowledge) RAG configuration.
200
200
| db_path | string | Path to RAG database. Required for inline::faiss. |
201
201
| score_multiplier | number | Multiplier applied to relevance scores from this vector store. Used to weight results when querying multiple knowledge sources. Values > 1 boost this store's results; values < 1 reduce them. |
202
202
| host | string | PostgreSQL host for remote::pgvector. Defaults to ${env.POSTGRES_HOST} when rag_type is remote::pgvector. |
203
-
| port |string| PostgreSQL port for remote::pgvector. Defaults to ${env.POSTGRES_PORT} when rag_type is remote::pgvector. |
203
+
| port || PostgreSQL port for remote::pgvector. Defaults to ${env.POSTGRES_PORT} when rag_type is remote::pgvector. Accepts string placeholders and integer values. |
204
204
| db | string | PostgreSQL database name for remote::pgvector. Defaults to ${env.POSTGRES_DATABASE} when rag_type is remote::pgvector. |
205
205
| user | string | PostgreSQL user for remote::pgvector. Defaults to ${env.POSTGRES_USER} when rag_type is remote::pgvector. |
206
206
| password | string | PostgreSQL password for remote::pgvector. Defaults to ${env.POSTGRES_PASSWORD} when rag_type is remote::pgvector. |
@@ -1777,7 +1777,7 @@ Storage config for a pgvector dynamic vector-store provider.
0 commit comments