AI Engineering
·
May 3, 2026
·
7 min read Render any workflow as Mermaid (GitHub-friendly) or Graphviz DOT (production runbooks). One line each, deterministic output, dark-mode-safe palette.
AI Engineering
·
May 2, 2026
·
13 min read Persist workflow state at superstep boundaries, reload snapshots in a fresh process, and continue without losing progress.
AI Engineering
·
May 2, 2026
·
19 min read Pause a workflow for human input, resume it with the same request_id, and keep the caller-side contract simple across runs.
AI Engineering
·
May 2, 2026
·
15 min read Define a workflow in YAML, load it at runtime, and tweak orchestration without recompiling the Python or .NET app safely.
AI Engineering
·
Apr 26, 2026
·
21 min read Use Magentic orchestration for autonomous planning: a manager keeps facts, delegates to workers, reassesses, and replans when stuck.
AI Engineering
·
Apr 26, 2026
·
18 min read Let a Triage agent route the conversation to Math or History specialists, handle handbacks, and guard against loops in production.
AI Engineering
·
Apr 26, 2026
·
13 min read Use a centralized manager to pick speakers each round, compare round-robin and agent-driven strategies, and cap runaway loops.
AI Engineering
·
Apr 25, 2026
·
14 min read Use SequentialBuilder or BuildSequential to pass one conversation through Writer, Reviewer, and Finalizer agents without hand-built adapters.
AI Engineering
·
Apr 25, 2026
·
14 min read Fan one input out to an expert panel, aggregate the responses, and keep wall-clock time bounded by the slowest branch cleanly.
AI Engineering
·
Apr 25, 2026
·
15 min read Wrap a ChatClientAgent as a workflow executor, chain two translators, and hide adapter plumbing behind AgentWorkflowBuilder.
AI Engineering
·
Apr 19, 2026
·
13 min read Model deterministic workflows with executors as nodes, edges as routes, and a Pregel-style scheduler in Python and .NET.
AI Engineering
·
Apr 19, 2026
·
9 min read Two kinds of workflow events — lifecycle and custom. Subscribe to the stream in Python and .NET, filter by type, and wire a live progress indicator.