TPRM Risk Scorer Agent
Agent ID: tprm-risk-scorer-agent
Task Description:
Evaluate compiled vendor information (parsed questionnaires, external intel) and assign a risk score using a weighted model.
Reusability:
Agent Type:
Complex AI (Multi-step/Reasoning)
Implementation Notes:
Genkit flow using AI for sentiment analysis if not already done, and a weighted scoring model (potentially AI-tuned) for risk calculation.
Last Evaluated
2024-07-18
Accuracy
90.0%
Latency
avg 700ms
Cost Per Interaction
$0.009
Identity (Core A2A):
- Name: TPRM Risk Scorer Agent
- Unique ID:
tprm-risk-scorer-agent
Primary Function (A2A):
Evaluate compiled vendor information (parsed questionnaires, external intel) and assign a risk score using a weighted model.
Defined Agent Skills (A2A Interface):
Skill Orchestration & Execution
The operational logic for this agent, including the invocation and management of its defined skills, is handled by the backend system's orchestration layer. This layer is responsible for the agent's execution sequence, data handling according to its skill schemas, and any necessary interactions with tools or external services. The specific method (e.g., AI model call, deterministic code execution) is detailed in the 'Implementation Notes' within the Agent Overview.
{ "id": "tprm-risk-scorer-agent", "name": "TPRM Risk Scorer Agent", "description": "Scores third-party risk based on collected and processed information.", "isReusable": false, "taskDescription": "Evaluate compiled vendor information (parsed questionnaires, external intel) and assign a risk score using a weighted model.", "icon": { "displayName": "ShieldCheck" }, "agentType": "ai-complex", "implementationNotes": "Genkit flow using AI for sentiment analysis if not already done, and a weighted scoring model (potentially AI-tuned) for risk calculation.", "responsibleTeamIds": [ "team-ai-core", "team-risk-management" ], "skills": [ { "id": "score-vendor-risk", "name": "Score Vendor Risk (TPRM)", "description": "Evaluates compiled vendor information to assign a comprehensive risk score.", "inputSchemaExample": "{\n \"properties\": {\n \"vendorId\": {\n \"type\": \"string\"\n },\n \"compiledVendorData\": {\n \"type\": \"object\"\n }\n }\n}", "outputSchemaExample": "{\n \"properties\": {\n \"tprmRiskScore\": {\n \"type\": \"number\"\n },\n \"riskBreakdown\": {\n \"type\": \"object\"\n },\n \"keyRiskIndicators\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"string\"\n }\n }\n }\n}" } ], "evaluation": { "lastEvaluated": "2024-07-18", "accuracy": 0.9, "latency": "avg 700ms", "costPerInteraction": "$0.009" }, "inputs": [ "gds-formatted-vendor-data", "gds-external-vendor-intel" ], "outputs": [ "gds-vendor-risk-score-tprm" ] }