{{ 'PAC.Xpert.ActionToReview' | translate: { Default: 'Action to review' } }}
@for (action of actions(); track action.name; let i = $index) {
{{ 'PAC.Xpert.ToolCall' | translate: { Default: 'Tool Call' } }}
{{ action.name }} {{ allowedDecisions(action).join(' / ') }}
@if (action.description) {

{{ action.description }}

}
@for (option of allowedDecisions(action); track option) { }
{{
          action.args | json
        }}
@if (decisionFor(i)?.type === 'edit') {
@if (parseErrors()[i]) {

{{ parseErrors()[i] }}

}
} @else if (decisionFor(i)?.type === 'reject') {
} @else {
{{ 'PAC.Xpert.HITLNoChanges' | translate: { Default: 'Approve without changes' } }}
}
} @empty {
{{ 'PAC.Xpert.HITLEmpty' | translate: { Default: 'No actions need approval right now.' } }}
}