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
Generating an image with stabilityai/stable-diffusion-3.5-medium
https://github.com/user-attachments/assets/00e18988-0472-4171-8716-dc81b53dcafa
Generating an image with black-forest-labs/FLUX.1-Krea-dev
https://github.com/user-attachments/assets/00d4235c-e49c-435e-a71a-72c36040a8d7
⚙️ 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
💻 Start your Aquiles-Image server in dev mode without loading models
Dev mode allows you to start the server without loading any AI models, ideal for rapid development, integration testing, or endpoint validation without requiring GPU or heavy computational resources.
aquiles-image serve --host "0.0.0.0" --port 5500 --no-load-model
What does dev mode do?
- No model loading: Server starts instantly without downloading or loading AI models
- Functional endpoints: All endpoints respond normally with test images
- Realistic responses: Returns valid images that simulate model responses
- Same format: Responses maintain the exact API format (URLs, base64, metadata)
Use cases
- API integration development
- Endpoint testing without GPU
- Workflow validation
- CI/CD environment testing
- Development on machines without GPU resources
Note: Dev mode is for development only. For production, use the normal server with loaded models.
🎉 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.85.tar.gz.
File metadata
- Download URL: aquiles_image-0.1.85.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 |
895171cd54684d689cfe3483736206344b648a470b2f1fa0f7d8145ae60e3e3b
|
|
| MD5 |
a3337002448b79363af848bd04e397ef
|
|
| BLAKE2b-256 |
64b45d9a267c99e5bbc375b8d3d7f840ceb5d087ac4f053859639eb8d182d28f
|
File details
Details for the file aquiles_image-0.1.85-py3-none-any.whl.
File metadata
- Download URL: aquiles_image-0.1.85-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 |
b39aa2edeaf48c787dac3a371617a14084ff40adc18906d0e2405bc1121b1eb2
|
|
| MD5 |
20520bf88b723b9b379e62b7aae5ed85
|
|
| BLAKE2b-256 |
e6534156fe073db71c0d431c045857667ff74f170ef34478bd5493bce87a959d
|