No description
Find a file
2025-12-30 21:50:42 +07:00
static Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00
templates Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00
.DS_Store feat: Add Whisk integration and Docker support 2025-12-30 19:09:21 +07:00
.gitattributes beta 2025-11-21 13:53:37 +07:00
.gitignore Update .gitignore 2025-11-29 14:51:54 +07:00
app.py Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00
docker-compose.yml Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00
Dockerfile feat: Add Whisk integration and Docker support 2025-12-30 19:09:21 +07:00
gallery_favorites.json update 2025-12-30 16:20:57 +07:00
prompts.json Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00
push_registry.sh Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00
README.md Update README for v2.3 2025-12-30 21:50:42 +07:00
requirements.txt update 2025-12-30 16:20:57 +07:00
whisk_client.py Update v2.3: Multi-image, Mobile Cookies, Img2Vid, Cleanup 2025-12-30 21:49:26 +07:00

aPix Image Workspace (v2.3)

aPix is a lightweight Flask interface for generating high-quality images using Google Gemini Image 3 Pro (Nano Banana Pro) and Google ImageFX (Whisk).

Features

  • Dual Models: Support for Gemini Image 3 Pro and Google ImageFX (Whisk).
  • Multi-Image Generation: Generate up to 4 variations at once with Whisk.
  • Reference Image Support: Upload reference images for style transfer and composition control.
  • Smart Prompting: Support for placeholders {text} and queue processing (cat|dog|bird).
  • Zero-Config Persistence: Built for NAS/Docker with automatic config initialization and data persistence.
  • Mobile Friendly: Guides for retrieving cookies on Android/iOS included.

Quick Start (Docker / Synology NAS)

We recommend running aPix via Docker for the best experience.

  1. Create docker-compose.yml:

    version: '3.8'
    services:
      app:
        image: git.khoavo.myds.me/vndangkhoa/apix:v2.3
        container_name: sdvn-apix-python
        restart: unless-stopped
        ports:
          - "8558:8888"
        environment:
          - PYTHONUNBUFFERED=1
        volumes:
          - ./config:/app/config
          - ./data/generated:/app/static/generated
          - ./data/uploads:/app/static/uploads
    
  2. Run:

    docker-compose up -d
    
  3. Access: Open http://your-nas-ip:8558.

Configuration

  • API Key: Enter your Google Gemini API Key in the settings (optional if using Whisk).
  • Whisk Cookies: For ImageFX, paste your Cookie string from labs.google.
    • Tip: Instructions for getting cookies on Mobile/PC are available in the app settings.

Credits


Version 2.3 | Dockerized for optimal performance.