kailash 0.8.1__py3-none-any.whl → 0.8.4__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.
kailash/__init__.py CHANGED
@@ -52,7 +52,7 @@ except ImportError:
52
52
  # For backward compatibility
53
53
  WorkflowGraph = Workflow
54
54
 
55
- __version__ = "0.8.1"
55
+ __version__ = "0.8.4"
56
56
 
57
57
  __all__ = [
58
58
  # Core workflow components
@@ -8,7 +8,13 @@ import uuid
8
8
  from datetime import datetime, timezone
9
9
  from typing import Any, Dict, List, Optional
10
10
 
11
- from sqlalchemy import JSON, Boolean, CheckConstraint, Column, DateTime
11
+ from sqlalchemy import (
12
+ JSON,
13
+ Boolean,
14
+ CheckConstraint,
15
+ Column,
16
+ DateTime,
17
+ )
12
18
  from sqlalchemy import Enum as SQLEnum
13
19
  from sqlalchemy import (
14
20
  Float,
@@ -16,6 +16,7 @@ from .ai_providers import (
16
16
  get_provider,
17
17
  )
18
18
  from .embedding_generator import EmbeddingGeneratorNode
19
+ from .hybrid_search import AdaptiveSearchNode, HybridSearchNode
19
20
 
20
21
  # Import intelligent orchestration nodes
21
22
  from .intelligent_agent_orchestrator import (
@@ -45,6 +46,14 @@ from .self_organizing import (
45
46
  TeamFormationNode,
46
47
  )
47
48
 
49
+ # Import A2A enhancement nodes
50
+ from .semantic_memory import (
51
+ SemanticAgentMatchingNode,
52
+ SemanticMemorySearchNode,
53
+ SemanticMemoryStoreNode,
54
+ )
55
+ from .streaming_analytics import A2AMonitoringNode, StreamingAnalyticsNode
56
+
48
57
  __all__ = [
49
58
  # Agents
50
59
  "ChatAgent",
@@ -57,6 +66,14 @@ __all__ = [
57
66
  "A2AAgentNode",
58
67
  "SharedMemoryPoolNode",
59
68
  "A2ACoordinatorNode",
69
+ # A2A Enhancement Nodes
70
+ "SemanticMemoryStoreNode",
71
+ "SemanticMemorySearchNode",
72
+ "SemanticAgentMatchingNode",
73
+ "HybridSearchNode",
74
+ "AdaptiveSearchNode",
75
+ "StreamingAnalyticsNode",
76
+ "A2AMonitoringNode",
60
77
  # Self-Organizing Agents
61
78
  "AgentPoolManagerNode",
62
79
  "ProblemAnalyzerNode",