Tag
Python
35 posts filed under Python.
MAF v1 — State and Checkpoints (Python + .NET)
Persist workflow state at superstep boundaries, reload snapshots in a fresh process, and continue without losing progress.
MAF v1 — Declarative Workflows (Python + .NET)
Define a workflow in YAML, load it at runtime, and tweak orchestration without recompiling the Python or .NET app safely.
MAF v1 — Handoff Orchestration (Python + .NET)
Let a Triage agent route the conversation to Math or History specialists, handle handbacks, and guard against loops in production.
MAF v1 — Group Chat Orchestration (Python + .NET)
Use a centralized manager to pick speakers each round, compare round-robin and agent-driven strategies, and cap runaway loops.
MAF v1 — Magentic Orchestration (Python + .NET)
Use Magentic orchestration for autonomous planning: a manager keeps facts, delegates to workers, reassesses, and replans when stuck.
MAF v1 — Agents in Workflows (Python + .NET)
Wrap a ChatClientAgent as a workflow executor, chain two translators, and hide adapter plumbing behind AgentWorkflowBuilder.
MAF v1 — Sequential Orchestration (Python + .NET)
Use SequentialBuilder or BuildSequential to pass one conversation through Writer, Reviewer, and Finalizer agents without hand-built adapters.
MAF v1 — Concurrent Orchestration (Python + .NET)
Fan one input out to an expert panel, aggregate the responses, and keep wall-clock time bounded by the slowest branch cleanly.
MAF v1 — MCP Tools (Python + .NET)
Stand up a Python MCP server and consume it from Python and .NET MAF agents, including discovery and AITool wiring from one server.
MAF v1 — Workflow Executors and Edges (Python + .NET)
Model deterministic workflows with executors as nodes, edges as routes, and a Pregel-style scheduler in Python and .NET.
MAF v1 — Workflow Events and Builder (Python + .NET)
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.
MAF v1 — Context Providers (Python + .NET)
Add per-request context with focused providers, compose them before each LLM call, and plug in TextSearchProvider for simple RAG.











