Failed to load versions. Head to the versions page to see all versions for this model.
You're looking at a specific version of this model. Jump to the model overview.
voodoohop /hybrid-space-bfl:8f672a8e
Input
Run this model in Node.js with one line of code:
npm install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import Replicate from "replicate";
import fs from "node:fs";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run voodoohop/hybrid-space-bfl using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"voodoohop/hybrid-space-bfl:8f672a8ec23df0661dfa62276f66a7bbc1402b36bad2431c516f78243caf4cc1",
{
input: {
steps: 50,
width: 1024,
height: 1024,
guidance: 4,
style_suffix: " In the style of HSL - The style is a precise blend of flat illustration and technical drawing, characterized by clean, sharp lines, vibrant flat colors, and a meticulous isometric perspective with no vanishing points. It emphasizes clarity and organization, with a grid-based structure that gives a sense of order and modularity. Bold, saturated colors dominate, with minimal gradients or shading, relying on flat fills and occasional neon accents to highlight key elements. Linework is consistent, with thin black or dark-colored outlines that define shapes and slightly thicker lines for emphasis. Depth is implied through overlapping layers and perspective rather than textures or realistic shadows. Micro-details are drawn with precision, creating visual density while maintaining balance and avoiding clutter. Overall, the style is systematic, modular, and highly functional, merging the simplicity of flat illustration with the communicative clarity of a technical diagram.",
model_version: "lora",
finetune_strength: 1.3
}
}
);
// To access the file URL:
console.log(output.url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
import replicate
Run voodoohop/hybrid-space-bfl using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"voodoohop/hybrid-space-bfl:8f672a8ec23df0661dfa62276f66a7bbc1402b36bad2431c516f78243caf4cc1",
input={
"steps": 50,
"width": 1024,
"height": 1024,
"guidance": 4,
"style_suffix": " In the style of HSL - The style is a precise blend of flat illustration and technical drawing, characterized by clean, sharp lines, vibrant flat colors, and a meticulous isometric perspective with no vanishing points. It emphasizes clarity and organization, with a grid-based structure that gives a sense of order and modularity. Bold, saturated colors dominate, with minimal gradients or shading, relying on flat fills and occasional neon accents to highlight key elements. Linework is consistent, with thin black or dark-colored outlines that define shapes and slightly thicker lines for emphasis. Depth is implied through overlapping layers and perspective rather than textures or realistic shadows. Micro-details are drawn with precision, creating visual density while maintaining balance and avoiding clutter. Overall, the style is systematic, modular, and highly functional, merging the simplicity of flat illustration with the communicative clarity of a technical diagram.",
"model_version": "lora",
"finetune_strength": 1.3
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run voodoohop/hybrid-space-bfl using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-H "Prefer: wait" \
-d $'{
"version": "voodoohop/hybrid-space-bfl:8f672a8ec23df0661dfa62276f66a7bbc1402b36bad2431c516f78243caf4cc1",
"input": {
"steps": 50,
"width": 1024,
"height": 1024,
"guidance": 4,
"style_suffix": " In the style of HSL - The style is a precise blend of flat illustration and technical drawing, characterized by clean, sharp lines, vibrant flat colors, and a meticulous isometric perspective with no vanishing points. It emphasizes clarity and organization, with a grid-based structure that gives a sense of order and modularity. Bold, saturated colors dominate, with minimal gradients or shading, relying on flat fills and occasional neon accents to highlight key elements. Linework is consistent, with thin black or dark-colored outlines that define shapes and slightly thicker lines for emphasis. Depth is implied through overlapping layers and perspective rather than textures or realistic shadows. Micro-details are drawn with precision, creating visual density while maintaining balance and avoiding clutter. Overall, the style is systematic, modular, and highly functional, merging the simplicity of flat illustration with the communicative clarity of a technical diagram.",
"model_version": "lora",
"finetune_strength": 1.3
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
No output yet! Press "Submit" to start a prediction.