Metadata-Version: 2.4
Name: bluepixel-cli
Version: 0.1.0
Summary: BluePixel AI Image/Video Editor CLI — open-source project by vivo Image Group
Author: vivo Image Group
License: Apache-2.0
Project-URL: Homepage, https://github.com/gyh2556406/bluepixel-cli
Project-URL: Repository, https://github.com/gyh2556406/bluepixel-cli
Keywords: ai,image-editing,video-editing,bluepixel,vivo,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Graphics
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.28.0
Requires-Dist: click>=8.0.0
Requires-Dist: Pillow>=9.0.0
Dynamic: license-file

# BluePixel CLI

Open-source AI image/video editing CLI by **vivo Image Group**.

Edit images and videos with natural language — 4K native output, pixel preservation, and seamless AI processing.

## Install

```bash
pip install bluepixel-cli
```

## Quick Start

```bash
# Edit an image
bluepixel edit photo.jpg --prompt "Remove the background" -o output.png

# Use a specific model
bluepixel edit photo.jpg --prompt "Upscale to 4K" --model bluepixel-pro -o output.png

# List available models
bluepixel models
```

## Python API

```python
from bluepixel import BluePixelClient

client = BluePixelClient()
result = client.edit(
    image="input.jpg",
    prompt="Remove the person in the background",
    resolution="4k",
    preserve_pixels=True,
)
result.save("output.jpg")
```

## Features

- 🎯 **4K Native Output** — no downscaling during AI processing
- 🔒 **Pixel Preservation** — untouched areas stay byte-identical
- 💬 **Natural Language** — just type what you want
- 🔗 **API & CLI** — use from terminal or Python code

## License

Apache 2.0
