File size: 458 Bytes
a9dc537 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """
Scenario 1: Patent Wake-Up (Dormant IP Valorization)
Specialized agents for complete patent analysis and valorization workflow.
"""
from .document_analysis_agent import DocumentAnalysisAgent
from .market_analysis_agent import MarketAnalysisAgent
from .matchmaking_agent import MatchmakingAgent
from .outreach_agent import OutreachAgent
__all__ = [
"DocumentAnalysisAgent",
"MarketAnalysisAgent",
"MatchmakingAgent",
"OutreachAgent",
]
|