From db23d1490047851fc8bbc00aa8bc74e6ca0aab0e Mon Sep 17 00:00:00 2001 From: Lucas Date: Wed, 19 Nov 2025 16:56:43 -0500 Subject: [PATCH] Update build commands readme.md, add cache info for local run in lightspeed-stack.yaml Signed-off-by: Lucas --- README.md | 2 +- lightspeed-stack.yaml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cde82a..3d439c5 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ By default this Llama Stack has a Safety Shield for question validation enabled. ### Running Locally ``` -podman run -it -p 8321:8321 --env-file ./env/values.env -v ./embeddings_model:/app-root/embeddings_model -v ./vector_db/rhdh_product_docs:/app-root/vector_db/rhdh_product_docs quay.io/redhat-ai-dev/llama-stack:latest +podman run -it -p 8321:8321 --env-file ./env/values.env -v ./embeddings_model:/app-root/embeddings_model:Z -v ./vector_db/rhdh_product_docs:/app-root/vector_db/rhdh_product_docs:Z quay.io/redhat-ai-dev/llama-stack:latest ``` Latest Lightspeed Core developer image: diff --git a/lightspeed-stack.yaml b/lightspeed-stack.yaml index b4ef3d8..5f9a982 100644 --- a/lightspeed-stack.yaml +++ b/lightspeed-stack.yaml @@ -14,4 +14,8 @@ user_data_collection: feedback_enabled: false feedback_storage: "/tmp/data/feedback" authentication: - module: "noop" \ No newline at end of file + module: "noop" +conversation_cache: + type: "sqlite" + sqlite: + db_path: "/tmp/cache.db" \ No newline at end of file