gpt-image-1
Approved Data Classifications
This model is only approved for Open Data. When leveraging NaviGator AI’s suite offerings, please ensure you are selecting models that meet the compliance requirements in accordance with UF’s Data Classifications, grant awards or project specifications, and state and federal law.
Description
gpt-image-1 is a text‑to‑image model from OpenAI that turns your words into pictures in seconds. You get three options to choose from, Low for when you need a quick sketch, Medium for everyday visuals, and High when you want every pixel to pop. You can create images up to 1536×1024, whether it’s a thumbnail for your blog, a slide for your talk, or a colorful illustration for your next lesson. Just send a prompt through the simple API or the NaviGator AI Toolkit UI, and your idea springs to life without any fuss or hidden fees.
Capabilities
| Model | Knowledge Cutoff | Input | Output | Quality | 1024×1024 | 1024×1536 | 1536×1024 |
|---|---|---|---|---|---|---|---|
| gpt-image-1 | n/a | Text | Image | Low | $5.00/image | $5.00/image | $5.00/image |
| Med | $5.00/image | $5.00/image | $5.00/image | ||||
| High | $5.00/image | $5.00/image | $5.00/image |
- estimated image size is
1024x1024 - All prices listed are based on 1 image
Availability
Cloud Provider
Usage
- curl
- python
- javascript
curl -X POST https://api.ai.it.ufl.edu/v1/images/generations \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_TOKEN>" \
-d '{
"model": "gpt-image-1",
"prompt": "An Alligator walking around the University of Florida saying hi to students.",
"size": "1024x1024",
"quality": "low"
}'
from openai import OpenAI
client = OpenAI(
api_key="your_api_key",
base_url="https://api.ai.it.ufl.edu/v1"
)
response = client.images.generate(
model="gpt-image-1",
prompt="An Alligator walking around the University of Florida saying hi to students.",
size="1024x1024",
quality="low",
response_format="url"
)
image_url = response.data[0].url
import OpenAI from 'openai';
const openai = new OpenAI({
apiKey: 'your_api_key',
baseURL: 'https://api.ai.it.ufl.edu/v1'
});
const completion = await openai.images.generate({
model: "gpt-image-1",
prompt: "An Alligator walking around the University of Florida saying hi to students.",
size: "1024x1024",
quality: "standard",
response_format: "url",
});
image_url = response.data[0].url;
References
- OpenAI
https://openai.com/- LLM Stats
https://llm-stats.com- Artificial Analysis
https://artificialanalysis.ai