Skip to content

Commit 6d70545

Browse files
authored
release 0.3.16 (#596)
1 parent 7a6f87d commit 6d70545

File tree

16 files changed

+699
-611
lines changed

16 files changed

+699
-611
lines changed

.github/workflows/e2e_archgw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: build arch docker image
3232
run: |
33-
cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.15 -t katanemo/archgw:latest
33+
cd ../../ && docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.16 -t katanemo/archgw:latest
3434
3535
- name: start archgw
3636
env:

.github/workflows/e2e_test_currency_convert.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.15
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.16
2828
2929
- name: install poetry
3030
run: |

.github/workflows/e2e_test_preference_based_routing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.15
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.16
2828
2929
- name: install poetry
3030
run: |

.github/workflows/validate_arch_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: build arch docker image
2626
run: |
27-
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.15
27+
docker build -f arch/Dockerfile . -t katanemo/archgw -t katanemo/archgw:0.3.16
2828
2929
- name: validate arch config
3030
run: |

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ _Arch is a models-native (edge and service) proxy server for agents._<br><br>
2424
</div>
2525

2626
# About The Latest Release:
27-
[0.3.15] [Preference-aware multi LLM routing for Claude Code 2.0](demos/use_cases/claude_code_router/README.md) <br><img src="docs/source/_static/img/claude_code_router.png" alt="high-level network architecture for ArchGW" width="50%">
27+
[0.3.16] [Preference-aware multi LLM routing for Claude Code 2.0](demos/use_cases/claude_code_router/README.md) <br><img src="docs/source/_static/img/claude_code_router.png" alt="high-level network architecture for ArchGW" width="50%">
2828

2929

3030
# Overview
@@ -87,7 +87,7 @@ Arch's CLI allows you to manage and interact with the Arch gateway efficiently.
8787
```console
8888
$ python3.12 -m venv venv
8989
$ source venv/bin/activate # On Windows, use: venv\Scripts\activate
90-
$ pip install archgw==0.3.15
90+
$ pip install archgw==0.3.16
9191
```
9292

9393
### Use Arch as a LLM Router
@@ -276,7 +276,7 @@ endpoints:
276276
```sh
277277
278278
$ archgw up arch_config.yaml
279-
2024-12-05 16:56:27,979 - cli.main - INFO - Starting archgw cli version: 0.3.15
279+
2024-12-05 16:56:27,979 - cli.main - INFO - Starting archgw cli version: 0.3.16
280280
2024-12-05 16:56:28,485 - cli.utils - INFO - Schema validation successful!
281281
2024-12-05 16:56:28,485 - cli.main - INFO - Starting arch model server and arch gateway
282282
2024-12-05 16:56:51,647 - cli.core - INFO - Container is healthy!

arch/tools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source venv/bin/activate
1919

2020
### Step 3: Run the build script
2121
```bash
22-
pip install archgw==0.3.15
22+
pip install archgw==0.3.16
2323
```
2424

2525
## Uninstall Instructions: archgw CLI

arch/tools/cli/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
SERVICE_ALL = "all"
1111
MODEL_SERVER_LOG_FILE = "~/archgw_logs/modelserver.log"
1212
ARCHGW_DOCKER_NAME = "archgw"
13-
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.15")
13+
ARCHGW_DOCKER_IMAGE = os.getenv("ARCHGW_DOCKER_IMAGE", "katanemo/archgw:0.3.16")

arch/tools/poetry.lock

Lines changed: 57 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

arch/tools/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "archgw"
3-
version = "0.3.15"
3+
version = "0.3.16"
44
description = "Python-based CLI tool to manage Arch Gateway."
55
authors = ["Katanemo Labs, Inc."]
66
packages = [
@@ -10,7 +10,7 @@ readme = "README.md"
1010

1111
[tool.poetry.dependencies]
1212
python = "^3.10"
13-
archgw_modelserver = "^0.3.15"
13+
archgw_modelserver = "^0.3.16"
1414
click = "^8.1.7"
1515
jinja2 = "^3.1.4"
1616
jsonschema = "^4.23.0"

demos/use_cases/model_choice_with_test_harness/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ python = ">=3.10,<3.13.3"
1212
pydantic = "^2.0"
1313
openai = "^1.0"
1414
pyyaml = "^6.0"
15-
archgw ="^0.3.15"
15+
archgw ="^0.3.16"
1616

1717
[tool.poetry.group.dev.dependencies]
1818
pytest = "^8.3"

0 commit comments

Comments
 (0)