Supported providers and models
OpenAI
- Base URL:
https://api.openai.com/v1 - Generation: Yes
- Editing: Yes
Models
| Model | Features |
|---|---|
gpt-image-1 | Full token usage tracking, editing support |
dall-e-3 | revised_prompt in response |
dall-e-2 | Legacy model |
Generation parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
model | string | gpt-image-1 | Model name |
n | integer | 1 | Number of images |
size | string | auto | Image dimensions |
quality | string | auto | Image quality (standard, hd, auto) |
style | string | — | Image style (natural, vivid) |
response_format | string | — | url or b64_json |
background | string | — | Background setting |
moderation | string | — | Moderation level |
output_compression | integer | — | Output compression level |
output_format | string | — | Output format (png, jpeg) |
Edition parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
model | string | gpt-image-1 | Model name |
n | integer | — | Number of results |
size | string | — | Image dimensions |
quality | string | — | Image quality |
background | string | — | Background setting |
response_format | string | — | url or b64_json |
Azure OpenAI
- Base URL: Computed from Azure resource configuration
- Generation: Yes
- Editing: No
Connection
Azure OpenAI requires specific connection settings:
{
"connection": {
"resource_name": "my-azure-resource",
"deployment_id": "my-deployment",
"api_version": "2024-02-01",
"api_key": "xxx"
}
}
| Parameter | Type | Default | Description |
|---|---|---|---|
resource_name | string | — | Azure resource name |
deployment_id | string | — | Deployment/model ID |
api_version | string | 2024-02-01 | API version |
api_key | string | — | API key (alternative to bearer token) |
Generation parameters
Same as OpenAI, with the following constraint:
Allowed sizes: 1024x1024, 1792x1024, 1024x1792 only. Any other value defaults to 1024x1024.
Models
| Model | Features |
|---|---|
gpt-image-1 | Full token usage tracking |
dall-e-3 | revised_prompt in response |
dall-e-2 | Legacy model |
Cloud Temple
- Base URL:
https://api.ai.cloud-temple.com/v1 - Generation: Yes
- Editing: Yes
Cloud Temple exposes an OpenAI-compatible API. It uses the same parameters and options as OpenAI.