Skip to content

GPT Image Panel v0.6.15

Choose a tag to compare

@Z1rconium Z1rconium released this 28 May 05:12
· 38 commits to main since this release

GPT Image Panel v0.6.15

This release improves how the backend handles upstream GPT-compatible API responses when the upstream service returns malformed JSON or a non-JSON body.

What Changed

  • Added stricter upstream response content-type validation before attempting to parse JSON.
  • Improved diagnostics for upstream responses that claim success but return HTML, plain text, or another non-JSON payload.
  • Preserved existing request routing and async job behavior while making upstream failures easier to understand from API errors and logs.
  • Added backend contract coverage for invalid upstream response content types and malformed JSON payloads.

Docker Image

The multi-platform image is available on GHCR:

docker pull ghcr.io/z1rconium/gpt-image-linux:v0.6.15
docker pull ghcr.io/z1rconium/gpt-image-linux:latest

Supported platforms:

  • linux/amd64
  • linux/arm64

Quick Start

Run with Docker:

docker run --rm \
  -p 127.0.0.1:9090:9090 \
  -v "$PWD/images:/app/images" \
  -v "$PWD/data:/app/data" \
  -e DEFAULT_API_URL="https://api.openai.com" \
  -e DEFAULT_API_KEY="YOUR_API_KEY" \
  -e ACCESS_KEY="change-me" \
  ghcr.io/z1rconium/gpt-image-linux:v0.6.15

Run with Docker Compose:

curl -LO https://github.com/Z1rconium/gpt-image-linux/releases/download/v0.6.15/docker-compose.yml
curl -Lo .env.example https://github.com/Z1rconium/gpt-image-linux/releases/download/v0.6.15/env.example
cp .env.example .env
docker compose --env-file .env up -d

Release Assets

  • docker-compose.yml - production Compose file pinned to ghcr.io/z1rconium/gpt-image-linux:v0.6.15
  • env.example - environment variable template; download it as .env.example if needed
  • gpt-image-panel-v0.6.15-prebuilt.tar.gz - prebuilt offline package including backend code and the built frontend
  • SHA256SUMS - checksums for all release assets

Full Changelog

v0.6.14...v0.6.15