Review Service
The backend API that manages the human review and approval workflow for AI agent outputs.
Details
| Field | Value |
|---|---|
| URL | https://review-service.icydesert-76825898.southindia.azurecontainerapps.io |
| Azure name | review-service |
| Resource group | testing |
| Environment | cerebro-auth-env (South India) |
| Image | ca45076245feacr.azurecr.io/review-service:91a8f6db... |
| Port | 8080 |
Purpose
Receives events from the ingest pipeline, stores them for human review, exposes APIs for the HITL Frontend to fetch and act on pending items.
How to Update
az acr build \
--registry ca45076245feacr \
--resource-group testing \
--image review-service:$(git rev-parse HEAD) \
.
az containerapp update \
--name review-service \
--resource-group testing \
--image ca45076245feacr.azurecr.io/review-service:$(git rev-parse HEAD)
View Logs
az containerapp logs show \
--name review-service \
--resource-group testing \
--tail 50