PromptZone - AI Prompts, Guides and Tools for Builders

Cover image for Frames by Runway Guide to Gen-4 Image Prompts and API Access
Zuzanna Choi
Zuzanna Choi

Posted on Edited on

Frames by Runway Guide to Gen-4 Image Prompts and API Access

Frames is Runway's model for still images with control over visual style. Runway now identifies Frames as Gen-4 Images, accessed through its hosted creative tools and developer API. Announcement

For practical work, use the current Gen-4 Image documentation while keeping the historical Frames release distinct from Runway's video models.

What are the key facts about Runway Frames?

Field Verified detail
Developer Runway. Announcement
Released Announced November 25, 2024; the changelog records availability for Unlimited and Enterprise plans on January 17, 2025. Announcement, changelog
Type Hosted image generation; the announcement now labels Frames as Gen-4 Images. Announcement
Size or parameters Not published in the announcement or model API reference. Announcement, API reference
License and access Proprietary hosted access; no open weights are supplied through the documented access paths. Announcement, API guide
Where it runs Runway's service, reached through the browser interface or HTTP API. Creation guide, API guide

How can Frames help you plan a consistent visual style?

Runway introduced Frames around stylistic consistency across variations. Its examples include photography, illustration, collage, and still life. Announcement

A useful application is planning the look of a project before producing motion. Create a set of still-image candidates that share the same subject, palette, and lighting intention, then select the visual direction you want to develop.

Write the art brief before the prompt. Specify what the viewer should notice first, what should remain in the background, and which features need to remain consistent across the set.

For a small editorial series, that brief might require a centered ceramic object, a warm background, and shadows falling in the same direction. These are example design choices, not special Frames commands.

Runway's current prompting guide recommends descriptive language about subject, scene, composition, lighting, and style. Full sentences can make the relationships between those elements clearer. Prompting guide

Try an original description such as: “A blue ceramic teapot on a pale wooden table. Soft window light enters from the left. The camera looks straight across the table, with empty space above the teapot.”

What are the limits of Frames and Gen-4 Image?

Frames produces still imagery. Creating motion requires a separate video-generation operation; a stylistically consistent image series does not by itself demonstrate temporal consistency. Announcement, API reference

The current Gen-4 Image guide says negative prompting is unsupported. Describe a visible desired state, such as an empty tabletop, instead of relying on a list of objects that must be excluded. Prompting guide

Treat reference-based consistency as something to inspect. Check the object outline, material, and colors across candidate images rather than assuming every variation preserves all the details in your brief.

Runway documents image generation settings and credit usage in its creation guide. Confirm the selected model, output settings, and displayed cost before requesting a batch. Creation guide

No local GPU requirement applies to calling a hosted endpoint. If your goal is to retain and run model weights yourself, evaluate a downloadable model whose card documents local inference. API guide, FLUX card

How do you use Gen-4 Image on the web and through the API?

Generate an initial image in the web interface

Open Runway's dashboard and select Generate Image. In the model selector, open the Runway group and choose Gen-4 Image, then enter the prompt and adjust the image settings. Creation guide

Start with one clear subject and the output shape your layout requires. Inspect the first result at its intended size before spending time refining details that may disappear in the final placement.

Use the PromptZone prompt collection to develop variations in subject and composition. Keep the structure of your own brief consistent so you can compare those variations deliberately.

Call the current image API

Create a Runway Dev account and configure an API key. The official API guide documents the authorization header, API version header, and asynchronous task workflow. API guide

This example requests Gen-4 Image, the current image access path associated with Frames. It uses the documented text-to-image endpoint and a supported square output setting. API reference

curl https://api.dev.runwayml.com/v1/text_to_image \
  -H "Authorization: Bearer $RUNWAYML_API_SECRET" \
  -H "X-Runway-Version: 2024-11-06" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gen4_image",
    "promptText": "A blue ceramic teapot on pale wood, soft window light from the left, centered composition.",
    "ratio": "1024:1024"
  }'
Enter fullscreen mode Exit fullscreen mode

Read the returned task identifier, then retrieve its status with GET /v1/tasks/{id}. Wait for success before using the output; handle a failed task separately from a completed image. API guide

Store the model identifier, prompt, task identifier, and selected result together. This is especially helpful when an editor asks which settings produced an approved composition.

Before automating a series, review one complete request and output in the developer environment. Confirm that your application handles both the waiting state and a task failure without showing an unfinished asset as ready.

Review a coherent set

Arrange the candidate images in their intended order. Ask whether the light, color, and framing tell the same visual story, then identify the single image that breaks that pattern most clearly.

Revise that image against the approved brief. Keep rejected candidates in your working notes long enough to explain the decision, then archive the final selection with its generation record.

How does Runway Frames compare with FLUX.1 dev?

Option Practical distinction
Runway Frames / Gen-4 Image Hosted image generation through Runway's creative tools and API. Creation guide, API reference
FLUX.1 [dev] Downloadable image model with documented local inference and a model-specific non-commercial license. FLUX card

The ComfyUI pillar is relevant when evaluating a local image workflow. Compare the effort required to operate that workflow with the hosted route you would otherwise use.

What else should you know about Runway Frames?

Is Frames a video-generation model?

Runway introduced Frames as an image model. Video generation is a separate operation, even when the resulting still image becomes the starting point for a clip. Announcement, API reference

Where can I find Frames now?

The official announcement says Frames is now Gen-4 Images. Follow Runway's current Gen-4 Image creation guide or developer documentation for access. Announcement, creation guide

Can I download Frames for local inference?

Runway documents hosted access and does not provide open weights through those access paths. A local workflow therefore needs a different model with explicitly downloadable weights. API guide

Does the API immediately return the finished image?

Runway's POST /v1/text_to_image endpoint returns a task ID. Poll GET /v1/tasks/{id} and use the output only after its status becomes SUCCEEDED; handle FAILED as an unsuccessful generation. API guide

Sources

Top comments (0)