File size: 748 Bytes
2e82565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Coordinator Agent module for vulnerability intelligence.
This agent is responsible for coordinating the other agents and generating the final report.
"""
import json
import time
import argparse
from typing import Dict, List, Any, Optional, Union

from smolagents import tool
from ..tools import utils
from ..tools.parsers import CWEParser
from . import cve_agent, nvd_agent, cisa_agent, cwe_agent

logger = utils.setup_logger("coordinator_agent")

# Enhance with CWE information
for vuln in merged_results.get("vulnerabilities", []):
    if "description" in vuln:
        # Try to extract CWEs from the description
        cwe_ids = CWEParser.extract_cwe_from_cve(vuln["description"])
        if cwe_ids:
            # ... rest of the code ...