Frequently Asked Questions
Agentic AI is an architecture in which multiple specialised AI agents, coordinated by an orchestrator, execute a multi-step business process rather than answering questions in isolation. It holds state across sessions, applies explicit routing rules, triggers time-based workflows and escalates to a human when a defined condition is met.
A chatbot responds within a conversation. An agentic AI system moves a process forward across many conversations and days. The practical difference is state: an agentic system knows where the user is in a defined journey, which workflow is permitted next, and what must happen if nobody replies.
In our experience, no. Routing should be deterministic with explicit rules evaluated against a named state — so the same state and input always produce the same route. Language models are best used inside agents for understanding and generation, not as the authority deciding which business process runs next.
A state model enumerates every stage a user can occupy, with exactly one active at a time. It matters because it determines which agent is permitted to act, and because writing it down forces clinical, commercial and operational rules into the open where stakeholders can review them, instead of leaving them implicit inside prompts.
No. Agents that need consistency rather than reasoning — balance checks, payment retries, templated notifications run better as rule-based workflows. In this platform the wallet agent runs on zero LLM tokens, which removed inference cost from the highest-volume psath without changing the user experience.
Amazon Bedrock AgentCore is the AWS service layer used here to host the orchestration and agent runtime. Its Gateway routes requests into agents using standardised tool schemas, which keeps tool invocation deterministic rather than improvised by the model.
By making grounding a gate rather than a preference. Every clinical answer in this platform must cite a valid source — a classical text, an active care plan or a doctor instruction. If the answer cannot be grounded, the query routes to a human doctor instead of being generated anyway.
Log every state transition, tool call and retrieval citation with full provenance. Deterministic routing is what makes those logs meaningful: because the route is a rule and not a model judgement, any decision the platform made can be replayed and explained after the fact.