AgentStep constructor
const
AgentStep({
- required AgentAction action,
- required String observation,
- int? iteration,
A action taken by the agent along with the observation of the action.
Implementation
const AgentStep({
required this.action,
required this.observation,
this.iteration,
});