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
| 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. |
3807
3808
3808
3809
3809
3810
## CORSConfiguration
@@ -3868,7 +3869,8 @@ Global service configuration.
Controls provider-specific behaviour for the OKP vector store.
4635
+
Only relevant when ``"okp"`` is listed in ``rag.inline`` or ``rag.tool``.
4636
+
4637
+
4638
+
| Field | Type | Description |
4639
+
|-------|------|-------------|
4640
+
| offline | boolean | When True, use parent_id for OKP chunk source URLs. When False, use reference_url for chunk source URLs. |
4641
+
| chunk_filter_query | string | 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*'. |
4642
+
4643
+
4625
4644
## OpenIdConnectSecurityScheme
4626
4645
4627
4646
@@ -4769,7 +4788,7 @@ Example:
4769
4788
| generate_topic_summary || Whether to generate topic summary for new conversations |
4770
4789
| media_type || Media type for the response format |
4771
4790
| vector_store_ids || Optional list of specific vector store IDs to query for RAG. If not provided, all available vector stores will be queried. |
4772
-
| shield_ids || Optional list of safety shield IDs to apply. If None, all configured shields are used. If provided, must contain at least one valid shield ID (empty list raises 422 error).|
4791
+
| shield_ids || Optional list of safety shield IDs to apply. If None, all configured shields are used. |
4773
4792
| solr || Solr-specific query parameters including filter queries |
4774
4793
4775
4794
@@ -4938,6 +4957,28 @@ Red Hat Identity authentication configuration.
4938
4957
| required_entitlements || List of all required entitlements. |
4939
4958
4940
4959
4960
+
## RagConfiguration
4961
+
4962
+
4963
+
RAG strategy configuration.
4964
+
4965
+
Controls which RAG sources are used for inline and tool-based retrieval.
4966
+
4967
+
Each strategy lists RAG IDs to include. The special ID ``"okp"`` defined in constants,
4968
+
activates the OKP provider; all other IDs refer to entries in ``byok_rag``.
4969
+
4970
+
Backward compatibility:
4971
+
- ``inline`` defaults to ``[]`` (no inline RAG).
4972
+
- ``tool`` defaults to ``None`` which means all registered vector stores
4973
+
are used (identical to the previous ``tool.byok.enabled = True`` default).
4974
+
4975
+
4976
+
| Field | Type | Description |
4977
+
|-------|------|-------------|
4978
+
| inline | array | RAG IDs whose sources are injected as context before the LLM call. Use 'okp' to enable OKP inline RAG. Empty by default (no inline RAG). |
4979
+
| tool || RAG IDs made available to the LLM as a file_search tool. Use 'okp' to include the OKP vector store. When omitted, all registered BYOK vector stores are used (backward compatibility). |
4980
+
4981
+
4941
4982
## ReadinessResponse
4942
4983
4943
4984
@@ -5200,21 +5241,6 @@ Model representing a response to shields request.
5200
5241
| shields | array | List of shields available |
5201
5242
5202
5243
5203
-
## SolrConfiguration
5204
-
5205
-
5206
-
Solr configuration for vector search queries.
5207
-
5208
-
Controls whether to use offline or online mode when building document URLs
5209
-
from vector search results, and enables/disables Solr vector IO functionality.
5210
-
5211
-
5212
-
| Field | Type | Description |
5213
-
|-------|------|-------------|
5214
-
| enabled | boolean | When True, enables Solr vector IO functionality for vector search queries. When False, disables Solr vector search processing. |
5215
-
| offline | boolean | When True, use parent_id for chunk source URLs. When False, use reference_url for chunk source URLs. |
0 commit comments