kailash 0.1.4__py3-none-any.whl → 0.1.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,7 @@
1
1
  """AI and ML nodes for the Kailash SDK."""
2
2
 
3
+ # Import A2A communication nodes
4
+ from .a2a import A2AAgentNode, A2ACoordinatorNode, SharedMemoryPoolNode
3
5
  from .agents import ChatAgent, FunctionCallingAgent, PlanningAgent, RetrievalAgent
4
6
 
5
7
  # Import from unified ai_providers module
@@ -14,6 +16,15 @@ from .ai_providers import (
14
16
  get_provider,
15
17
  )
16
18
  from .embedding_generator import EmbeddingGeneratorNode
19
+
20
+ # Import intelligent orchestration nodes
21
+ from .intelligent_agent_orchestrator import (
22
+ ConvergenceDetectorNode,
23
+ IntelligentCacheNode,
24
+ MCPAgentNode,
25
+ OrchestrationManagerNode,
26
+ QueryAnalysisNode,
27
+ )
17
28
  from .llm_agent import LLMAgentNode
18
29
  from .models import (
19
30
  ModelPredictor,
@@ -24,6 +35,15 @@ from .models import (
24
35
  TextSummarizer,
25
36
  )
26
37
 
38
+ # Import self-organizing nodes
39
+ from .self_organizing import (
40
+ AgentPoolManagerNode,
41
+ ProblemAnalyzerNode,
42
+ SelfOrganizingAgentNode,
43
+ SolutionEvaluatorNode,
44
+ TeamFormationNode,
45
+ )
46
+
27
47
  __all__ = [
28
48
  # Agents
29
49
  "ChatAgent",
@@ -31,6 +51,22 @@ __all__ = [
31
51
  "FunctionCallingAgent",
32
52
  "PlanningAgent",
33
53
  "LLMAgentNode",
54
+ # A2A Communication
55
+ "A2AAgentNode",
56
+ "SharedMemoryPoolNode",
57
+ "A2ACoordinatorNode",
58
+ # Self-Organizing Agents
59
+ "AgentPoolManagerNode",
60
+ "ProblemAnalyzerNode",
61
+ "SelfOrganizingAgentNode",
62
+ "SolutionEvaluatorNode",
63
+ "TeamFormationNode",
64
+ # Intelligent Orchestration
65
+ "ConvergenceDetectorNode",
66
+ "IntelligentCacheNode",
67
+ "MCPAgentNode",
68
+ "OrchestrationManagerNode",
69
+ "QueryAnalysisNode",
34
70
  # Embedding and Vector Operations
35
71
  "EmbeddingGeneratorNode",
36
72
  # Provider Infrastructure