Most agent demos fall over the moment something real happens. This one is built for real conditions - step through an actual run of my Agentic Integration Service and watch the audit log build, hit the human approval gate, and prove the state is durable by restarting mid-run.
Intake
CRM lookup
Enrichment
⚑ Approval gate
Ticketing
Complete
A live model of the Agentic Integration Service. Step through a real run: Azure OpenAI-routed tool calls, a human approval gate on the high-value action, and durable state you can prove by restarting mid-run.
Decision-level audit log
- empty -
Architecture
How it's actually put together
The stepper above shows behavior over time. This is the structural view - services, boundaries, and the state that makes durability possible.
status lets a resumed run pick up exactly where it paused, instead of restarting from scratch.
checkpoint_at is written before the gate opens, so a mid-approval restart never loses the pending action.
audit_log is append-only - every step is replayable after the fact.
Deep dives
How the systems are built
Agentic Integration Service
LangGraph + Azure
Deployed live
A multi-step enterprise agent that gates high-value actions behind human approval, writes idempotently, and keeps durable state that outlives a container restart.
Scores retrieval and generation on hit-rate, MRR, faithfulness, answer-relevance and refusal-rate inside a regression suite so quality is tracked over time, not assumed.