feat: add marker-only sub2api sentinel reporting

This commit is contained in:
Codex
2026-06-11 08:40:37 +00:00
parent def417f0cf
commit 0bef6e577a
10 changed files with 1508 additions and 97 deletions
@@ -0,0 +1,13 @@
ARG BASE_IMAGE=python:3.12-alpine
FROM ${BASE_IMAGE}
ARG OPENAI_PYTHON_VERSION=2.41.1
RUN python3 -m pip install --no-cache-dir "openai==${OPENAI_PYTHON_VERSION}" \
&& python3 - <<'PY'
import importlib.metadata
print("openai", importlib.metadata.version("openai"))
PY
LABEL unidesk.ai/component="platform-infra-sub2api-account-sentinel"
LABEL unidesk.ai/runtime="python-openai-responses"