diff --git a/.github/workflows/e2e_archgw.yml b/.github/workflows/e2e_archgw.yml
index 2c0273e4..a59954c9 100644
--- a/.github/workflows/e2e_archgw.yml
+++ b/.github/workflows/e2e_archgw.yml
@@ -30,7 +30,7 @@ jobs:
- name: build arch docker image
run: |
- cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.17 -t katanemo/archgw:latest
+ cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18 -t katanemo/archgw:latest
- name: start archgw
env:
diff --git a/.github/workflows/e2e_test_currency_convert.yml b/.github/workflows/e2e_test_currency_convert.yml
index 4234af0f..8b15cb7e 100644
--- a/.github/workflows/e2e_test_currency_convert.yml
+++ b/.github/workflows/e2e_test_currency_convert.yml
@@ -24,7 +24,7 @@ jobs:
- name: build arch docker image
run: |
- docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.17
+ docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18
- name: install poetry
run: |
diff --git a/.github/workflows/e2e_test_preference_based_routing.yml b/.github/workflows/e2e_test_preference_based_routing.yml
index 7b1af54c..9e0bcb13 100644
--- a/.github/workflows/e2e_test_preference_based_routing.yml
+++ b/.github/workflows/e2e_test_preference_based_routing.yml
@@ -24,7 +24,7 @@ jobs:
- name: build arch docker image
run: |
- docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.17
+ docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18
- name: install poetry
run: |
diff --git a/.github/workflows/validate_arch_config.yml b/.github/workflows/validate_arch_config.yml
index 64a35d6d..08bf9045 100644
--- a/.github/workflows/validate_arch_config.yml
+++ b/.github/workflows/validate_arch_config.yml
@@ -24,7 +24,7 @@ jobs:
- name: build arch docker image
run: |
- docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.17
+ docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.18
- name: validate arch config
run: |
diff --git a/README.md b/README.md
index 09d140e7..6f3217fa 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ _Arch is a models-native (edge and service) proxy server for agents._
# About The Latest Release:
-[0.3.17] [Preference-aware multi LLM routing for Claude Code 2.0](demos/use_cases/claude_code_router/README.md)
+[0.3.18] [Preference-aware multi LLM routing for Claude Code 2.0](demos/use_cases/claude_code_router/README.md)
# Overview
@@ -87,7 +87,7 @@ Arch's CLI allows you to manage and interact with the Arch gateway efficiently.
```console
$ python3.12 -m venv venv
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
-$ pip install archgw==0.3.17
+$ pip install archgw==0.3.18
```
### Use Arch as a LLM Router
@@ -276,7 +276,7 @@ endpoints:
```sh
$ archgw up arch_config.yaml
-2024-12-05 16:56:27,979 - cli.main - INFO - Starting archgw cli version: 0.3.17
+2024-12-05 16:56:27,979 - cli.main - INFO - Starting archgw cli version: 0.3.18
2024-12-05 16:56:28,485 - cli.utils - INFO - Schema validation successful!
2024-12-05 16:56:28,485 - cli.main - INFO - Starting arch model server and arch gateway
2024-12-05 16:56:51,647 - cli.core - INFO - Container is healthy!
diff --git a/arch/tools/README.md b/arch/tools/README.md
index d700e7ba..5efd5e40 100644
--- a/arch/tools/README.md
+++ b/arch/tools/README.md
@@ -19,7 +19,7 @@ source venv/bin/activate
### Step 3: Run the build script
```bash
-pip install archgw==0.3.17
+pip install archgw==0.3.18
```
## Uninstall Instructions: archgw CLI
diff --git a/arch/tools/cli/consts.py b/arch/tools/cli/consts.py
index 2c6cca90..ffff31aa 100644
--- a/arch/tools/cli/consts.py
+++ b/arch/tools/cli/consts.py
@@ -10,4 +10,4 @@ SERVICE_NAME_MODEL_SERVER = "model_server"
SERVICE_ALL = "all"
MODEL_SERVER_LOG_FILE = "~/archgw_logs/modelserver.log"
ARCHGW_DOCKER_NAME = "archgw"
-ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.17")
+ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.18")
diff --git a/arch/tools/poetry.lock b/arch/tools/poetry.lock
index 2ccd5aba..d04e6209 100644
--- a/arch/tools/poetry.lock
+++ b/arch/tools/poetry.lock
@@ -68,7 +68,7 @@ trio = ["trio (>=0.31.0)"]
[[package]]
name = "archgw-modelserver"
-version = "0.3.17"
+version = "0.3.18"
description = "A model server for serving models"
optional = false
python-versions = ">=3.10"
@@ -3235,4 +3235,4 @@ type = ["pytest-mypy"]
[metadata]
lock-version = "2.1"
python-versions = ">=3.10"
-content-hash = "e05a2536064dfdc436d9609492a313b93c6a55d9670ea47b003ce17d04bf4f42"
+content-hash = "c831ac5cd8333c5519b29a9c1b8d95de79d19a2f651bac1c998c0e5b64ff3240"
diff --git a/arch/tools/pyproject.toml b/arch/tools/pyproject.toml
index a6e5cd29..a38d794e 100644
--- a/arch/tools/pyproject.toml
+++ b/arch/tools/pyproject.toml
@@ -1,12 +1,12 @@
[project]
name = "archgw"
-version = "0.3.17"
+version = "0.3.18"
description = "Python-based CLI tool to manage Arch Gateway."
authors = [{ name = "Katanemo Labs, Inc." }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
- "archgw_modelserver==0.3.17",
+ "archgw_modelserver==0.3.18",
"click>=8.1.7,<9.0.0",
"jinja2>=3.1.4,<4.0.0",
"jsonschema>=4.23.0,<5.0.0",
diff --git a/demos/use_cases/model_choice_with_test_harness/pyproject.toml b/demos/use_cases/model_choice_with_test_harness/pyproject.toml
index 162c3e2d..d2a97be1 100644
--- a/demos/use_cases/model_choice_with_test_harness/pyproject.toml
+++ b/demos/use_cases/model_choice_with_test_harness/pyproject.toml
@@ -12,7 +12,7 @@ python = ">=3.10,<3.13.3"
pydantic = "^2.0"
openai = "^1.0"
pyyaml = "^6.0"
-archgw ="^0.3.17"
+archgw ="^0.3.18"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
diff --git a/demos/use_cases/preference_based_routing/README.md b/demos/use_cases/preference_based_routing/README.md
index e4d47544..9446f85a 100644
--- a/demos/use_cases/preference_based_routing/README.md
+++ b/demos/use_cases/preference_based_routing/README.md
@@ -14,9 +14,9 @@ Make sure your machine is up to date with [latest version of archgw]([url](https
2. start archgw in the foreground
```bash
(venv) $ archgw up --service archgw --foreground
-2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.3.17
+2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.3.18
2025-05-30 18:00:09,953 - cli.main - INFO - Validating /Users/adilhafeez/src/intelligent-prompt-gateway/demos/use_cases/preference_based_routing/arch_config.yaml
-2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/archgw:0.3.17
+2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/archgw:0.3.18
2025-05-30 18:00:10,662 - cli.core - INFO - archgw status: running, health status: starting
2025-05-30 18:00:11,712 - cli.core - INFO - archgw status: running, health status: starting
2025-05-30 18:00:12,761 - cli.core - INFO - archgw is running and is healthy!
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 4d6f4ae9..81d62da7 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -15,7 +15,7 @@ from sphinxawesome_theme.postprocess import Icons
project = "Arch Docs"
copyright = "2025, Katanemo Labs, Inc"
author = "Katanemo Labs, Inc"
-release = " v0.3.17"
+release = " v0.3.18"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
diff --git a/docs/source/get_started/quickstart.rst b/docs/source/get_started/quickstart.rst
index e8b14ac8..1f5f82ee 100644
--- a/docs/source/get_started/quickstart.rst
+++ b/docs/source/get_started/quickstart.rst
@@ -25,7 +25,7 @@ Arch's CLI allows you to manage and interact with the Arch gateway efficiently.
$ python -m venv venv
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
- $ pip install archgw==0.3.17
+ $ pip install archgw==0.3.18
Build AI Agent with Arch Gateway
diff --git a/docs/source/resources/deployment.rst b/docs/source/resources/deployment.rst
index 2cc1adf8..29006672 100644
--- a/docs/source/resources/deployment.rst
+++ b/docs/source/resources/deployment.rst
@@ -25,7 +25,7 @@ Create a ``docker-compose.yml`` file with the following configuration:
# docker-compose.yml
services:
archgw:
- image: katanemo/archgw:0.3.17
+ image: katanemo/archgw:0.3.18
container_name: archgw
ports:
- "10000:10000" # ingress (client -> arch)
diff --git a/model_server/pyproject.toml b/model_server/pyproject.toml
index 98381d51..9077d07c 100644
--- a/model_server/pyproject.toml
+++ b/model_server/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "archgw_modelserver"
-version = "0.3.17"
+version = "0.3.18"
description = "A model server for serving models"
authors = [{name = "Katanemo Labs, Inc", email = "info@katanemo.com"}]
license = "Apache 2.0"