AgentStep constructor

const AgentStep({
  1. required AgentAction action,
  2. required String observation,
})

A action taken by the agent along with the observation of the action.

Implementation

const AgentStep({
  required this.action,
  required this.observation,
});