AgentRunRequest constructor

const AgentRunRequest({
  1. required Issue issue,
  2. required Workspace workspace,
  3. required String renderedPrompt,
  4. required int maxTurns,
  5. int? attempt,
})

Creates a request.

Implementation

const AgentRunRequest({
  required this.issue,
  required this.workspace,
  required this.renderedPrompt,
  required this.maxTurns,
  this.attempt,
});