From 01ad133573ef4bdea1c8c6bdccbdf2606797d9a3 Mon Sep 17 00:00:00 2001 From: lstocchi Date: Wed, 13 Mar 2024 11:28:49 +0100 Subject: [PATCH 1/2] chore: add image field to define image name when building Signed-off-by: lstocchi --- chatbot-langchain/ai-studio.yaml | 4 +++- code-generation/ai-studio.yaml | 2 ++ object_detection/ai-studio.yaml | 4 +++- rag-langchain/ai-studio.yaml | 5 ++++- summarizer-langchain/ai-studio.yaml | 4 +++- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/chatbot-langchain/ai-studio.yaml b/chatbot-langchain/ai-studio.yaml index 4e0466b5a..3c72f8bea 100644 --- a/chatbot-langchain/ai-studio.yaml +++ b/chatbot-langchain/ai-studio.yaml @@ -15,6 +15,7 @@ application: - amd64 ports: - 8001 + image: quay.io/redhat-et/llamacpp-server - name: streamlit-chat-app contextdir: . containerfile: builds/Containerfile @@ -22,4 +23,5 @@ application: - arm64 - amd64 ports: - - 8501 \ No newline at end of file + - 8501 + image: quay.io/redhat-et/streamlit-chat-app \ No newline at end of file diff --git a/code-generation/ai-studio.yaml b/code-generation/ai-studio.yaml index e4366d23c..7933f1516 100644 --- a/code-generation/ai-studio.yaml +++ b/code-generation/ai-studio.yaml @@ -15,6 +15,7 @@ application: - amd64 ports: - 8001 + image: quay.io/redhat-et/llamacpp-server - name: codegen-app contextdir: . containerfile: builds/Containerfile @@ -23,3 +24,4 @@ application: - amd64 ports: - 8501 + image: quay.io/redhat-et/codegen-app diff --git a/object_detection/ai-studio.yaml b/object_detection/ai-studio.yaml index ba7fc950c..deaa005c6 100644 --- a/object_detection/ai-studio.yaml +++ b/object_detection/ai-studio.yaml @@ -15,6 +15,7 @@ application: - amd64 ports: - 8000 + image: quay.io/redhat-et/object-detection-server - name: object-detection-client contextdir: ./client containerfile: Containerfile @@ -22,4 +23,5 @@ application: - arm64 - amd64 ports: - - 8501 \ No newline at end of file + - 8501 + image: quay.io/redhat-et/object-detection-client \ No newline at end of file diff --git a/rag-langchain/ai-studio.yaml b/rag-langchain/ai-studio.yaml index 3c7ec7acb..57b0336ef 100644 --- a/rag-langchain/ai-studio.yaml +++ b/rag-langchain/ai-studio.yaml @@ -15,6 +15,7 @@ application: - amd64 ports: - 8001 + image: quay.io/redhat-et/llamacpp-server - name: chromadb-server contextdir: builds/chromadb containerfile: Containerfile @@ -24,6 +25,7 @@ application: - amd64 ports: - 8000 + image: quay.io/redhat-et/chromadb-server - name: rag-inference-app contextdir: . containerfile: builds/Containerfile @@ -31,4 +33,5 @@ application: - arm64 - amd64 ports: - - 8501 \ No newline at end of file + - 8501 + image: quay.io/redhat-et/rag-inference-app \ No newline at end of file diff --git a/summarizer-langchain/ai-studio.yaml b/summarizer-langchain/ai-studio.yaml index 3787b65f2..96fe41509 100644 --- a/summarizer-langchain/ai-studio.yaml +++ b/summarizer-langchain/ai-studio.yaml @@ -15,6 +15,7 @@ application: - amd64 ports: - 8001 + image: quay.io/redhat-et/llamacpp-server - name: streamlit-summary-app contextdir: . containerfile: builds/Containerfile @@ -22,4 +23,5 @@ application: - arm64 - amd64 ports: - - 8501 \ No newline at end of file + - 8501 + image: quay.io/redhat-et/streamlit-summary-app \ No newline at end of file From f6b2af081b66d8b7865531da59962075bf8c18ba Mon Sep 17 00:00:00 2001 From: lstocchi Date: Thu, 14 Mar 2024 19:03:49 +0100 Subject: [PATCH 2/2] fix: update based on sally review Signed-off-by: lstocchi --- chatbot-langchain/ai-studio.yaml | 4 ++-- code-generation/ai-studio.yaml | 4 ++-- rag-langchain/ai-studio.yaml | 6 +++--- summarizer-langchain/ai-studio.yaml | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/chatbot-langchain/ai-studio.yaml b/chatbot-langchain/ai-studio.yaml index 3c72f8bea..760155f91 100644 --- a/chatbot-langchain/ai-studio.yaml +++ b/chatbot-langchain/ai-studio.yaml @@ -15,7 +15,7 @@ application: - amd64 ports: - 8001 - image: quay.io/redhat-et/llamacpp-server + image: quay.io/redhat-et/locallm-model-service:latest - name: streamlit-chat-app contextdir: . containerfile: builds/Containerfile @@ -24,4 +24,4 @@ application: - amd64 ports: - 8501 - image: quay.io/redhat-et/streamlit-chat-app \ No newline at end of file + image: quay.io/redhat-et/locallm-chatbot:latest \ No newline at end of file diff --git a/code-generation/ai-studio.yaml b/code-generation/ai-studio.yaml index 7933f1516..b91db12c3 100644 --- a/code-generation/ai-studio.yaml +++ b/code-generation/ai-studio.yaml @@ -15,7 +15,7 @@ application: - amd64 ports: - 8001 - image: quay.io/redhat-et/llamacpp-server + image: quay.io/redhat-et/locallm-model-service:latest - name: codegen-app contextdir: . containerfile: builds/Containerfile @@ -24,4 +24,4 @@ application: - amd64 ports: - 8501 - image: quay.io/redhat-et/codegen-app + image: quay.io/redhat-et/locallm-codegen:latest diff --git a/rag-langchain/ai-studio.yaml b/rag-langchain/ai-studio.yaml index 57b0336ef..f8b395408 100644 --- a/rag-langchain/ai-studio.yaml +++ b/rag-langchain/ai-studio.yaml @@ -15,7 +15,7 @@ application: - amd64 ports: - 8001 - image: quay.io/redhat-et/llamacpp-server + image: quay.io/redhat-et/locallm-model-service:latest - name: chromadb-server contextdir: builds/chromadb containerfile: Containerfile @@ -25,7 +25,7 @@ application: - amd64 ports: - 8000 - image: quay.io/redhat-et/chromadb-server + image: quay.io/redhat-et/locallm-chromadb:latest - name: rag-inference-app contextdir: . containerfile: builds/Containerfile @@ -34,4 +34,4 @@ application: - amd64 ports: - 8501 - image: quay.io/redhat-et/rag-inference-app \ No newline at end of file + image: quay.io/redhat-et/locallm-rag:latest \ No newline at end of file diff --git a/summarizer-langchain/ai-studio.yaml b/summarizer-langchain/ai-studio.yaml index 96fe41509..65c9e3b10 100644 --- a/summarizer-langchain/ai-studio.yaml +++ b/summarizer-langchain/ai-studio.yaml @@ -15,7 +15,7 @@ application: - amd64 ports: - 8001 - image: quay.io/redhat-et/llamacpp-server + image: quay.io/redhat-et/locallm-model-service:latest - name: streamlit-summary-app contextdir: . containerfile: builds/Containerfile @@ -24,4 +24,4 @@ application: - amd64 ports: - 8501 - image: quay.io/redhat-et/streamlit-summary-app \ No newline at end of file + image: quay.io/redhat-et/locallm-text-summarizer:latest \ No newline at end of file