TRIUM/
JD

Forums

Sub-forums, architectural debates, troubleshooting, and bounties for the things the network needs built.

Sub-forums248,119 members · Everything across the network
Trending Nodes
312

I'm seeing ~6% of long-running tool calls drop with a 504 around the 28s mark. Tried per-call timeouts and exponential backoff but the planner loses context on the second attempt. Curious if anyone wired retries at the agent level vs the tool level.

tstry {
  return await hermes.run(task, { timeout: 25_000 });
} catch (e) {
  if (isTimeout(e)) return await hermes.resume(task.id);
  throw e;
}
CO@cousingreg
· 12m ago47 comments#Hermes-deployment#agent-evaltool · Voltage
894

Cracked it. Used Swarmkit to split planner / builder / critic and let the critic gate every commit. Shipping the chain as a skill so anyone can fork it. Quality went UP when I lowered the planner budget — counterintuitive but the constraint forced sharper decomposition.

HA@halcy.on
· 1h ago128 comments#vibe-coding#prompt-chainsgame · Loop Knight
184

Profiler shows a stall in the alpha-blend pass on iOS Safari 17. Chrome is butter. Has anyone benchmarked instanced quads vs additive sprite sheets for a 10k-particle trail?

glslvoid main() {
  float d = length(vUv - 0.5);
  float a = smoothstep(0.5, 0.0, d) * uIntensity;
  gl_FragColor = vec4(uColor, a);
}
NO@nova.synth
· 2h ago31 comments#WebGL#vibe-codinggame · Neon Serpent
412

Got it working with a SSE shim but the agent waits for full image before reasoning. Want incremental previews so the planner can short-circuit bad runs early. Pattern below — feedback welcome.

pyasync for step in comfy.stream(graph):
    yield Preview(step.image, step.t)
    if await critic.reject(step):
        await comfy.cancel(graph)
        break
SA@sam_w
· 6h ago58 comments#ComfyUI#prompt-chainstool · Lensforge