According [to docs](https://stately.ai/docs/agents) > In terms of the actor model, an agent can be considered an actor. However the example still uses an actor. This is a bit confusing to me. ```js const todoActor = createActor(todoMachine); agent.interact(todoMachine); todoActor.start(); ```