All models
Imagev1.0.0
Clarity Upscaler
Detail-enhancing upscale for illustrated/artistic images. Up to 13000px.
6 inputsIMAGE


2× creative upscale
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins clarity-upscaler and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("clarity-upscaler", {
image: { ref: "https://..." },
prompt: { value: "" },
scaleFactor: { value: 2 },
creativity: { value: 0.35 },
resemblance: { value: 0.6 },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node clarity-upscaler \
-i image=@https://... \
-i prompt="" \
-i scaleFactor=2 \
-i creativity=0.35 \
-i resemblance=0.6 \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "clarity-upscaler",
"inputs": {
"image": {
"ref": "https://..."
},
"prompt": {
"value": ""
},
"scaleFactor": {
"value": 2
},
"creativity": {
"value": 0.35
},
"resemblance": {
"value": 0.6
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"clarity-upscaler","inputs":{"image":{"ref":"https://..."},"prompt":{"value":""},"scaleFactor":{"value":2},"creativity":{"value":0.35},"resemblance":{"value":0.6},"seed":{"value":1}}}'Schema
Inputs
| image* | IMAGE | ||
| prompt | TEXT | Enhancement prompt | |
| scaleFactor | FLOAT | 2 | |
| creativity | FLOAT | 0.35 | |
| resemblance | FLOAT | 0.6 | |
| seed | INT |
Outputs
| image | IMAGE |