Imagen 4 text-to-image and remix-image client for RunAPI
Project description
Imagen 4 Python SDK for RunAPI
The Imagen 4 Python SDK is the language-specific package for Imagen 4 on RunAPI. Use it for text-to-image and remix-image flows when your application needs JSON request bodies, task status lookup, and consistent RunAPI errors in Python.
For model details, use https://runapi.ai/models/imagen-4; for API reference, use https://runapi.ai/docs#imagen-4; for SDK docs, use https://runapi.ai/docs#sdk-imagen-4.
Install
pip install runapi-imagen-4
Quick start
from runapi.imagen_4 import Imagen4Client
client = Imagen4Client() # reads RUNAPI_API_KEY, or pass api_key="sk-..."
task = client.text_to_image.create(
model="imagen-4",
prompt="A neon city street after rain, cinematic",
aspect_ratio="16:9",
)
status = client.text_to_image.get(task.id)
remix = client.remix_image.create(
model="imagen-4-pro-remix-image",
prompt="Make it golden hour",
source_image_urls=["https://example.com/source.jpg"],
)
Use create to submit a task and return quickly, get to fetch the latest task
state, and run to create and poll until completion:
result = client.text_to_image.run(
model="imagen-4",
prompt="A serene mountain lake at dawn",
)
print(result.images[0].url)
In web request handlers, prefer create plus webhook or later get polling so a
worker is not held open.
RunAPI-generated file URLs are temporary. Download and store generated images in your own durable storage within 7 days; do not treat returned URLs as long-term assets.
Language notes
Pass parameters as keyword arguments and catch the runapi.imagen_4 error
classes when building image jobs or scripts. The available resources are
text_to_image and remix_image. Keep RUNAPI_API_KEY in the environment or
your secret manager; never commit API keys or callback secrets.
Links
- Model page: https://runapi.ai/models/imagen-4
- SDK docs: https://runapi.ai/docs#sdk-imagen-4
- Product docs: https://runapi.ai/docs#imagen-4
- Pricing and rate limits: https://runapi.ai/models/imagen-4
- Full catalog: https://runapi.ai/models
License
Licensed under the Apache License, Version 2.0.
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 runapi_imagen_4-0.1.0.tar.gz.
File metadata
- Download URL: runapi_imagen_4-0.1.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac7aedf885a77853ac294cccfccb6e97c92f4bb94ec00fa920fb13bff31c1ccf
|
|
| MD5 |
84aad8a010bcb5c9f66323b4634a0955
|
|
| BLAKE2b-256 |
92ea1d5e2bbcd88524dad31853d747c0add62a77e36c3137f2afbe921569a1a6
|
File details
Details for the file runapi_imagen_4-0.1.0-py3-none-any.whl.
File metadata
- Download URL: runapi_imagen_4-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Arch Linux","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ecc7a09abd240c9f18415f7ea5cde74bf6fd77f3780082307ac11a46ccd61d4
|
|
| MD5 |
1b615ada807f8fa06e68af39bd49a24a
|
|
| BLAKE2b-256 |
2f14a5154b589df8065cc4014d75cefde41746b5f9f88ddfea5c9521b4307dcf
|