# Change Log
# October 01, 2024.
Discontinued support for Model 2
Our new Model 3 delivers significantly improved realism and artistic styles. We encourage you to transition your API integrations to ensure uninterrupted service. The required changes to your integration should be very minor and easily completed.
To smoothly transition to Model 3, please update your API requests as follows:
- Update
skybox_style_id
to useModel 3
: Simply specify a Model 3 style when making your skybox generation request. Documentation can be found here. - To retrieve all available Model 3 styles, make a request to
GET /api/v1/skybox/styles
using themodel_version=3
parameter. Documentation can be found here. - Changes to “Remix from init image”: In Model 3, the
init_image
parameter has been replaced bycontrol_image
. You must also usecontrol_model="remix"
. Please note that theinit_strength
parameter has been removed in Model 3. - Discontinuation of “Sketch” feature: The
control_model="sketch"
parameter is no longer supported in Model 3 and will be ignored if used.
If you have any questions or need assistance with the transition, our support team is here to help. Don’t hesitate to reach out, and we’ll be happy to guide you through the process.
- Update
# July 12, 2024.
- Updated OpenAPI Specification
# June 17, 2024.
- Updated Unity SDK to version 1.9.0
# June 11, 2024.
control_image
andcontrol_model
has been added to the request to support "remix from init image" feature on the Generate Skybox (Model 3) API route
# April 18, 2024.
- Added
Model 3
skybox generations - explained in the Generate Skybox (Model 3) API route
# April 4, 2024.
init_image
andinit_image_strength
has been added to the request to support "remix from init image" feature on the Generate Skybox (Model 2) API route
# January 24, 2024.
- Updated Unity SDK to version 1.8.0
# December 13, 2023.
return_depth_hq
request parameter has been added to the request for high quality depth map on the Generate Skybox (Model 2) API route
# September 26, 2023.
control_model="scribble"
has been deprecated, in favor ofcontrol_model="sketch"
on the Generate Skybox (Model 2) API route
# September 14, 2023.
- Added depth maps and enhance prompt functionality to Unity SDK Library.
# August 22, 2023.
- Added skybox export functionality for PNG, HDRI (exr, hdr), Depth Map, Cube Map and Video (portrait, landscape, square). Explained in more detail in the Skybox Exports section of the documentation.
- Depth map is now always generated when using the Generate Skybox request.
return_depth
has been deprecated on the Generate Skybox (Model 2) API route
# July 28, 2023.
- Added
enhance_prompt
as a request parameter in the Generate Skybox (Model 2) API route
When sent as true
, it will take a short prompt
parameter like “wildflower meadow” and turn it into something like:
“a vibrant expanse of wildflower meadow, painted with vivid hues of nature, under the serene blue sky, kissed by the soft sunlight, buzzing with tiny insects”
Enhance Prompt mode also, for the first time, makes it possible to ask Skybox AI for what you want rather than prompting it. Without this new feature, typing in “Hey please create me a really cool river scene” will result in a sub-par result since really only the word “river” is giving the AI the context it needs to create, while the Prompt Enhancer will turn that into a prompt like
“tranquil serenade of a babbling crystal-clear river snaking its way through a verdant valley, sun-dappled leaves whispering overhead, colorful birds flitting through the sky, a soothing tableau of nature”
This new parameter allows anyone to have an AI automatically improve their prompt to generate pro-level results every time.
# June 7, 2023.
- Added
x-api-key
header parameter. Explained in more detail in the Making requests section of the documentation.
# May 31, 2023.
- Added
control_image
(used as "scribble" init image) as a request parameter in the Generate Skybox (Model 2) API route - Added
control_model
as a request parameter in the Generate Skybox (Model 2) API route
# May 16, 2023.
- Added
seed
number as a response parameter in Get Skybox by id, Get Skybox by Obfuscated id and Get History API routes - Added
negative-text-max-char
as a response parameter in Get Skybox Styles API route to define the maximum number of characters that can be used for 'negative_text' request parameter in Generate Skybox (Model 2) API route
# April 27, 2023.
- Reorganized documentation to simplify Skybox generaton
- Added
seed
number as a request parameter in the Generate Skybox (Model 2) API route
# April 26, 2023.
- Added
return_depth
(depth map image generation) as a request parameter in the Generate Skybox (Model 2) API route - Added
depth_map_url
(generated depth map image) as a return parameter in the progress update message - Added
negative_text
(negative text prompt) as a request parameter in the Generate Skybox (Model 2) API route
# April 12, 2023.
- Added Laravel/PHP SDK Libraries
# April 05, 2023.
- Added Skybox Remix functionality
# April 03, 2023.
- Added Node.js and Unity SDK Libraries
# March 21, 2023.
GET https://backend.blockadelabs.com/api/v1/skybox
is now deprecated in favor ofGET https://backend.blockadelabs.com/api/v1/skybox/styles
explained in more detail here.POST https://backend.blockadelabs.com/api/v1/skybox/{id}
is now deprecated in favor ofPOST https://backend.blockadelabs.com/api/v1/skybox
explained in more detail here.We are now sending pusher updates on a separate channels for each skybox/imagine generation request. You will get
pusher_channel
andpusher_event
in the response:{ "pusher_channel": "status_update_460370b7328a5cb8dbddd6ef0d1c9dd4", // pusher channel name used to track generation progress "pusher_event": "status_update", // pusher channel event used to track generation progress }
Responses are cleaned up from unnecessary fields.