Create • Iterate • Imagine

Build with AI — from prompt to prototype.

Play with a tiny prompt-to-art generator, a mock chat assistant, and interactive knobs that affect a toy "model" visualization. Everything below runs in your browser—no servers required.

Tip: press Enter to generate

Toy Model Mixer

Blend three pretend "experts" and watch the bars respond. Not a real model—just a fun visualization of weights.

How this page "creates"

We hash your prompt + settings to seed a deterministic pseudo-random field on the canvas, then render with style-specific shaders (JS-only). Try the code sketch:

function hash(s){
  let h=2166136261; for(const c of s){ h^=c.charCodeAt(0); h=Math.imul(h, 16777619);} return h>>>0;
}
function rnd(seed){ let x=seed||1; return ()=> (x = Math.imul(x ^ (x>>>15), 2246822519) + 0x9e3779b9) >>> 0;
}
// Draw dots based on noise from prompt

Tips

  • Use vivid nouns + verbs: "glowing koi swarm above midnight streets".
  • Mix constraints: "isometric, low poly, three colors".
  • Iterate: generate, tweak style, adjust seed, repeat.
  • Press T to toggle light/dark; / to focus the prompt.