From 504a0d55d7e7f01769419bc09b1cf5d481b68cb1 Mon Sep 17 00:00:00 2001 From: Andreas Klos Date: Wed, 8 Oct 2025 06:57:54 +0200 Subject: [PATCH] docs: Add dark and light mode logos for project banner in README - Added stackit-logo-dark.svg and stackit-logo-light.svg to the images directory. - Updated README.md to include both logos for light and dark mode display. --- .github/images/stackit-logo-dark.svg | 43 ++++++++++++++++++++++++ .github/images/stackit-logo-light.svg | 47 +++++++++++++++++++++++++++ README.md | 3 ++ 3 files changed, 93 insertions(+) create mode 100644 .github/images/stackit-logo-dark.svg create mode 100644 .github/images/stackit-logo-light.svg diff --git a/.github/images/stackit-logo-dark.svg b/.github/images/stackit-logo-dark.svg new file mode 100644 index 00000000..96f3c4ab --- /dev/null +++ b/.github/images/stackit-logo-dark.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.github/images/stackit-logo-light.svg b/.github/images/stackit-logo-light.svg new file mode 100644 index 00000000..35de64cc --- /dev/null +++ b/.github/images/stackit-logo-light.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 3081b63f..e23cf6de 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +![Project banner](.github/images/stackit-logo-light.svg#gh-light-mode-only) +![Project banner](.github/images/stackit-logo-dark.svg#gh-dark-mode-only) + # RAG Template Welcome to the STACKIT RAG Template! This is a basic example of how to use the RAG-API libraries, designed to help you get started with building AI-powered chatbots and document management systems 📖 (see [main.py](./services/rag-backend/main.py), [container.py](./services/rag-backend/container.py) and [chat_endpoint.py](./services/rag-backend/chat_endpoint.py)).