Archive

337 posts · Page 17 of 29. ← Blog

Pratik Dhanave · ·2 min read

Checkpointing

Long or human-gated workflows can't live only in memory — hand the builder a CheckpointStorage and it snapshots state after each superstep, so you can restore and resume.

Hand the builder a CheckpointStorage and it snapshots state after each superstep, so you can list saved checkpoints and resume from an id.

Pratik Dhanave · ·2 min read

Backend Tools

How an AG-UI-hosted agent runs a server-side function tool while the thin client just streams the conversation.

Give an AG-UI-hosted agent a server-side search_restaurants tool via functool while the thin SSE client just streams the reply — the tool round-trip stays invisible.

Pratik Dhanave · ·2 min read

Parallelism

The reason to reach for a graph over a chain: fan out work to run concurrently, then fan in to merge — wall-clock is the slowest worker, not the sum.

Fan-out broadcasts the same message to concurrent workers; fan-in gives a joiner a list of all outputs and fires once every source completes.

Pratik Dhanave · ·2 min read

Hosted Mcp

Point an agent at a remote MCP server and let Foundry do the calling — you describe the server once, the service discovers and invokes its tools for you.

A hosted MCP tool aims the agent at a remote MCP server and lets Foundry connect and call it; you describe the server once and set an approval mode.