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
- Add SUPPORTED_RAG_BACKENDS constant and field validator on
RagStore.backend to reject unsupported backends at config load time
- Add model validator on RagConfiguration to reject retrieval source
IDs not declared in byok.stores
- Add assert that DEFAULT_RAG_BACKEND has a BACKEND_TO_LLAMA_STACK_PROVIDER
mapping
- Remove llama-stack references from docs, use run.yaml instead
- Add backward compatibility note to RAG guide
- Update tests for new validators
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/byok_guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ byok_rag:
317
317
318
318
> [!NOTE]
319
319
> pgvector is not yet supported via `byok_rag` in `lightspeed-stack.yaml` (see [LCORE-2437](https://redhat.atlassian.net/browse/LCORE-2437)).
320
-
> It must be configured directly in the Llama Stack configuration file.
320
+
> It must be configured directly in the `run.yaml` configuration file.
321
321
322
322
```yaml
323
323
vector_io:
@@ -371,11 +371,11 @@ rag:
371
371
372
372
### Example 2: Multiple Knowledge Sources with pgvector
373
373
374
-
A configuration combining a local FAISS store (via `byok_rag`) with a remote pgvector store (configured directly in the Llama Stack configuration file):
374
+
A configuration combining a local FAISS store (via `byok_rag`) with a remote pgvector store (configured directly in the `run.yaml` configuration file):
375
375
376
376
> [!NOTE]
377
377
> pgvector is not yet supported via `byok_rag` in `lightspeed-stack.yaml` (see [LCORE-2437](https://redhat.atlassian.net/browse/LCORE-2437)).
378
-
> The pgvector provider must be configured directly in the Llama Stack configuration file.
378
+
> The pgvector provider must be configured directly in the `run.yaml` configuration file.
379
379
380
380
**`lightspeed-stack.yaml`** — FAISS store and RAG strategy:
0 commit comments