-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from containers/model_servers
Refactor model servers
- Loading branch information
Showing
9 changed files
with
100 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
name: model_servers | ||
name: Model Servers | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- ./model_servers/ | ||
- .github/workflows/model_servers.yaml | ||
# paths: | ||
# - ./model_servers/ | ||
# - .github/workflows/model_servers.yaml | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- ./model_servers/ | ||
- .github/workflows/model_servers.yaml | ||
# paths: | ||
# - ./model_servers/ | ||
# - .github/workflows/model_servers.yaml | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository_owner }}/model_servers | ||
# Image Repo Migration variables | ||
NEW_REGISTRY: quay.io | ||
NEW_REGISTRY_USER: ai-lab+ghrobot | ||
NEW_IMAGE_NAME_LLAMA: quay.io/ai-lab/model_servers/llamacpp_python | ||
IMAGE_NAME_WHISPER: quay.io/ai-lab/model_servers/whispercpp | ||
|
||
|
||
jobs: | ||
build-and-push-image: | ||
strategy: | ||
matrix: | ||
include: | ||
- image_name: llamacpp_python | ||
model: mistral | ||
- image_name: whispercpp | ||
model: whisper-small | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
|
@@ -38,36 +38,42 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Install qemu dependency | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y qemu-user-static | ||
- name: Build Image | ||
id: build_image | ||
uses: redhat-actions/[email protected] | ||
with: | ||
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
image: ${{ env.REGISTRY }}/${{ matrix.image_name }} | ||
platforms: linux/amd64, linux/arm64 | ||
tags: latest | ||
containerfiles: ./model_servers/llamacpp_python/base/Containerfile | ||
context: model_servers/llamacpp_python/ | ||
containerfiles: ./model_servers/${{ matrix.image_name }}/base/Containerfile | ||
context: model_servers/${{ matrix.image_name }}/ | ||
|
||
- name: Download model | ||
working-directory: ./model_servers/llamacpp_python/ | ||
run: make download-model-mistral | ||
working-directory: ./model_servers/${{ matrix.image_name }}/ | ||
run: make ${{ matrix.model }} | ||
|
||
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install python dependencies | ||
working-directory: ./model_servers/llamacpp_python/ | ||
working-directory: ./model_servers/${{ matrix.image_name }}/ | ||
run: make install | ||
|
||
- name: Run tests | ||
working-directory: ./model_servers/llamacpp_python/ | ||
working-directory: ./model_servers/${{ matrix.image_name }}/ | ||
run: make test | ||
env: | ||
IMAGE_NAME: ${{ matrix.image_name }} | ||
|
||
- name: Login to container registry | ||
if: > | ||
(github.event_name == 'push' || github.event_name == 'schedule') && | ||
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
uses: docker/[email protected] | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
|
@@ -76,55 +82,9 @@ jobs: | |
|
||
- name: Push image | ||
id: push_image | ||
if: > | ||
(github.event_name == 'push' || github.event_name == 'schedule') && | ||
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
uses: redhat-actions/[email protected] | ||
with: | ||
image: ${{ steps.build_image.outputs.image }} | ||
tags: ${{ steps.build_image.outputs.tags }} | ||
registry: ${{ env.REGISTRY }} | ||
build-and-push-image-whispercpp: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
services: | ||
registry: | ||
image: registry:2.8.3 | ||
ports: | ||
- 5000:5000 | ||
steps: | ||
- name: Build Image Whispercpp | ||
id: build_image_whisper | ||
uses: redhat-actions/[email protected] | ||
working-directory: ./model_servers/whispercpp/ | ||
run: make build | ||
|
||
- name: Download model Whispercpp | ||
working-directory: ./model_servers/whispercpp/ | ||
run: make download-model-whisper-small | ||
|
||
- name: Login to container registry | ||
if: > | ||
(github.event_name == 'push' || github.event_name == 'schedule') && | ||
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | ||
uses: docker/[email protected] | ||
with: | ||
registry: ${{ env.NEW_REGISTRY }} | ||
username: ${{ env.NEW_REGISTRY_USER }} | ||
password: ${{ secrets.AILAB_GHROBOT_TOKEN }} # THIS NEEDS TO BE CREATED | ||
|
||
- name: Push image | ||
id: push_image | ||
if: > | ||
(github.event_name == 'push' || github.event_name == 'schedule') && | ||
(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) | ||
uses: redhat-actions/[email protected] | ||
with: | ||
image: ${{ steps.build_image_whisper.outputs.image }} | ||
tags: ${{ steps.build_image_whisper.outputs.tags }} | ||
registry: ${{ env.NEW_REGISTRY }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import pytest_container | ||
import os | ||
|
||
MS = pytest_container.Container( | ||
url=f"containers-storage:{os.environ['REGISTRY']}/{os.environ['IMAGE_NAME']}", | ||
volume_mounts=[ | ||
pytest_container.container.BindMount( | ||
container_path="/locallm/models/model.gguf", | ||
host_path=f"./model.gguf", | ||
flags=["ro"] | ||
) | ||
], | ||
extra_environment_variables={ | ||
"MODEL_PATH": "/locallm/models/model.gguf", | ||
"HOST": "0.0.0.0", | ||
"PORT": "8001" | ||
}, | ||
forwarded_ports=[ | ||
pytest_container.PortForwarding( | ||
container_port=8001, | ||
host_port=8001 | ||
) | ||
], | ||
) | ||
|
||
def pytest_generate_tests(metafunc): | ||
pytest_container.auto_container_parametrize(metafunc) | ||
|
||
def pytest_addoption(parser): | ||
pytest_container.add_logging_level_options(parser) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pip==24.0 | ||
pytest-container==0.4.0 | ||
pytest-selenium==4.1.0 | ||
pytest-testinfra==10.1.0 | ||
pytest==8.1.1 | ||
requests==2.31.0 | ||
selenium==4.19.0 | ||
tenacity==8.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import pytest_container | ||
from .conftest import MS | ||
import tenacity | ||
|
||
CONTAINER_IMAGES = [MS] | ||
|
||
|
||
def test_etc_os_release_present(auto_container: pytest_container.container.ContainerData): | ||
assert auto_container.connection.file("/etc/os-release").exists | ||
|
||
@tenacity.retry(stop=tenacity.stop_after_attempt(5), wait=tenacity.wait_exponential()) | ||
def test_alive(auto_container: pytest_container.container.ContainerData, host): | ||
host.run_expect([0],f"curl http://localhost:{auto_container.forwarded_ports[0].host_port}",).stdout.strip() |
4 changes: 1 addition & 3 deletions
4
recipes/natural_language_processing/chatbot/tests/functional/conftest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters