Skip to content

v0.2.0

Latest

Choose a tag to compare

@github-actions github-actions released this 04 Jun 18:27

🐳 Docker

docker pull ghcr.io/StarryKira/copilot2api-go:v0.2.0

Docker Compose:

services:
  copilot-go:
    image: ghcr.io/StarryKira/copilot2api-go:v0.2.0
    container_name: copilot-go
    restart: unless-stopped
    ports:
      - "3000:3000"
      - "4141:4141"
    volumes:
      - copilot-data:/root/.local/share/copilot-api
    environment:
      - TZ=Asia/Shanghai

volumes:
  copilot-data:

What's Changed

  • fix: resolve web console infinite redirect issue by @sunmingyang666 in #5
  • feat: add /v1/responses endpoint for GPT-5.x models by @sunmingyang666 in #6
  • fix: filter empty reasoning output items for client compatibility by @sunmingyang666 in #7
  • Fix web console redirect loop by disabling Gin path redirects by @LeiCraft in #12

New Contributors

Full Changelog: v0.1.6...v0.2.0