File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -61,17 +61,6 @@ Feature: Llama Stack connection disrupted
6161 {"detail": {"response": "Unable to connect to OGX", "cause": "Connection error."}}
6262 """
6363
64- Scenario : Check if shields endpoint reports error when llama-stack is unreachable
65- Given The service uses the lightspeed-stack.yaml configuration
66- And The service is restarted
67- And The llama-stack connection is disrupted
68- When I access REST API endpoint "shields" using HTTP GET method
69- Then The status code of the response is 503
70- And The body of the response is the following
71- """
72- {"detail": {"response": "Unable to connect to OGX", "cause": "Connection error."}}
73- """
74-
7564 Scenario : Check if tools endpoint reports error when llama-stack is unreachable
7665 Given The service uses the lightspeed-stack.yaml configuration
7766 And The service is restarted
Original file line number Diff line number Diff line change 22
33This directory holds committed BYOK vector stores used by the e2e suite.
44
5+ ## OGX 1.0 KV key namespace
6+
7+ OGX 1.0 FAISS persistence uses
8+ ` persistence.namespace: vector_io::faiss ` (see ` run-ci.yaml ` and LCS BYOK
9+ enrichment). SQLite KV keys are therefore stored as:
10+
11+ ``` text
12+ vector_io::faiss:vector_stores:v3::<vector_store_id>
13+ vector_io::faiss:faiss_index:v3::<vector_store_id>
14+ …
15+ ```
16+
17+ Fixtures committed here must use that prefix. Pre-1.0 un-namespaced keys
18+ (` vector_stores:v3::… ` ) are invisible to OGX 1.0 and yield empty search
19+ results even when file_search / ` vector_io.query ` run successfully.
20+
521## ` kv_store.db `
622
723Faiss BYOK store used by ` faiss.feature ` and ` inline_rag.feature ` (the
You can’t perform that action at this time.
0 commit comments