Aquiles-Image.
Project description
Aquiles-Image
Easy, fast and cheap Diffusion Models that work for everyone.
🚀 FastAPI • Diffusers • Compatible with the OpenAI client
🔥 What's New in Aquiles-Image
| Feature | Description |
|---|---|
| ⚡ 3x Faster | Advanced inference optimizations |
| 🎨 More Models | Support for FLUX, SD3-3.5, Qwen-Image and more |
| 🔧 Better DevX | Improved CLI and monitoring capabilities |
| 🔌 OpenAI Compatible | Drop-in replacement for OpenAI's image APIs |
📋 Prerequisites
- Python 3.8+
- CUDA-compatible GPU with 24GB+ VRAM
- 10GB+ free disk space
⚙️ Installation
From Pypi
uv pip install aquiles-image
From source
git clone https://github.com/Aquiles-ai/Aquiles-Image.git
cd Aquiles-Image
uv pip install .
🚀 Launch your Aquiles-Image server
aquiles-image serve --host "0.0.0.0" --port 5500 --model "stabilityai/stable-diffusion-3.5-medium"
Note on model compatibility
⚠️ Keep in mind that many of these models require a lot of VRAM to run, choose the model that fits your GPU and has about 10GB left to avoid errors when decoding or saving.
The supported models for the imaging endpoint are:
stabilityai/stable-diffusion-3-medium,stabilityai/stable-diffusion-3.5-large,stabilityai/stable-diffusion-3.5-large-turbo,stabilityai/stable-diffusion-3.5-medium,black-forest-labs/FLUX.1-dev,black-forest-labs/FLUX.1-schnell,black-forest-labs/FLUX.1-Krea-dev, Qwen/Qwen-Image
For Edit endpoints (Available, but with some errors that do not guarantee full endpoint functionality):
black-forest-labs/FLUX.1-Kontext-dev,Qwen/Qwen-Image-Edit
🎉 Generate your first image with Aquiles-Image
from openai import OpenAI
import requests
client = OpenAI(base_url="http://127.0.0.1:5500", api_key="__UNKNOWN__")
result = client.images.generate(
model="stabilityai/stable-diffusion-3.5-medium",
prompt="a white siamese cat",
size="1024x1024"
)
print(f"URL of the generated image: {result.data[0].url}\n")
image_url = result.data[0].url
response = requests.get(image_url)
with open("image.png", "wb") as f:
f.write(response.content)
print(f"Image downloaded successfully\n")
🎯 Perfect For
| Use Case | Description |
|---|---|
| 🚀 AI Startups | Building image generation features |
| 👨💻 Developers | Prototyping with Image Generation Models |
| 🏢 Enterprises | Scalable image AI infrastructure |
| 🔬 Researchers | Experimenting with multiple models |
Built with ❤️ for the AI community
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aquiles_image-0.1.8.tar.gz.
File metadata
- Download URL: aquiles_image-0.1.8.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d3ca1896335f24dc7d71624fb4730e7ac8a38c3df15a79c7fdd5506aedfab52
|
|
| MD5 |
3db2d8d5fa2bf198ae09a9992f83b5d1
|
|
| BLAKE2b-256 |
dc04105162b8fe6a02ebab7d7ad7771dca369d717c47a4d114cb54af07b4c8a9
|
File details
Details for the file aquiles_image-0.1.8-py3-none-any.whl.
File metadata
- Download URL: aquiles_image-0.1.8-py3-none-any.whl
- Upload date:
- Size: 2.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5de3ee13490ae3f9894591332b42c348522b7db010add6f684a2e71c08dcc41e
|
|
| MD5 |
7c2bf5b09789b91a77606b6190e9505e
|
|
| BLAKE2b-256 |
b0bcd20a817827d6fcc227776037a0385af42470dff2c03d6ba67ed948c28a2d
|