Skip to main content
GET
/
confidence-scoring
/
summary
/
agent
/
{agent_name}
Python
from meibel import MeibelClient

client = MeibelClient(api_key="your-api-key")

result = client.confidence_scoring.get_agent_scoring_summary("agent_name_value")
print(result)
{
  "status": "<string>",
  "aggregate_score": 123,
  "module_scores": {},
  "n_jobs_per_module": {},
  "job_ids": [
    "<string>"
  ],
  "turns": [
    {
      "turn": 123,
      "status": "<string>",
      "aggregate_score": 123,
      "module_scores": {},
      "n_jobs_per_module": {},
      "job_ids": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

agent_name
string
required

Name of the agent to summarize.

Response

Successful Response

Aggregated summary of scoring jobs matching identity context filters.

status
string | null

Overall status across the matched scoring jobs. Null if no jobs matched the filters.

aggregate_score

Average score across all completed jobs matching the filters.

module_scores
Module Scores · object

Average score per scoring module, keyed by module name.

n_jobs_per_module
N Jobs Per Module · object

Number of completed scoring jobs per module.

job_ids
string[] | null

Job IDs matching the filters.

turns
TurnSummary · object[] | null

Per-turn score breakdowns, ordered by turn number ascending with null-turn last.