Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest
labels: |
org.opencontainers.image.description=OptiLLM proxy-only image for API routing without model serving capabilities


# Build and push proxy image
- name: Build and push proxy_only Docker image
uses: docker/build-push-action@v5
Expand All @@ -76,8 +74,6 @@ jobs:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta-proxy.outputs.tags }}
labels: ${{ steps.meta-proxy.outputs.labels }}
annotations: |
org.opencontainers.image.description=OptiLLM proxy-only image for API routing without model serving capabilities
cache-from: type=gha,scope=proxy
cache-to: type=gha,scope=proxy,mode=max

Expand All @@ -100,8 +96,6 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
latest
labels: |
org.opencontainers.image.description=OptiLLM full image with model serving and API routing capabilities

- name: Build and push Docker image
uses: docker/build-push-action@v5
Expand All @@ -111,7 +105,5 @@ jobs:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
annotations: |
org.opencontainers.image.description=OptiLLM full image with model serving amd API routing capabilities
cache-from: type=gha
cache-to: type=gha,mode=max
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
LABEL org.opencontainers.image.description="OptiLLM full image with model serving and API routing capabilities"
LABEL org.opencontainers.image.licenses=Apache-2.0

# Build stage
FROM python:3.12-slim AS builder

Expand Down
4 changes: 4 additions & 0 deletions Dockerfile.proxy_only
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
LABEL org.opencontainers.image.source=https://github.com/codelion/optillm
LABEL org.opencontainers.image.description="OptiLLM proxy-only image for API routing without model serving capabilities"
LABEL org.opencontainers.image.licenses=Apache-2.0

# Build stage
FROM python:3.12-slim AS builder

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="optillm",
version="0.0.31",
version="0.0.32",
packages=find_packages(),
py_modules=['optillm'],
package_data={
Expand Down