File size: 472 Bytes
c2ea5ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Knowledge Extraction

This module handles multi-agent crew-based knowledge extraction from text chunks.
"""

from agentgraph.methods.production.multi_agent_knowledge_extractor import (
    agent_monitoring_crew_factory,
    create_agent_monitoring_crew,
    extract_knowledge_graph_with_context
)

__all__ = [
    # Factory for dynamic crew creation
    'agent_monitoring_crew_factory',
    'create_agent_monitoring_crew',
    'extract_knowledge_graph_with_context'
]