kailash 0.8.3__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 +1 -1
- kailash/nodes/ai/__init__.py +17 -0
- kailash/nodes/ai/a2a.py +1914 -43
- kailash/nodes/ai/a2a_backup.py +1807 -0
- kailash/nodes/ai/hybrid_search.py +972 -0
- kailash/nodes/ai/semantic_memory.py +558 -0
- kailash/nodes/ai/streaming_analytics.py +947 -0
- kailash/workflow/builder.py +4 -4
- {kailash-0.8.3.dist-info → kailash-0.8.4.dist-info}/METADATA +2 -1
- {kailash-0.8.3.dist-info → kailash-0.8.4.dist-info}/RECORD +14 -10
- {kailash-0.8.3.dist-info → kailash-0.8.4.dist-info}/WHEEL +0 -0
- {kailash-0.8.3.dist-info → kailash-0.8.4.dist-info}/entry_points.txt +0 -0
- {kailash-0.8.3.dist-info → kailash-0.8.4.dist-info}/licenses/LICENSE +0 -0
- {kailash-0.8.3.dist-info → kailash-0.8.4.dist-info}/top_level.txt +0 -0
kailash/__init__.py
CHANGED
kailash/nodes/ai/__init__.py
CHANGED
@@ -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",
|