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/config.json
+27-4Lines changed: 27 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,9 @@
113
113
"info",
114
114
"model_override",
115
115
"rlsapi_v1_infer",
116
+
"register_mcp_server",
117
+
"list_mcp_servers",
118
+
"delete_mcp_server",
116
119
"a2a_agent_card",
117
120
"a2a_task_execution",
118
121
"a2a_message",
@@ -625,6 +628,11 @@
625
628
}
626
629
],
627
630
"default": null
631
+
},
632
+
"allow_verbose_infer": {
633
+
"default": false,
634
+
"title": "Allow Verbose Infer",
635
+
"type": "boolean"
628
636
}
629
637
},
630
638
"title": "Customization",
@@ -905,17 +913,25 @@
905
913
"additionalProperties": false,
906
914
"description": "OKP (Offline Knowledge Portal) provider configuration.\n\nControls provider-specific behaviour for the OKP vector store.\nOnly relevant when ``\"okp\"`` is listed in ``rag.inline`` or ``rag.tool``.",
907
915
"properties": {
916
+
"rhokp_url": {
917
+
"type": "string",
918
+
"nullable": true,
919
+
"default": null,
920
+
"description": "Base URL for the OKP server (http or https). Set to `${env.RH_SERVER_OKP}` in YAML to use the environment variable. When unset, the default from constants is used.",
921
+
"title": "OKP base URL"
922
+
},
908
923
"offline": {
909
924
"default": true,
910
925
"description": "When True, use parent_id for OKP chunk source URLs. When False, use reference_url for chunk source URLs.",
911
926
"title": "OKP offline mode",
912
927
"type": "boolean"
913
928
},
914
929
"chunk_filter_query": {
915
-
"default": "is_chunk:true",
916
-
"description": "OKP filter query applied to every OKP search request. Defaults to 'is_chunk:true' to restrict results to chunk documents. To add extra constraints, extend the expression using boolean syntax, e.g. 'is_chunk:true AND product:*openshift*'.",
917
-
"title": "OKP chunk filter query",
918
-
"type": "string"
930
+
"type": "string",
931
+
"nullable": true,
932
+
"default": null,
933
+
"description": "Additional OKP filter query applied to every OKP search request. Use Solr boolean syntax, e.g. 'product:ansible AND product:*openshift*'.",
934
+
"title": "OKP chunk filter query"
919
935
}
920
936
},
921
937
"title": "OkpConfiguration",
@@ -1128,6 +1144,13 @@
1128
1144
"default": null,
1129
1145
"description": "List of all required entitlements.",
1130
1146
"title": "Required entitlements"
1147
+
},
1148
+
"max_header_size": {
1149
+
"default": 8192,
1150
+
"description": "Maximum allowed size in bytes for the base64-encoded x-rh-identity header. Headers exceeding this size are rejected before decoding.",
@@ -407,9 +392,9 @@ Only relevant when ``"okp"`` is listed in ``rag.inline`` or ``rag.tool``.
407
392
408
393
| Field | Type | Description |
409
394
|-------|------|-------------|
410
-
| rhokp_url | string | Base URL for the OKP server. Set to `${env.RH_SERVER_OKP}` in YAML to use the environment variable. When missing or empty, the application default is used. |
395
+
| rhokp_url | string | Base URL for the OKP server (http or https). Set to `${env.RH_SERVER_OKP}` in YAML to use the environment variable. When unset, the default from constants is used. |
411
396
| offline | boolean | When True, use parent_id for OKP chunk source URLs. When False, use reference_url for chunk source URLs. |
412
-
| chunk_filter_query | string | Additional OKP filter query applied to every OKP search request. Use Solr boolean syntax, e.g. 'product:\*ansible\* AND product:\*openshift\*'. |
397
+
| chunk_filter_query | string | Additional OKP filter query applied to every OKP search request. Use Solr boolean syntax, e.g. 'product:ansible AND product:*openshift*'. |
413
398
414
399
415
400
## PostgreSQLDatabaseConfiguration
@@ -516,6 +501,7 @@ Red Hat Identity authentication configuration.
516
501
| Field | Type | Description |
517
502
|-------|------|-------------|
518
503
| required_entitlements | array | List of all required entitlements. |
504
+
| max_header_size | integer | Maximum allowed size in bytes for the base64-encoded x-rh-identity header. Headers exceeding this size are rejected before decoding. |
0 commit comments