GUIDES
Studio
Studio is the multimodal creation surface. Bring image, video, audio, 3D and language models into one flow, directed, iterated and kept on brand. Use it in the app, or drive it from the SDK.
The model palette
Studio exposes creation as typed modalities. You choose what to make; T1 routes to the strongest model for it.
| Modality | Produces |
|---|---|
image | Stills, art, product and campaign visuals |
video | Short clips and motion |
audio | Voice, music and sound design |
threeD | Production-ready 3D assets (via Forge3D) |
Generate from the SDK
import { Taskclan } from "@taskclan/sdk";
const taskclan = new Taskclan({ apiKey: process.env.TASKCLAN_API_KEY });
const asset = await taskclan.studio.generate({
modality: "image",
prompt: "A minimal product shot of a ceramic mug on warm paper, soft light",
size: "1024x1024",
brandId: "brand_acme", // ground the output in brand rules
});
console.log(asset.url);Iterate on a result
Every asset has an id you can reference to refine, extend or produce variations, so creative direction is a conversation, not a re-roll.
const variation = await taskclan.studio.edit({
assetId: asset.id,
instruction: "Warmer tone, add subtle steam rising from the mug",
});Brand intelligence
Attach a brandId so outputs respect your palette, typography, logo usage and tone. Brand rules act as guardrails the model creates within, keeping generated work usable, not just impressive.
Rights & review. Generated media should be reviewed before commercial use. Studio’s evaluation checks run through the Engine; see also the AI Policy.
Collaboration & handoff
- Develop ideas on an infinite canvas without breaking flow.
- Comment, refine and approve in the same workspace.
- Export assets or hand them to the Engine for delivery.
