AI Photo Enhancer Skill for AI Agents
AI Photo Enhancer Skill for AI Agents
Ready-to-use skill for AI agents to enhance photo quality via the AI Pass API.
Quick Start
- Get an API key from AI Pass Developer Dashboard
- Set the environment variable:
export AIPASS_API_KEY="your-key-here" - Use the skill — see the
skillContentfield
What This Skill Does
- Enhances photos using Gemini vision model
- Input: image + enhancement prompt
- Output: enhanced image
API Details
- Endpoint:
POST https://aipass.one/apikey/v1/chat/completions - Auth:
Authorization: Bearer $AIPASS_API_KEY - Model:
gemini/gemini-3-pro-image-preview
Pricing
- $1 free credit on signup
- Pay as you go
Try the App
Related: Photo Enhancer Guide | Build a Photo Enhancer
Skill File
---
name: photo-enhancer
description: AI Photo Enhancement via AI Pass API. Improve sharpness, colors, and lighting.
version: 1.0.0
---
# AI Photo Enhancer Skill
## Endpoint
`POST https://aipass.one/apikey/v1/chat/completions`
## Auth
`Authorization: Bearer $AIPASS_API_KEY`
Get your API key from [AI Pass Developer Dashboard](https://aipass.one/panel/developer.html).
## Usage
```bash
IMAGE_B64=$(base64 -w0 photo.jpg)
curl -s -X POST "https://aipass.one/apikey/v1/chat/completions" \
-H "Authorization: Bearer $AIPASS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini/gemini-3-pro-image-preview",
"messages": [
{
"role": "user",
"content": [
{"type": "text", "text": "Enhance this photo: improve sharpness, boost colors, better lighting, increase detail"},
{"type": "image_url", "image_url": {"url": "data:image/jpeg;base64,'$IMAGE_B64'"}}
]
}
]
}'
```
## Models
- `gemini/gemini-3-pro-image-preview` — Google Gemini image editing
## Pricing
- $1 free credit on signup
- Pay as you go
Download Skill File