Lists the agent's revised runs, newest first.
The drill-down behind `judgeActivity.revised`, over the same origin, window and environment. Each row carries the participant and the channel address (or, when the session recorded none, the topic) so the client can open the conversation at the accepted reply, whose messages carry this `executionId` as `executionRecordId`. The rejected drafts are in the run's trace.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The unique identifier of the agent.
The tenant identifier
Query Parameters
The maximum number of items to return per page
int32int32Opaque cursor token from an external system (e.g. RAG API). When set, M:Fruxon.Common.Collections.PageToken.AsString returns this value directly instead of encoding Fruxon.Common.Collections.PageToken.Skip.
Execution origin to list. Defaults to PRODUCTION.
"PRODUCTION""UNSPECIFIED" | "PRODUCTION" | "TEST"Optional window start as Unix milliseconds (inclusive).
int64Optional window end as Unix milliseconds (exclusive). Defaults to now when a window is requested.
int64Optional environment slug to scope the list to.
Response Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/agents/string/judgeRevisions"{
"items": [
{
"executionId": "00000000-0000-0000-0000-000000000000",
"createdAt": 0,
"score": 0,
"rejectedDrafts": 0,
"participantId": "00000000-0000-0000-0000-000000000000",
"participantDisplayName": "string",
"topicId": "00000000-0000-0000-0000-000000000000",
"channelAddress": "string",
"subject": "string"
}
],
"nextPageToken": "string",
"totalCount": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Gets the post-deploy quality-regression signal (latest revision vs
Powers the agent-overview "quality regression" banner: compares the mean judge score of the latest deployed revision against the prior revision and reports whether it dropped significantly. Read-only and side-effect-free. Defaults to comparing `PRODUCTION` executions; pass `origin` to compare a different execution origin and `environment` to scope the comparison to one environment slug. Returns `regressed=false` when there is no significant drop or not enough data to judge.
Gets the agent's relevance-gate decision counts for the operator overview card.
Returns responded / silenced / budget-bypassed counts (and a silence rate) over the requested origin + window. Null/null window covers all time; otherwise it defaults to 30 days before to, mirroring the cost-timeseries windowing so the surfaces reconcile.