File tree Expand file tree Collapse file tree 7 files changed +7
-10
lines changed Expand file tree Collapse file tree 7 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 11# vim: set filetype=dockerfile
2- ARG LIGHTSPEED_RAG_CONTENT_IMAGE=quay.io/redhat-user-workloads/crt-nshift-lightspeed-tenant/own-app-lightspeed-rag-content@sha256:b63ed7dfb029785669c83636d85e152f974fd0c858c079f3eb20be0315885868
2+ ARG LIGHTSPEED_RAG_CONTENT_IMAGE=quay.io/redhat-user-workloads/crt-nshift-lightspeed-tenant/own-app-lightspeed-rag-content@sha256:dc8d30a1937137277ef18ea609d107cb7bb3a09adfdd09736e855abd5700cd13
33ARG HERMETIC=false
44
55FROM --platform=linux/amd64 ${LIGHTSPEED_RAG_CONTENT_IMAGE} as lightspeed-rag-content
Original file line number Diff line number Diff line change 33 "info" : {
44 "title" : " Swagger OpenShift LightSpeed service - OpenAPI" ,
55 "description" : " OpenShift LightSpeed service API specification." ,
6- "version" : " 1.0.6 "
6+ "version" : " 1.0.7 "
77 },
88 "paths" : {
99 "/v1/query" : {
Original file line number Diff line number Diff line change 11"""Service version that is read by project manager tools."""
22
33# this should be the only version value used in all source codes!!!
4- __version__ = "1.0.6 "
4+ __version__ = "1.0.7 "
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# Version
4- OLS_VERSION=v1.0.6
4+ OLS_VERSION=v1.0.7
55
66# To build container for local use
77if [ -z " $OLS_NO_IMAGE_CACHE " ]; then
Original file line number Diff line number Diff line change @@ -464,9 +464,8 @@ def test_azure_entra_id():
464464 json_response = response .json ()
465465
466466 # checking a few major information from response
467- assert "Kubernetes is" in json_response ["response" ]
468467 assert re .search (
469- r"orchestration (tool|system|platform|engine) " ,
468+ r"kubernetes|openshift " ,
470469 json_response ["response" ],
471470 re .IGNORECASE ,
472471 )
Original file line number Diff line number Diff line change @@ -222,9 +222,8 @@ def test_valid_question() -> None:
222222
223223 # checking a few major information from response
224224 assert json_response ["conversation_id" ] == cid
225- assert "Kubernetes is" in json_response ["response" ]
226225 assert re .search (
227- r"orchestration (tool|system|platform|engine) " ,
226+ r"kubernetes|openshift " ,
228227 json_response ["response" ],
229228 re .IGNORECASE ,
230229 )
Original file line number Diff line number Diff line change @@ -209,9 +209,8 @@ def test_valid_question() -> None:
209209
210210 response_utils .check_content_type (response , constants .MEDIA_TYPE_TEXT )
211211
212- assert "Kubernetes is" in response .text
213212 assert re .search (
214- r"orchestration (tool|system|platform|engine) " ,
213+ r"kubernetes|openshift " ,
215214 response .text ,
216215 re .IGNORECASE ,
217216 )
You can’t perform that action at this time.
0 commit comments