kailash 0.8.4__py3-none-any.whl → 0.8.6__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.
Files changed (99) hide show
  1. kailash/__init__.py +5 -11
  2. kailash/channels/__init__.py +2 -1
  3. kailash/channels/mcp_channel.py +23 -4
  4. kailash/cli/__init__.py +11 -1
  5. kailash/cli/validate_imports.py +202 -0
  6. kailash/cli/validation_audit.py +570 -0
  7. kailash/core/actors/supervisor.py +1 -1
  8. kailash/core/resilience/bulkhead.py +15 -5
  9. kailash/core/resilience/circuit_breaker.py +74 -1
  10. kailash/core/resilience/health_monitor.py +433 -33
  11. kailash/edge/compliance.py +33 -0
  12. kailash/edge/consistency.py +609 -0
  13. kailash/edge/coordination/__init__.py +30 -0
  14. kailash/edge/coordination/global_ordering.py +355 -0
  15. kailash/edge/coordination/leader_election.py +217 -0
  16. kailash/edge/coordination/partition_detector.py +296 -0
  17. kailash/edge/coordination/raft.py +485 -0
  18. kailash/edge/discovery.py +63 -1
  19. kailash/edge/migration/__init__.py +19 -0
  20. kailash/edge/migration/edge_migration_service.py +384 -0
  21. kailash/edge/migration/edge_migrator.py +832 -0
  22. kailash/edge/monitoring/__init__.py +21 -0
  23. kailash/edge/monitoring/edge_monitor.py +736 -0
  24. kailash/edge/prediction/__init__.py +10 -0
  25. kailash/edge/prediction/predictive_warmer.py +591 -0
  26. kailash/edge/resource/__init__.py +102 -0
  27. kailash/edge/resource/cloud_integration.py +796 -0
  28. kailash/edge/resource/cost_optimizer.py +949 -0
  29. kailash/edge/resource/docker_integration.py +919 -0
  30. kailash/edge/resource/kubernetes_integration.py +893 -0
  31. kailash/edge/resource/platform_integration.py +913 -0
  32. kailash/edge/resource/predictive_scaler.py +959 -0
  33. kailash/edge/resource/resource_analyzer.py +824 -0
  34. kailash/edge/resource/resource_pools.py +610 -0
  35. kailash/integrations/dataflow_edge.py +261 -0
  36. kailash/mcp_server/registry_integration.py +1 -1
  37. kailash/mcp_server/server.py +351 -8
  38. kailash/mcp_server/transports.py +305 -0
  39. kailash/middleware/gateway/event_store.py +1 -0
  40. kailash/monitoring/__init__.py +18 -0
  41. kailash/monitoring/alerts.py +646 -0
  42. kailash/monitoring/metrics.py +677 -0
  43. kailash/nodes/__init__.py +2 -0
  44. kailash/nodes/ai/semantic_memory.py +2 -2
  45. kailash/nodes/base.py +622 -1
  46. kailash/nodes/code/python.py +44 -3
  47. kailash/nodes/data/async_sql.py +42 -20
  48. kailash/nodes/edge/__init__.py +36 -0
  49. kailash/nodes/edge/base.py +240 -0
  50. kailash/nodes/edge/cloud_node.py +710 -0
  51. kailash/nodes/edge/coordination.py +239 -0
  52. kailash/nodes/edge/docker_node.py +825 -0
  53. kailash/nodes/edge/edge_data.py +582 -0
  54. kailash/nodes/edge/edge_migration_node.py +396 -0
  55. kailash/nodes/edge/edge_monitoring_node.py +421 -0
  56. kailash/nodes/edge/edge_state.py +673 -0
  57. kailash/nodes/edge/edge_warming_node.py +393 -0
  58. kailash/nodes/edge/kubernetes_node.py +652 -0
  59. kailash/nodes/edge/platform_node.py +766 -0
  60. kailash/nodes/edge/resource_analyzer_node.py +378 -0
  61. kailash/nodes/edge/resource_optimizer_node.py +501 -0
  62. kailash/nodes/edge/resource_scaler_node.py +397 -0
  63. kailash/nodes/governance.py +410 -0
  64. kailash/nodes/ports.py +676 -0
  65. kailash/nodes/rag/registry.py +1 -1
  66. kailash/nodes/transaction/distributed_transaction_manager.py +48 -1
  67. kailash/nodes/transaction/saga_state_storage.py +2 -1
  68. kailash/nodes/validation.py +8 -8
  69. kailash/runtime/local.py +374 -1
  70. kailash/runtime/validation/__init__.py +12 -0
  71. kailash/runtime/validation/connection_context.py +119 -0
  72. kailash/runtime/validation/enhanced_error_formatter.py +202 -0
  73. kailash/runtime/validation/error_categorizer.py +164 -0
  74. kailash/runtime/validation/import_validator.py +446 -0
  75. kailash/runtime/validation/metrics.py +380 -0
  76. kailash/runtime/validation/performance.py +615 -0
  77. kailash/runtime/validation/suggestion_engine.py +212 -0
  78. kailash/testing/fixtures.py +2 -2
  79. kailash/utils/data_paths.py +74 -0
  80. kailash/workflow/builder.py +413 -8
  81. kailash/workflow/contracts.py +418 -0
  82. kailash/workflow/edge_infrastructure.py +369 -0
  83. kailash/workflow/mermaid_visualizer.py +3 -1
  84. kailash/workflow/migration.py +3 -3
  85. kailash/workflow/templates.py +6 -6
  86. kailash/workflow/type_inference.py +669 -0
  87. kailash/workflow/validation.py +134 -3
  88. {kailash-0.8.4.dist-info → kailash-0.8.6.dist-info}/METADATA +52 -34
  89. {kailash-0.8.4.dist-info → kailash-0.8.6.dist-info}/RECORD +93 -42
  90. kailash/nexus/__init__.py +0 -21
  91. kailash/nexus/cli/__init__.py +0 -5
  92. kailash/nexus/cli/__main__.py +0 -6
  93. kailash/nexus/cli/main.py +0 -176
  94. kailash/nexus/factory.py +0 -413
  95. kailash/nexus/gateway.py +0 -545
  96. {kailash-0.8.4.dist-info → kailash-0.8.6.dist-info}/WHEEL +0 -0
  97. {kailash-0.8.4.dist-info → kailash-0.8.6.dist-info}/entry_points.txt +0 -0
  98. {kailash-0.8.4.dist-info → kailash-0.8.6.dist-info}/licenses/LICENSE +0 -0
  99. {kailash-0.8.4.dist-info → kailash-0.8.6.dist-info}/top_level.txt +0 -0
@@ -116,9 +116,11 @@ See Also:
116
116
  import re
117
117
  from dataclasses import dataclass
118
118
  from enum import Enum
119
- from typing import Any
119
+ from typing import TYPE_CHECKING, Any
120
120
 
121
- from . import Workflow
121
+ # Note: Workflow import moved to individual methods to avoid circular imports
122
+ if TYPE_CHECKING:
123
+ from kailash.workflow.graph import Workflow
122
124
 
123
125
 
124
126
  class IssueSeverity(Enum):
@@ -143,6 +145,135 @@ class ValidationIssue:
143
145
  documentation_link: str | None = None
144
146
 
145
147
 
148
+ class ParameterDeclarationValidator:
149
+ """Validator for node parameter declarations - detects silent parameter dropping issues.
150
+
151
+ This validator addresses the critical issue where nodes with empty get_parameters()
152
+ methods silently receive no workflow parameters, leading to debugging issues.
153
+
154
+ Key validations:
155
+ 1. Empty parameter declarations (PAR001 - WARNING at build time, enforced at runtime)
156
+ 2. Undeclared parameter access attempts (PAR002 - WARNING)
157
+ 3. Parameter type validation issues (PAR003 - WARNING)
158
+ 4. Missing required parameters in workflow (PAR004 - WARNING at build time, ERROR at runtime)
159
+
160
+ Usage:
161
+ validator = ParameterDeclarationValidator()
162
+ issues = validator.validate_node_parameters(node_instance, workflow_params)
163
+ """
164
+
165
+ validation_code = "PAR"
166
+
167
+ def validate_node_parameters(
168
+ self, node_instance, workflow_parameters: dict[str, Any]
169
+ ) -> list[ValidationIssue]:
170
+ """Check parameter declarations against workflow usage.
171
+
172
+ Args:
173
+ node_instance: Node instance to validate
174
+ workflow_parameters: Parameters provided by workflow
175
+
176
+ Returns:
177
+ List of ValidationIssue objects for any problems found
178
+ """
179
+ issues = []
180
+
181
+ try:
182
+ declared_params = node_instance.get_parameters()
183
+ except Exception as e:
184
+ issues.append(
185
+ ValidationIssue(
186
+ severity=IssueSeverity.ERROR,
187
+ category="parameter_declaration",
188
+ code="PAR000",
189
+ message=f"Node {node_instance.__class__.__name__} get_parameters() failed: {e}",
190
+ suggestion="Fix get_parameters() method implementation",
191
+ documentation_link="sdk-users/7-gold-standards/enterprise-parameter-passing-gold-standard.md",
192
+ )
193
+ )
194
+ return issues
195
+
196
+ # Critical: Empty parameter declarations (addresses gold standard issue #2)
197
+ # For backwards compatibility, downgrade to WARNING at build time
198
+ if not declared_params and workflow_parameters:
199
+ workflow_param_names = list(workflow_parameters.keys())
200
+ issues.append(
201
+ ValidationIssue(
202
+ severity=IssueSeverity.WARNING,
203
+ category="parameter_declaration",
204
+ code="PAR001",
205
+ message=f"Node {node_instance.__class__.__name__} declares no parameters but workflow provides {workflow_param_names}",
206
+ suggestion="Add parameters to get_parameters() method - SDK only injects explicitly declared parameters",
207
+ documentation_link="sdk-users/7-gold-standards/enterprise-parameter-passing-gold-standard.md#parameter-declaration-security",
208
+ )
209
+ )
210
+
211
+ # Security: Undeclared parameter access attempts
212
+ if declared_params and workflow_parameters:
213
+ undeclared = set(workflow_parameters.keys()) - set(declared_params.keys())
214
+ if undeclared:
215
+ issues.append(
216
+ ValidationIssue(
217
+ severity=IssueSeverity.WARNING,
218
+ category="parameter_declaration",
219
+ code="PAR002",
220
+ message=f"Workflow parameters {list(undeclared)} not declared in get_parameters() - will be ignored by SDK",
221
+ suggestion="Add missing parameters to get_parameters() or remove from workflow configuration",
222
+ )
223
+ )
224
+
225
+ # Validation: Parameter type issues
226
+ if declared_params:
227
+ for param_name, param_def in declared_params.items():
228
+ if not hasattr(param_def, "type") or param_def.type is None:
229
+ issues.append(
230
+ ValidationIssue(
231
+ severity=IssueSeverity.WARNING,
232
+ category="parameter_declaration",
233
+ code="PAR003",
234
+ message=f"Parameter '{param_name}' missing type definition",
235
+ suggestion=f"Add type field to NodeParameter: NodeParameter(name='{param_name}', type=str, ...)",
236
+ )
237
+ )
238
+
239
+ # Check for required parameters without defaults
240
+ if (
241
+ getattr(param_def, "required", False)
242
+ and param_name not in workflow_parameters
243
+ ):
244
+ if getattr(param_def, "default", None) is None:
245
+ # For backwards compatibility, missing required parameters are WARNING at build time
246
+ # They'll still cause runtime errors when the node executes
247
+ issues.append(
248
+ ValidationIssue(
249
+ severity=IssueSeverity.WARNING,
250
+ category="parameter_declaration",
251
+ code="PAR004",
252
+ message=f"Required parameter '{param_name}' not provided by workflow and has no default",
253
+ suggestion=f"Either provide '{param_name}' in workflow configuration or add default value",
254
+ )
255
+ )
256
+
257
+ return issues
258
+
259
+ def validate_workflow_node_parameters(self, workflow) -> list[ValidationIssue]:
260
+ """Validate parameter declarations for all nodes in a workflow.
261
+
262
+ Args:
263
+ workflow: Workflow instance to validate
264
+
265
+ Returns:
266
+ List of all parameter declaration issues across the workflow
267
+ """
268
+ all_issues = []
269
+
270
+ # This would need workflow.nodes to be iterable with node instances
271
+ # For now, we'll focus on the single-node validation method
272
+ # Implementation would depend on workflow structure
273
+
274
+ return all_issues
275
+
276
+
146
277
  class CycleLinter:
147
278
  """
148
279
  Comprehensive linter for cyclic workflows.
@@ -151,7 +282,7 @@ class CycleLinter:
151
282
  and potential problems specific to cyclic execution.
152
283
  """
153
284
 
154
- def __init__(self, workflow: Workflow):
285
+ def __init__(self, workflow: "Workflow"):
155
286
  """
156
287
  Initialize linter with target workflow.
157
288
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kailash
3
- Version: 0.8.4
3
+ Version: 0.8.6
4
4
  Summary: Python SDK for the Kailash container-node architecture
5
5
  Home-page: https://github.com/integrum/kailash-python-sdk
6
6
  Author: Integrum
@@ -116,17 +116,18 @@ Dynamic: requires-python
116
116
 
117
117
  ---
118
118
 
119
- ## 🔥 Latest Release: v0.8.1 (January 17, 2025)
119
+ ## 🔥 Latest Release: v0.8.5 (January 20, 2025)
120
120
 
121
- **Complete App Framework & PyPI Integration**
121
+ **Architecture Cleanup & Enterprise Security**
122
122
 
123
- - 🚀 **Complete App Framework**: DataFlow, Nexus, AI Registry, and User Management platforms
124
- - 📦 **PyPI Integration**: All packages available with proper extras support
125
- - 🏢 **Enterprise Ready**: Zero-config database operations and multi-channel deployment
126
- - **Performance Breakthrough**: 11x faster test execution with 100% pass rate
127
- - 🧪 **Testing Excellence**: 2,400+ tests with comprehensive Docker integration
123
+ - 🏗️ **Architecture Clarity**: Removed confusing `src/kailash/nexus` module
124
+ - 🔒 **Connection Validation**: Enterprise-grade parameter validation with type safety
125
+ - 🌐 **Edge Computing**: 50+ new nodes for geo-distributed infrastructure
126
+ - 📊 **Advanced Monitoring**: AlertManager with proactive threshold monitoring
127
+ - 🚀 **Performance**: <1ms validation overhead with intelligent caching
128
+ - ✅ **Breaking Changes**: See [migration guide](sdk-users/6-reference/changelogs/releases/v0.8.5-2025-07-20.md)
128
129
 
129
- [Full Changelog](changelogs/releases/v0.8.1-2025-01-17.md) | [PyPI Packages](https://pypi.org/project/kailash/)
130
+ [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.8.5-2025-07-20.md) | [PyPI Packages](https://pypi.org/project/kailash/0.8.5/)
130
131
 
131
132
  ## 🎯 What Makes Kailash Different
132
133
 
@@ -145,10 +146,12 @@ Not just a toolkit - complete production-ready applications built on enterprise-
145
146
  - **100% test pass rate** across 2,400+ tests
146
147
 
147
148
  ### 🤖 **AI-First Architecture**
149
+ - **A2A Google Protocol** for enterprise multi-agent coordination
148
150
  - **Real MCP execution** by default for all AI agents
149
151
  - **47+ specialized RAG nodes** for document processing
150
- - **Self-organizing agent pools** with intelligent coordination
151
- - **Complete LLM integration** across all platforms
152
+ - **Semantic memory systems** with context-aware retrieval
153
+ - **Hybrid search algorithms** for intelligent agent discovery
154
+ - **Self-organizing agent pools** with advanced coordination patterns
152
155
 
153
156
  ## 🏗️ Project Architecture
154
157
 
@@ -246,31 +249,32 @@ app.start()
246
249
  # - MCP: AI agents can call process_data tool
247
250
  ```
248
251
 
249
- ### Core SDK: Advanced Workflows
252
+ ### A2A Multi-Agent Coordination
250
253
 
251
254
  ```python
252
255
  from kailash.workflow.builder import WorkflowBuilder
253
256
  from kailash.runtime.local import LocalRuntime
254
257
 
255
- # Build enterprise workflow
258
+ # Build A2A coordination workflow
256
259
  workflow = WorkflowBuilder()
257
- workflow.add_node("LLMAgentNode", "ai_agent", {
258
- "model": "gpt-4",
259
- "use_real_mcp": True # Real MCP execution by default
260
+ workflow.add_node("A2ACoordinatorNode", "coordinator", {
261
+ "use_google_protocol": True,
262
+ "enable_semantic_memory": True,
263
+ "delegation_strategy": "skill_based"
264
+ })
265
+ workflow.add_node("HybridSearchNode", "discovery", {
266
+ "strategies": ["semantic", "keyword", "skill_based"],
267
+ "adaptive_optimization": True
260
268
  })
261
- workflow.add_node("AsyncSQLDatabaseNode", "database", {
262
- "connection_string": "postgresql://...",
263
- "query": "SELECT * FROM customers WHERE risk_score > $1",
264
- "parameter_types": ["DECIMAL"] # PostgreSQL type inference
269
+ workflow.add_node("SemanticMemoryNode", "memory", {
270
+ "embedding_provider": "openai",
271
+ "memory_type": "long_term",
272
+ "context_window": 8192
265
273
  })
266
274
 
267
- # Add cyclic optimization
268
- cycle = workflow.create_cycle("optimization")
269
- cycle.connect("processor", "evaluator") \
270
- .connect("evaluator", "processor") \
271
- .max_iterations(50) \
272
- .converge_when("quality > 0.95") \
273
- .build()
275
+ # Connect for intelligent agent coordination
276
+ workflow.add_connection("coordinator", "discovery", "agent_request", "search_query")
277
+ workflow.add_connection("discovery", "memory", "agent_matches", "context")
274
278
 
275
279
  # Execute with enterprise monitoring
276
280
  runtime = LocalRuntime()
@@ -309,12 +313,16 @@ results, run_id = runtime.execute(workflow.build())
309
313
  ### Core Categories
310
314
  - **Data Nodes**: CSVReaderNode, AsyncSQLDatabaseNode, QueryBuilderNode, QueryCacheNode
311
315
  - **AI Nodes**: LLMAgentNode, IterativeLLMAgentNode, EmbeddingGeneratorNode, SelfOrganizingAgentNode
316
+ - **A2A Nodes**: A2ACoordinatorNode, HybridSearchNode, AdaptiveSearchNode, SemanticMemoryNode, StreamingAnalyticsNode
312
317
  - **RAG Nodes**: 47+ specialized nodes for document processing and retrieval
313
318
  - **Security Nodes**: ThreatDetectionNode, AuditLogNode, AccessControlManager
314
319
  - **Monitoring Nodes**: TransactionMetricsNode, DeadlockDetectorNode, PerformanceAnomalyNode
315
320
  - **Transaction Nodes**: DistributedTransactionManagerNode, SagaCoordinatorNode
316
321
 
317
322
  ### Advanced Features
323
+ - **A2A Communication**: Google Protocol-based multi-agent coordination
324
+ - **Semantic Memory**: Long-term memory management for agent interactions
325
+ - **Hybrid Search**: Multi-strategy agent discovery and matching
318
326
  - **Cyclic Workflows**: CycleBuilder API with convergence detection
319
327
  - **Distributed Transactions**: Automatic Saga/2PC pattern selection
320
328
  - **Real-time Monitoring**: WebSocket streaming with performance metrics
@@ -336,7 +344,7 @@ results, run_id = runtime.execute(workflow.build())
336
344
 
337
345
  ## 🚀 Applications Built with Kailash
338
346
 
339
- ### 1. DataFlow - Zero-Config Database Platform
347
+ ### 1. DataFlow - Zero-Config Database Platform (v0.3.1)
340
348
  ```bash
341
349
  pip install kailash-dataflow
342
350
  ```
@@ -344,8 +352,9 @@ pip install kailash-dataflow
344
352
  - **Redis caching** with enterprise-grade invalidation
345
353
  - **Automatic API generation** with OpenAPI documentation
346
354
  - **4 production examples** with complete deployment guides
355
+ - **Latest**: v0.3.1 - Enhanced transaction support and schema management
347
356
 
348
- ### 2. Nexus - Multi-Channel Platform
357
+ ### 2. Nexus - Multi-Channel Platform (v1.0.3)
349
358
  ```bash
350
359
  pip install kailash-nexus
351
360
  ```
@@ -353,6 +362,7 @@ pip install kailash-nexus
353
362
  - **Enterprise orchestration** with multi-tenancy
354
363
  - **Session management** with cross-channel synchronization
355
364
  - **105 tests** with comprehensive validation
365
+ - **Latest**: v1.0.3 - Production-ready release with enhanced stability
356
366
 
357
367
  ### 3. AI Registry - Advanced RAG Platform
358
368
  ```bash
@@ -413,8 +423,8 @@ pytest tests/e2e/ --timeout=10
413
423
 
414
424
  ### For Users
415
425
  - **[SDK Users Guide](sdk-users/)**: Complete workflow development guide
416
- - **[Node Selection Guide](sdk-users/nodes/node-selection-guide.md)**: Smart node selection with decision trees
417
- - **[Enterprise Patterns](sdk-users/enterprise/)**: Production deployment patterns
426
+ - **[Node Selection Guide](sdk-users/2-core-concepts/nodes/node-selection-guide.md)**: Smart node selection with decision trees
427
+ - **[Enterprise Patterns](sdk-users/5-enterprise/)**: Production deployment patterns
418
428
  - **[API Documentation](https://integrum.github.io/kailash-python-sdk)**: Complete API reference
419
429
 
420
430
  ### For Contributors
@@ -423,9 +433,9 @@ pytest tests/e2e/ --timeout=10
423
433
  - **[Testing Guide](tests/README.md)**: 3-tier testing strategy
424
434
 
425
435
  ### Quick References
426
- - **[Cheatsheet](sdk-users/cheatsheet/)**: 53 copy-paste patterns
427
- - **[Common Mistakes](sdk-users/validation/common-mistakes.md)**: Error patterns and solutions
428
- - **[Performance Guide](sdk-users/performance/)**: Optimization patterns
436
+ - **[Cheatsheet](sdk-users/2-core-concepts/cheatsheet/)**: 53 copy-paste patterns
437
+ - **[Common Mistakes](sdk-users/2-core-concepts/validation/common-mistakes.md)**: Error patterns and solutions
438
+ - **[Performance Guide](sdk-users/5-enterprise/performance/)**: Optimization patterns
429
439
 
430
440
  ## 🚢 Production Deployment
431
441
 
@@ -492,6 +502,14 @@ See [Contributing Guide](CONTRIBUTING.md) and [sdk-contributors/CLAUDE.md](sdk-c
492
502
 
493
503
  ## 📈 Project Status
494
504
 
505
+ ### ✅ v0.8.4 - A2A Google Protocol Enhancement
506
+ - **Advanced Agent Coordination**: A2ACoordinatorNode with Google Protocol patterns
507
+ - **Hybrid Search System**: Multi-strategy agent discovery and matching
508
+ - **Semantic Memory**: Long-term memory management for agent interactions
509
+ - **Real-time Analytics**: Streaming performance monitoring for A2A workflows
510
+ - **Backward Compatible**: Seamless integration with existing implementations
511
+ - **Production Ready**: Enterprise-grade multi-agent coordination patterns
512
+
495
513
  ### ✅ v0.8.1 - Complete App Framework
496
514
  - **Complete Application Framework**: DataFlow, Nexus, AI Registry, User Management
497
515
  - **PyPI Integration**: All packages available with proper extras support
@@ -1,4 +1,4 @@
1
- kailash/__init__.py,sha256=4SpRoVVF_snoxLtYbtDvOabxuCycFwfC1mPB_9ies1I,2878
1
+ kailash/__init__.py,sha256=OnMcVOw8TgoGUth6Z_dyWPrlXQV4pECdOA5GYsfelEI,2628
2
2
  kailash/__main__.py,sha256=vr7TVE5o16V6LsTmRFKG6RDKUXHpIWYdZ6Dok2HkHnI,198
3
3
  kailash/access_control.py,sha256=MjKtkoQ2sg1Mgfe7ovGxVwhAbpJKvaepPWr8dxOueMA,26058
4
4
  kailash/access_control_abac.py,sha256=FPfa_8PuDP3AxTjdWfiH3ntwWO8NodA0py9W8SE5dno,30263
@@ -17,15 +17,17 @@ kailash/api/gateway.py,sha256=BVEKyC53JRnBkOyg3YXAPGDzLm3zon0vbO1xiM6yNxU,12540
17
17
  kailash/api/mcp_integration.py,sha256=xY5VjYXh4bFuNyyWBXEuTm4jjwUn8_9QxZpa4hh6a0Q,14521
18
18
  kailash/api/studio.py,sha256=8Gj3R3p_-EpJerkWYLyrqVzJprKOQmTmK-1EgiLoXMc,34892
19
19
  kailash/api/workflow_api.py,sha256=S1O_PRtTo2SSk47iUh4-uTh0WY1Tjbl1Gt54QIOLDmE,14330
20
- kailash/channels/__init__.py,sha256=DP3PxbGDRCLrJkr6gGf1BBJ0MaHsfp_zUSbkyc04ieE,610
20
+ kailash/channels/__init__.py,sha256=9YpGEpFbNgZ4Fp8fG3F4hEX9X94UR-xbHAQM6b0O1z8,642
21
21
  kailash/channels/api_channel.py,sha256=stuJxNJRUobzj1CavwsHWVZWr2kYqyVLjv_ynt6Wy6A,14541
22
22
  kailash/channels/base.py,sha256=8-cUYAVMlO67BMZCZscShy0FPYAK31s9bxk0JXA9wIM,7825
23
23
  kailash/channels/cli_channel.py,sha256=C7ctIb5V4e6T1Ksu5MPfP0rKOCEciMzOFhjrM9BvRmY,23564
24
24
  kailash/channels/event_router.py,sha256=matl4yttgQa3Vl1HtrAUfNvJ-kfnr4pgP8tMHSDYkSM,16632
25
- kailash/channels/mcp_channel.py,sha256=KZ8JtxMRUiwy0ecYWYdM6YSj7YuI50obXCRg0NdsGj8,22767
25
+ kailash/channels/mcp_channel.py,sha256=V_BqYXHFb26V_8C6XOasgGZiDxLyN-BiRi5hsBgryNU,23736
26
26
  kailash/channels/session.py,sha256=4ZEutfyQ3fhBlBjXa5e32ZL2ZqEuQKwbAk0DGu00X1A,13068
27
- kailash/cli/__init__.py,sha256=kJaqsBp3fRmagJhqA6LMwMbEa_Vkz93hIPH3W5Mn5r0,97
27
+ kailash/cli/__init__.py,sha256=TvNjX0Q-2IxdWeh6w8rkqyONuFbSleStlRF8b-Aa8Iw,302
28
28
  kailash/cli/commands.py,sha256=lv1S1uB0JQE4tiQCJIa1HCbjYDbFE9KwcK3M1jRtRU4,18168
29
+ kailash/cli/validate_imports.py,sha256=ebmruTzNyy_k9EGoXunO_7rntcoqH88lkbN6XyFtZXE,6093
30
+ kailash/cli/validation_audit.py,sha256=0WBzOdh1pkaqYm011bpnumyMf30blvPzq9_nsUQoGno,20308
29
31
  kailash/client/__init__.py,sha256=WNR39t4O6TDQLI14uR_MjQpLza2c6rU3YkQCXcGCiSU,293
30
32
  kailash/client/enhanced_client.py,sha256=trcDWQsON0Hphj14WozVMbfU7HKuxauknzDfoy1fTlo,9431
31
33
  kailash/config/__init__.py,sha256=9qNwtvXAVV-KkHbuL1ZbtC6yXDtowH4YoFiOP-Qbe-w,638
@@ -33,27 +35,50 @@ kailash/config/database_config.py,sha256=rdlqIP9WUzC0kvAdSjno1LMpu_bEy2v5FgFdgJy
33
35
  kailash/core/actors/__init__.py,sha256=o8CrwZRTPW5uB3UZiiFtz34n1Q-XBoKNwTz5NMTDQgA,433
34
36
  kailash/core/actors/adaptive_pool_controller.py,sha256=tque9heLsLwjrNlM1wZSAYi1RInv19Z3HTjbozc9XtY,22484
35
37
  kailash/core/actors/connection_actor.py,sha256=M8fOX1a3jvH5PUkfQyk0eBJqCk0SD9KGZCw0TXLON_o,18979
36
- kailash/core/actors/supervisor.py,sha256=7_YXm9o4O_xBs5YxsDFt7RjzaMvTbKcK-jd4KPmSt1M,11968
38
+ kailash/core/actors/supervisor.py,sha256=GaTbRRA0REHNnsn0a8NXao-aj9Eh8KkZt6H2YJm7I4w,11975
37
39
  kailash/core/ml/__init__.py,sha256=eaD-bmoxMXtwwtKWePsoX1IkcpysX0bMAGyMR7jaAqI,64
38
40
  kailash/core/ml/query_patterns.py,sha256=4wV1pBOwUiK80UTKuMXSoRgR0pojtjg2BMNoa5qWpc0,20290
39
41
  kailash/core/monitoring/__init__.py,sha256=Qua4i50JYUQcRkWHy1wGyuXGqzqsDVMmdPtud746xts,371
40
42
  kailash/core/monitoring/connection_metrics.py,sha256=fvFyHOgMU5lgRB2EB7d-D_F5XERjlmcGAfkrIL0I_OQ,16805
41
43
  kailash/core/optimization/__init__.py,sha256=FY5SLLNedH0_aawLYdXHj2rsGdBaaB49QuJ_R9ctHOE,65
42
44
  kailash/core/resilience/__init__.py,sha256=nYfMU_hK0CHeK_ZZGZWM3oeI2YjcNg5Wop7bnjPt28c,364
43
- kailash/core/resilience/bulkhead.py,sha256=Op02MjnucieSsJ5CIPHlONEJfP36DRGKn6L9nxYOpR8,17202
44
- kailash/core/resilience/circuit_breaker.py,sha256=uL_jaY4xAhHAi1kYHe6qyVZCG0FBS08EmWYBM-5Jrew,18294
45
- kailash/core/resilience/health_monitor.py,sha256=w-Pb-hmQO3HA5-UxRA8qHv3PQR97ipwUh7eMcjnVd5E,20164
45
+ kailash/core/resilience/bulkhead.py,sha256=PNdOowKkSGu7SJEiC6kOvaf8zPFKOipyuRjrKQP8EBI,17798
46
+ kailash/core/resilience/circuit_breaker.py,sha256=3b6oAP-W_xLzGhoSebJrHAYm7tCxnXgm8LCAfpoyLQ8,21095
47
+ kailash/core/resilience/health_monitor.py,sha256=r-r35QZx7xmpR8cxVUPynY85CkD37fhrOE89KiRShfI,35655
46
48
  kailash/database/__init__.py,sha256=keUIl-BhRMSR7ohW4kojaEYCzKmeb_pb4IpWqDqfnOk,686
47
49
  kailash/database/execution_pipeline.py,sha256=1Y-iVXKPoCED3dRoQvOZe1lQyff92NJ__q77NPI0CRQ,16453
48
50
  kailash/edge/__init__.py,sha256=-jhM4xaDAUCbwrq6jJjRCdlf49XDULVTcvfsUiqz_qg,447
49
- kailash/edge/compliance.py,sha256=tUiKiib7FjNtZ62ThQIRhxkehOddndTGLu-Y4He7iRQ,31951
50
- kailash/edge/discovery.py,sha256=EJqZ4t3quXxaueVHzqXwYd5_RrlCPRlSREqFxh30kP4,27549
51
+ kailash/edge/compliance.py,sha256=bm3HhtWN-5iIdKoly8jKKp7Xq0Do1VKu0yzGmyxlTOk,33138
52
+ kailash/edge/consistency.py,sha256=geAbufedRa2k6cfBV9ARGl0JeynQw0J_xz4yefxukWw,19947
53
+ kailash/edge/discovery.py,sha256=7Z3a4QA_9DA6ziaH_NeQUtQxYVZ3lZbnfegi9JUdC5w,29991
51
54
  kailash/edge/location.py,sha256=ZrG4CqN-taZFo9VDLvZ2z1lNiTHgXcZvzBJS9meXY8k,19717
55
+ kailash/edge/coordination/__init__.py,sha256=XkVuFMfH3HpDkTLuUcH4UHkWvp60DNYiMajkWv_eKio,736
56
+ kailash/edge/coordination/global_ordering.py,sha256=Je1bb3blodurs6cqX4WQJdH6JkgnoZfxdJc9ZCHtwq0,11375
57
+ kailash/edge/coordination/leader_election.py,sha256=hOEcuyf9Gk5sVf9RtseiqIjdylyEU4f4JL72b0Z6wxU,7473
58
+ kailash/edge/coordination/partition_detector.py,sha256=obS0_fgfiz8bW9v_jevjf7FcOOE6IxvfTF5s7_ecGBk,10116
59
+ kailash/edge/coordination/raft.py,sha256=m6CMUs3zn3_UmveNqrBM2mjsIy6vJw0TOQGr04FLghY,15365
60
+ kailash/edge/migration/__init__.py,sha256=FwRZ7RFygjZiU5S_c9AnOaDeSE54vTSIqycgTTP5uBU,344
61
+ kailash/edge/migration/edge_migration_service.py,sha256=uSwDSPvm6ZtHwFFGBy4P2DxYR-V1AeKvWj5MGAfV0qk,13449
62
+ kailash/edge/migration/edge_migrator.py,sha256=uw0hFD0ye1QskC4HRlpmdtywhsHpxRo_N3Mk9wD1kEc,28958
63
+ kailash/edge/monitoring/__init__.py,sha256=ySeVSysyF1v8Kn7nkoqSHdwp2_3CiAyTBZUbScpE-pg,324
64
+ kailash/edge/monitoring/edge_monitor.py,sha256=EKv9bf48Zd7o8tm5F9rB96VXlo5HDZm0vW7LxKc1yN4,25779
65
+ kailash/edge/prediction/__init__.py,sha256=Rpwznv-2RMLOoWiXbPfqdsO1tk_xU_Zvviiz46XHqYw,252
66
+ kailash/edge/prediction/predictive_warmer.py,sha256=gXq3Lr3wz-yvynLtth_unVEa_hSXDLhQbtmRFBK3QiM,21255
67
+ kailash/edge/resource/__init__.py,sha256=x-9VYfGmIIqWrFOnhdpTp-ZtbM9PL19ktpVX90kINEw,2355
68
+ kailash/edge/resource/cloud_integration.py,sha256=0zBBuWKaN5yqoBGLj5c5YcfmLwxCkjc0R3uz3BbPBNs,28348
69
+ kailash/edge/resource/cost_optimizer.py,sha256=pPp985nMp6r4MzlR0k8D5PyNEKtkV7EIKkxwfIcZXiA,32916
70
+ kailash/edge/resource/docker_integration.py,sha256=2CnhKF5P4cgwgk-r01Nr3IObJPTLvmk_Yu757Uu8vNg,30375
71
+ kailash/edge/resource/kubernetes_integration.py,sha256=g703nAN3rVQK65lcphnth_6VOZHLo6FGprUYVgc5poQ,33123
72
+ kailash/edge/resource/platform_integration.py,sha256=Rdc3bqz1MYFzPNSKKTkKwNGkl5-HzjvG0xtzwblDy1o,33522
73
+ kailash/edge/resource/predictive_scaler.py,sha256=FxoYIq1Xd6HOilWydOlxWn0jCIzKcaJqrxePw_YQH2Y,32728
74
+ kailash/edge/resource/resource_analyzer.py,sha256=tcQM2uS_b985fY_-YOOhN_DiDjjVGo1k5c1GFHHE9P8,30043
75
+ kailash/edge/resource/resource_pools.py,sha256=YlKa3d1MMCw2lOv7gz-KIkOg-uLfFbW_uy6nwo3mefU,20107
52
76
  kailash/gateway/__init__.py,sha256=zh2uCsDHi82pZ_tGJklsH_FS-Mx9V31r0hkxk48CM-g,927
53
77
  kailash/gateway/api.py,sha256=xpK8PIamsqQPpKAJwacyV7RA_Snjv2pc_0ljnnU9Oy4,9534
54
78
  kailash/gateway/enhanced_gateway.py,sha256=IlN1XV01FQrF4rGcq_z9LE4uUHAAAQoVsRNToXENen0,13399
55
79
  kailash/gateway/resource_resolver.py,sha256=IC1dceiKfjfUWToYCIBcrUapuR3LlDG6RJ4o7haLY10,7746
56
80
  kailash/gateway/security.py,sha256=kf4Quf6u7dqhs80fQQ982eHbRb4weDKG0DaYNeKntT4,7557
81
+ kailash/integrations/dataflow_edge.py,sha256=R3Is8JJZcqLNn4op7gidp1dtbT82oY5vn9tXVAWLOrg,8994
57
82
  kailash/mcp_server/__init__.py,sha256=AzrCEat5gdl9Nes8xOs7D4Wj3HpGlms3xLbOrx2diPA,8791
58
83
  kailash/mcp_server/advanced_features.py,sha256=76dmttUa0M61ReBbgexf7Igu4CXaXS-CUmFhvTDjKyI,30673
59
84
  kailash/mcp_server/ai_registry_server.py,sha256=vMNMvWLegKBVp7YAHVKgltWa2vTXKNvV-_Ni_z1argM,28973
@@ -64,9 +89,9 @@ kailash/mcp_server/discovery.py,sha256=D8vcwVkbgQCNp0_BlkGeU_dnqgIXN2g0s3_GpndlQ
64
89
  kailash/mcp_server/errors.py,sha256=_lycwudWP_AJ_KwLO5N3VCKbG1ikfaTyzA2PBF8UAYU,21181
65
90
  kailash/mcp_server/oauth.py,sha256=GFC2O2ueiTTI6V-91Huevhc3K8CxrHe22knuHfuCTqY,56493
66
91
  kailash/mcp_server/protocol.py,sha256=gXeJ-GvSf39WymfS6433SqLKBA40PdeDoBQqu7DUbJE,35129
67
- kailash/mcp_server/registry_integration.py,sha256=Iv_vg-0gFjOFBj-kqqnCD-AnnDcA35Zu67mnCoylVJQ,19787
68
- kailash/mcp_server/server.py,sha256=5pb5eIiB-qGi8UF-nL81D3mF8t066-O1_Q94GhLVplY,67441
69
- kailash/mcp_server/transports.py,sha256=wl7EbImvmBxjPvvPhRW4VJc6Xp9H3_upqFKL4UCFK7o,39289
92
+ kailash/mcp_server/registry_integration.py,sha256=B8CSLq_O1ea3cXrbVjC3bB_OFgHIP-KS9dk77mNM02I,19791
93
+ kailash/mcp_server/server.py,sha256=RQchBc-yaz5Mf_ZRrHukv8IGGgwKKXTg0hEtaVLGeo4,80246
94
+ kailash/mcp_server/transports.py,sha256=fBa7CTVYTDb0ZbBQTsZ2d8rKvcVuqBIteczq8eqarr4,49919
70
95
  kailash/mcp_server/servers/ai_registry.py,sha256=IdF_keUuJlMsvjLjSAykxxbm46K4qA7eCj7T-lYSrzk,10007
71
96
  kailash/mcp_server/utils/__init__.py,sha256=R20N-iiKXUPxc9MOh6vPO1vIfkPmwhEQ5KNFgGd4xSs,771
72
97
  kailash/mcp_server/utils/cache.py,sha256=qSQYSHqyZdjpP9J721gtqs_syBGDGW2rFU6FQmrEHGg,16748
@@ -103,24 +128,23 @@ kailash/middleware/gateway/checkpoint_manager.py,sha256=zF2ZnHYxQwXmG3d5g7Qwx9pW
103
128
  kailash/middleware/gateway/deduplicator.py,sha256=CblV3fwc7s4wg6KIvypwyNMYL5AuQi9EwtcxVOy64X8,13265
104
129
  kailash/middleware/gateway/durable_gateway.py,sha256=EsIgMNxS_no2W40AXDyE7FmVdnGNU26kBRC5rfnSzoQ,14626
105
130
  kailash/middleware/gateway/durable_request.py,sha256=SCnp-bF0tQX9oahr9reqcZjJ_YhyJkeYYl-un9rJ6lo,15437
106
- kailash/middleware/gateway/event_store.py,sha256=A3Kh2MhVVPbXWvjeo550SqEGPiJYyspAfu6Gv7UZzo4,16131
131
+ kailash/middleware/gateway/event_store.py,sha256=YbVw6gFfApspGbWR6MGj_iaiyHppRLCnxvSy96TWdTU,16205
107
132
  kailash/middleware/gateway/storage_backends.py,sha256=HJTi6zU6oBI3R3ffcm_U-Xp9qqb9yOHS7JbRawP8AV8,12974
108
133
  kailash/middleware/mcp/__init__.py,sha256=EdZB8zOMSBEEmudRzs8ksz9QZJYWQMEx7Tm1MOwIWnI,922
109
134
  kailash/middleware/mcp/client_integration.py,sha256=dY1RmX-g5E6JzUFuWxk7viuOYIh8bMwoUSvHQMVEsYk,18265
110
135
  kailash/middleware/mcp/enhanced_server.py,sha256=RUVS7jWHn0ma4F3F23UvuFwUdu7OkSsIRNQmGtkG9I8,18547
111
- kailash/nexus/__init__.py,sha256=zaOXOHmmxsDDuyVDA7P-EWkXHLsLHcnrZPSlNQ74M1k,463
112
- kailash/nexus/factory.py,sha256=oqtPJoVvwQUdafs_h92MDpjt6xSO1vNLZHizZ1-XLks,12296
113
- kailash/nexus/gateway.py,sha256=QzvJVFVmgNI_Z4VHIRpUQ9F8_HNrhINjAiJQ1kTpqJU,19105
114
- kailash/nexus/cli/__init__.py,sha256=XbGcZSytNg5lJCOZ981prJpzwTXYJcR6_d6Fw9cXUTo,106
115
- kailash/nexus/cli/__main__.py,sha256=GCIzeLFbdtBoRwfB1r0gxME078qd1e3IIFrGHHZQfAc,117
116
- kailash/nexus/cli/main.py,sha256=2GqJP5fvP8DgPaeWzOjAG9yS0CbDWhzEl_tI38jO3VQ,5550
117
- kailash/nodes/__init__.py,sha256=0uT1nGAIZNzk_tkQo1gmEEkroE8qiVWSjDv1hpoKqQA,1009
118
- kailash/nodes/base.py,sha256=LqxnXG1hl33GY4caZiOCshagq-FfHe_nDHVAww1Dkmg,57125
136
+ kailash/monitoring/__init__.py,sha256=C5WmkNpk_mmAScqMWiCfkUbjhM5W16dsnRnc3Ial-Uc,475
137
+ kailash/monitoring/alerts.py,sha256=eKX4ooPw1EicumPuswlR_nU18UgRETWvFg8FzCW5pVU,21416
138
+ kailash/monitoring/metrics.py,sha256=SiAnL3o6K0QaJHgfAuWBa-0pTkW5zymhuPEsj4bgOgM,22022
139
+ kailash/nodes/__init__.py,sha256=p2KSo0dyUBCLClU123qpQ0tyv5S_36PTxosNyW58nyY,1031
140
+ kailash/nodes/base.py,sha256=Mre45ucevCJo8y9gt1i_Ed4QsmemGeAZgA1jfBuTIbI,81870
119
141
  kailash/nodes/base_async.py,sha256=whxepCiVplrltfzEQuabmnGCpEV5WgfqwgxbLdCyiDk,8864
120
142
  kailash/nodes/base_cycle_aware.py,sha256=Xpze9xZzLepWeLpi9Y3tMn1dm2LVv-omr5TSQuGTtWo,13377
121
143
  kailash/nodes/base_with_acl.py,sha256=ZfrkLPgrEBcNbG0LKvtq6glDxyOYOMRw3VXX4vWX6bI,11852
144
+ kailash/nodes/governance.py,sha256=dTtCW-BMF8-2nPXQLC3_Pwf1ehWkjgJf3kopJRXV89w,14758
122
145
  kailash/nodes/mixins.py,sha256=ncAdNQPe1sphLByeerP6G_s8mjFLt7dM4baiozzIBPA,12083
123
- kailash/nodes/validation.py,sha256=tuBZRZkDiEdvfeU7JaRB7v2-j1vxPYMJ1gVaJ-PKHRk,12117
146
+ kailash/nodes/ports.py,sha256=77z9YM5SdpeR2p6W8RVuqhswIl0iaWTlN1UijUlSSps,22241
147
+ kailash/nodes/validation.py,sha256=gCvtCT2GSRfLfQ_Yu8p5cCzexoIQjtriKvHREdBEWa8,12199
124
148
  kailash/nodes/admin/__init__.py,sha256=C9_pK2w0rH6JEV_-roypeasAIyIhEFKKnH-npGBeew0,1508
125
149
  kailash/nodes/admin/audit_log.py,sha256=hM9z4oc4FfW-WyQHEIfY-Fw27iz375SamQtQHOw6zNE,41090
126
150
  kailash/nodes/admin/permission_check.py,sha256=m2-i8gisA8U-ERt3yPA6D03XbGzPqbzgW5eHYB21nNI,66596
@@ -143,7 +167,7 @@ kailash/nodes/ai/iterative_llm_agent.py,sha256=T_Rtmz6E5gB0HugT2Q8FHZE9Giqy5WiBB
143
167
  kailash/nodes/ai/llm_agent.py,sha256=NeNJZbV_VOUbULug2LASwyzLyoUO5wi58Bc9sXTubuc,90181
144
168
  kailash/nodes/ai/models.py,sha256=wsEeUTuegy87mnLtKgSTg7ggCXvC1n3MsL-iZ4qujHs,16393
145
169
  kailash/nodes/ai/self_organizing.py,sha256=B7NwKaBW8OHQBf5b0F9bSs8Wm-5BDJ9IjIkxS9h00mg,62885
146
- kailash/nodes/ai/semantic_memory.py,sha256=BUNQ_ONa7_92iMnHsok4qgmCOma8UYgkHZd0iwAFssI,18639
170
+ kailash/nodes/ai/semantic_memory.py,sha256=ZTXIgxwMheux712cN__cNrQ3VgHaKcDyfQv_Gto7MRM,18644
147
171
  kailash/nodes/ai/streaming_analytics.py,sha256=1D9wBxsp0DEw9X184TSXSCR6zvsgX7WD5jajD_MKLXY,33159
148
172
  kailash/nodes/ai/vision_utils.py,sha256=OHD9cVH_mq0WpJyQkNTj_mpipIVWfSV_bF9eA6CdyeA,4166
149
173
  kailash/nodes/alerts/__init__.py,sha256=CY3agJ7VQ4yU68BhxMCaj18EGEaDecYfLxceHHP4o9c,782
@@ -170,13 +194,13 @@ kailash/nodes/cache/cache_invalidation.py,sha256=IUvxrRj3K5EF29Z2EaKl7t6Uze_cssn
170
194
  kailash/nodes/cache/redis_pool_manager.py,sha256=GR82GCWxo_gAzRE-091OB6AhKre8CTwM3OoePLb2gvE,21574
171
195
  kailash/nodes/code/__init__.py,sha256=yhEwuMjUEPFfe6hMGMd4E4gZdLUuf2JEQ7knYapiM4o,1283
172
196
  kailash/nodes/code/async_python.py,sha256=Ai-iMpmz-sAori73JBk0wZtqmwtmF2GNPDxqB04I2Ck,37058
173
- kailash/nodes/code/python.py,sha256=no3JoQMXz45nKraa81YAI4S-DM-dnVHu8NS-xVq-Ipw,60664
197
+ kailash/nodes/code/python.py,sha256=fHrPWUPsIVd6yUM8KxmID9a0Bt5ehXU9dAiZz44aVU4,62481
174
198
  kailash/nodes/compliance/__init__.py,sha256=6a_FL4ofc8MAVuZ-ARW5uYenZLS4mBFVM9AI2QsnoF8,214
175
199
  kailash/nodes/compliance/data_retention.py,sha256=90bH_eGwlcDzUdklAJeXQM-RcuLUGQFQ5fgHOK8a4qk,69443
176
200
  kailash/nodes/compliance/gdpr.py,sha256=ZMoHZjAo4QtGwtFCzGMrAUBFV3TbZOnJ5DZGZS87Bas,70548
177
201
  kailash/nodes/data/__init__.py,sha256=f0h4ysvXxlyFcNJLvDyXrgJ0ixwDF1cS0pJ2QNPakhg,5213
178
202
  kailash/nodes/data/async_connection.py,sha256=wfArHs9svU48bxGZIiixSV2YVn9cukNgEjagwTRu6J4,17250
179
- kailash/nodes/data/async_sql.py,sha256=k4zgeHxgZLB06bl8Aos4WdFrHkYvhtAHX3en9wJv1Hw,103160
203
+ kailash/nodes/data/async_sql.py,sha256=p1wpT-3vYF6P5puQR8_IfPfe8rIJaa0O7YWjfKwAMM0,104101
180
204
  kailash/nodes/data/async_vector.py,sha256=HtwQLO25IXu8Vq80qzU8rMkUAKPQ2qM0x8YxjXHlygU,21005
181
205
  kailash/nodes/data/bulk_operations.py,sha256=WVopmosVkIlweFxVt3boLdCPc93EqpYyQ1Ez9mCIt0c,34453
182
206
  kailash/nodes/data/directory.py,sha256=fbfLqD_ijRubk-4xew3604QntPsyDxqaF4k6TpfyjDg,9923
@@ -197,6 +221,21 @@ kailash/nodes/data/streaming.py,sha256=XnU7VHSamdDq-lPiG6cxS2fZO-pU5KLpmaO-zPkPD
197
221
  kailash/nodes/data/vector_db.py,sha256=pwCl-3tyk_Cv_VQ8GafgodJ1yM88W1BXCIcYC56XoqU,32056
198
222
  kailash/nodes/data/workflow_connection_pool.py,sha256=o-c-gu4HRtD0i7G6eCLZuOVB4CDJMOXFuL5CbXipZtk,40284
199
223
  kailash/nodes/data/writers.py,sha256=-RPLetKhKAPXOU6YPwMkVRXF8by6ROhgICm3aUnGcFs,17537
224
+ kailash/nodes/edge/__init__.py,sha256=YDlthSttnSVuo7-PONKevCts9nVxJad92SpR0gd8Zpg,1101
225
+ kailash/nodes/edge/base.py,sha256=qee2esfLqvlDbWQoRCcDdTJ0mVCxUYS-k8Brb1SoZeQ,8458
226
+ kailash/nodes/edge/cloud_node.py,sha256=SNphcE52EadWRRcwL7ITPv_WB8WGC6ImD2zA7lKhB64,25068
227
+ kailash/nodes/edge/coordination.py,sha256=UOA6lLO7XvIHv9g63i1p9aiBeofFbnyqfw14_I0LnPo,8499
228
+ kailash/nodes/edge/docker_node.py,sha256=_JfMLCts5E-xS7bNvmA4qrAagmGRf0X3k6NMst1PRxA,29202
229
+ kailash/nodes/edge/edge_data.py,sha256=u2MFAZBqmKUhl5zoaRDKMYMq5MDY3CnPz7xAUV_yhtQ,20907
230
+ kailash/nodes/edge/edge_migration_node.py,sha256=KIL1nzrOIP4YQLO4NsIbd3BFlXMuOITAvjVlcDkTRi4,14497
231
+ kailash/nodes/edge/edge_monitoring_node.py,sha256=eXXI37ZHI2QPZamOXqni1n8GEc7JIA7cSEm107hGH0s,14464
232
+ kailash/nodes/edge/edge_state.py,sha256=pr8_CrWoEjlpS6TRqcCeWrFPmOR-SorBPyFbmlRO1l4,23137
233
+ kailash/nodes/edge/edge_warming_node.py,sha256=JtoMTquxn43Dz9d8Wc8vVX4skQ0RlHAMKkkSzsL94VA,13975
234
+ kailash/nodes/edge/kubernetes_node.py,sha256=lH90eKqmljK7j8_Z9Q9XINUTsA6Ea9emv9VgIFSShNM,23306
235
+ kailash/nodes/edge/platform_node.py,sha256=oaZOQ5VkO-f5FRECOO9yNYzFvf0-0F4f6B4hpCNHp-U,27692
236
+ kailash/nodes/edge/resource_analyzer_node.py,sha256=ML6shjgYv-WNRZSndKs771SapPTygCPti6h9p2qEPno,13113
237
+ kailash/nodes/edge/resource_optimizer_node.py,sha256=-r6SowQQ61SMYAK34Kv0rYtYf_etcGMEkKjAgtmwdks,18210
238
+ kailash/nodes/edge/resource_scaler_node.py,sha256=hK03H-N6PUWmDZNAzTJCAbaoKfM1NgnKLV88YOjA2oU,14168
200
239
  kailash/nodes/enterprise/__init__.py,sha256=uZzOfmGbD86cbCffWQl8MzofQNP9yfI3ctOIR9p5UOE,841
201
240
  kailash/nodes/enterprise/audit_logger.py,sha256=QpJMhK8KEm_u9Gnu0a58xxaqlhACQAauSGXE4ebvhMo,11043
202
241
  kailash/nodes/enterprise/batch_processor.py,sha256=1Dy09Ix3gSsVp2I6LKlk1URekxhBQYmeBOplnlCHmgU,28220
@@ -237,7 +276,7 @@ kailash/nodes/rag/optimized.py,sha256=zTYHs7pxO9nkqTcPjKjjuY0QZEJd2WTd_0G6tzHOcK
237
276
  kailash/nodes/rag/privacy.py,sha256=XyMsW1ZcUfPy5arGgte-AR_X40Ho9wy25RrMbwi0m6I,36724
238
277
  kailash/nodes/rag/query_processing.py,sha256=ivZYrwX4Agb4iWeTXIVwWuZm2WDOL75aSDa9Zy8kQxw,44698
239
278
  kailash/nodes/rag/realtime.py,sha256=9Lmay0RbsQWfaXFRfXyO30wFK_xtZZ6xomDNwB8YQh4,24758
240
- kailash/nodes/rag/registry.py,sha256=ocb2iyhuffA3KiK3IOHgYfUvUX52y1-DKKqP5gZBizQ,19279
279
+ kailash/nodes/rag/registry.py,sha256=LkXUwTTJ6nbM8LTiOVzxM7oHykExnWmkYf_x2nRJQb8,19295
241
280
  kailash/nodes/rag/router.py,sha256=3FvPBXcT-LYCxEpapwaeXy3ISWSfTGs5bPvFrOORqyA,30143
242
281
  kailash/nodes/rag/similarity.py,sha256=bngtAcx_WjnXlDcXgP5IQeKWScPywH7qu_I7uPD-j6M,61285
243
282
  kailash/nodes/rag/strategies.py,sha256=cOSn-JaGfF56EYm3PVDSMx3TOtqFtP4JEaVbpjt2wMw,18460
@@ -255,9 +294,9 @@ kailash/nodes/system/command_parser.py,sha256=lbcMTrb3PsxeIhDi7IPmsZ5PyjKjfmGuaR
255
294
  kailash/nodes/testing/__init__.py,sha256=TpaRD5YHwT6R3pI0r0WU99-Vgixj6gmCbZewnt8K8uI,274
256
295
  kailash/nodes/testing/credential_testing.py,sha256=gjoZDL9MbuwkK5Akb8kZA9GF363DlM6WRvi4rxwPbuU,17927
257
296
  kailash/nodes/transaction/__init__.py,sha256=W3wfDtseW6I7mq4L9kr0UXOADTV27q5BgX9JTyVlmCM,1414
258
- kailash/nodes/transaction/distributed_transaction_manager.py,sha256=44R2KDNIQqtxXkZlvR5OaQvXcuusPVmZJ0-16WyfMfc,38195
297
+ kailash/nodes/transaction/distributed_transaction_manager.py,sha256=eURfGfbMeXqbxytbEIJ7phAw770yeAvOAVxHUREvWZc,40345
259
298
  kailash/nodes/transaction/saga_coordinator.py,sha256=411I0wF-mC3VOawu-gUNWW0VY9vnUzU3TQN-pApn1ZM,22617
260
- kailash/nodes/transaction/saga_state_storage.py,sha256=7LU4WLRufzDrexueGD-6k4G0Bz4N8RQqkATewXOHU84,14595
299
+ kailash/nodes/transaction/saga_state_storage.py,sha256=rhfqGM2pxQw05HPqRPjm1UJ8UHf4mEhMf8qW2M2bQfQ,14643
261
300
  kailash/nodes/transaction/saga_step.py,sha256=_oOuzTnKAkGYBzliyDw8f0tjIkk07Ey3d2clr_nsp-c,16657
262
301
  kailash/nodes/transaction/transaction_context.py,sha256=ZAMZDFSvIpkFYy2XSFMpfIov8LbYrxL7fMbpxWJePuk,27969
263
302
  kailash/nodes/transaction/two_phase_commit.py,sha256=kCUN2q3F_CFYiA-XUCahvh4asnI9AiMPdFbLV5KSgJc,37021
@@ -277,7 +316,7 @@ kailash/runtime/__init__.py,sha256=CvU-qBMESYYISqFOlYlLsYJrXJu0Gqr4x6yr4Ob_Rng,2
277
316
  kailash/runtime/access_controlled.py,sha256=HtNJZylaB-2FuPsfEOfQ-4ny4HzwJfHaHNMu2xS1Nzs,17324
278
317
  kailash/runtime/async_local.py,sha256=sYNggSU0R-oo8cCvU5ayodDBqASzUhxu994ZvZxDSC0,34010
279
318
  kailash/runtime/docker.py,sha256=sZknVl1PCGfAZeyc0-exTuKlllSyjYlFIgJoiB3CRNs,23500
280
- kailash/runtime/local.py,sha256=t1FUrvdeISFZVvhgmRW916YsMGcroxSr_MVR6szS_Iw,49613
319
+ kailash/runtime/local.py,sha256=lDE36rIL1Pl1SjDkDStWMlF3qeaZRQzGugkWtcoMQRc,66013
281
320
  kailash/runtime/parallel.py,sha256=mz_wPD13-YVc3Q_8HkOs4nPQPdTjnjCcnRL7ZRM70lo,21070
282
321
  kailash/runtime/parallel_cyclic.py,sha256=yANZHnePjhCPuCFbq3lFQA1K6jbCv5Of5-vIKbCsmZk,19863
283
322
  kailash/runtime/parameter_injection.py,sha256=kG4GhmarsRr5t3VDFbc2G1HSbsZJg6UmienHCE2Ru7o,14852
@@ -285,6 +324,14 @@ kailash/runtime/parameter_injector.py,sha256=4l-OOKEBzM_cQ17Zz5o24QSV9a1Zqfu3D2q
285
324
  kailash/runtime/runner.py,sha256=t_SEumtVn9uXlSzJicb50MpUu6xdqjW0uZ5b2phjVPY,3318
286
325
  kailash/runtime/secret_provider.py,sha256=wKhasHnm_Ialo7Q4KGMcmI2qVyrKLuS22ypEnVv4NcU,8757
287
326
  kailash/runtime/testing.py,sha256=hTrgGnqxwSBYoztVqnZpxzFwm0DwUnaJdChRHikgoio,19089
327
+ kailash/runtime/validation/__init__.py,sha256=tvSnBo59Ku0b6mDwi4MWU162-jDHm9O2rQD1MKXuEZU,432
328
+ kailash/runtime/validation/connection_context.py,sha256=NAvcyew8e6F0x_sORwszZ-SR3nn7y0Yzskv3X_3AjbU,3286
329
+ kailash/runtime/validation/enhanced_error_formatter.py,sha256=tFmKbJ9pTXQd28oM9bu01sfVVmT3QIDQK1nkQjMqHfk,7642
330
+ kailash/runtime/validation/error_categorizer.py,sha256=vcfs2K8ahT1uTPK2K23I7VbEEfKcjnpV64MfEwacwgc,5280
331
+ kailash/runtime/validation/import_validator.py,sha256=OZjROQd75dP87xDFIUqUrhoOf8EBk-c9QXSyLlSaHYA,15534
332
+ kailash/runtime/validation/metrics.py,sha256=PENlPlVhyOgouhJKtjrgDIB5Fruw0GLGZo1bat5pup4,13178
333
+ kailash/runtime/validation/performance.py,sha256=vMa2CkA2RLaJHy-jMIPZBileTehJoRJC_6rHFZv9WDc,21130
334
+ kailash/runtime/validation/suggestion_engine.py,sha256=tFefI8dWQUhIvAnziyWqdEXfWV7GpQ0N3VAGoYa0zBg,10778
288
335
  kailash/servers/__init__.py,sha256=-2nkB5pIkBjc-klGJcKCuzWRAl_G7hlepvyV_Es64DI,976
289
336
  kailash/servers/durable_workflow_server.py,sha256=lMnf-rTUKrjiS9NhNo3qx2lWYC0NR7EEF-4WBUPZ9zI,16588
290
337
  kailash/servers/enterprise_workflow_server.py,sha256=HxArcgu5fQwV2KxKkf1n0Yu75zXy_tS8oxd4-1DM5UY,19785
@@ -293,7 +340,7 @@ kailash/servers/workflow_server.py,sha256=nkx8qpZ4xJD767L3M2dTj68SXv8uLUNht6tZ0v
293
340
  kailash/testing/__init__.py,sha256=4cqLSbcFz9bDY09vuK5Vpg3UtoAAa93R5tc9zIUvGAE,796
294
341
  kailash/testing/async_test_case.py,sha256=3Pdi13zT-_LduJ5Tfe7yuhz8Qz7KQpcER6G2nMe-t5A,12815
295
342
  kailash/testing/async_utils.py,sha256=gSHcArDJf98mDi--NPFpCoGmAgKHDZ0__tyKAjDjpm0,10745
296
- kailash/testing/fixtures.py,sha256=AxWk-U8o6Fp6jbagR3Mbnb8T2ApDTci4lGzuNVlD1hE,14072
343
+ kailash/testing/fixtures.py,sha256=DWB5x402ZLoRB6Jwj2t6ysRSzvdNBNC2ZYNIPmxfOXE,14067
297
344
  kailash/testing/mock_registry.py,sha256=1KsIjZh7ig4dC9Xi_FcpyAruPrQP79a3_hCxWrcZ6Zk,18389
298
345
  kailash/tracking/__init__.py,sha256=nhyecV24JuB_D-veJ3qw7h4oO8Sbdmyb6RvPS6VQktU,305
299
346
  kailash/tracking/manager.py,sha256=OxDgvuObiLLcje7-DF5DRIqi8f5clzvrlean1RrL9KE,28006
@@ -304,6 +351,7 @@ kailash/tracking/storage/base.py,sha256=wWkK1XdrMV0EGxlbFDyfuVnDoIG0tdSPPwz_8iwz
304
351
  kailash/tracking/storage/database.py,sha256=O3-qYmgwTccq9jYl25C0L6R398pXPsWkIAoWLL1aZvQ,20048
305
352
  kailash/tracking/storage/filesystem.py,sha256=VhWxNvqf_Ta3mIaGqKuOrcCqQiEvJj7S8NK5yRd1V68,19627
306
353
  kailash/utils/__init__.py,sha256=pFKhHJxU_kyFE9aGT5recw5E-3nbfVF5pMHepBJWB2E,253
354
+ kailash/utils/data_paths.py,sha256=pZWoqXPc62kB1iJlIXRUZSzXTglEUrJ3hML0YmXuC5k,2148
307
355
  kailash/utils/data_validation.py,sha256=LYQWHtB-BRSAGQDMdZQGUKOZCGeoeia2fIqM0UfJFSU,6851
308
356
  kailash/utils/export.py,sha256=WBazN03LOCI03TsIElNv31wSZ_uTLPl8THnqdohgyTk,37361
309
357
  kailash/utils/resource_manager.py,sha256=xMgcSogLofUIRpRMXzmK4gxBi2lIqEJ7rn2rsBBm9xo,13209
@@ -321,7 +369,8 @@ kailash/visualization/reports.py,sha256=D7kJ0flHr16d-qSEq8vnw20N8u_dgTrXtKVSXVm8
321
369
  kailash/workflow/__init__.py,sha256=DDQDE9K6RmbX6479guNLLgjiVVV-gQERRvCEJWSVlsM,1836
322
370
  kailash/workflow/async_builder.py,sha256=iv8bDJHdWAUZ77SyMo6sucd92dTdtXesdxycrSE7mM4,20613
323
371
  kailash/workflow/async_patterns.py,sha256=X0ZDXwr6UAu0WC1xnCB7-0V1-tRbKs9UI4JqaBCB6tE,22824
324
- kailash/workflow/builder.py,sha256=lAy_k7Icxwcr_231Y1FHV1UuZYIvyeDuYXKqMAi2_YI,34855
372
+ kailash/workflow/builder.py,sha256=SAhgUD-4RX0r0r8Gxk8dm19Q_R7KQOm4YhvSNvnf9hQ,51069
373
+ kailash/workflow/contracts.py,sha256=Uch-s2SC-NYrg0n2zgljgkyFHf4bufY4OydFuIfAk7E,13442
325
374
  kailash/workflow/convergence.py,sha256=vfIDR-uNaQE-LVUEzrRtfgKPgX9gL0nLNH-nTg5ra-c,10031
326
375
  kailash/workflow/cycle_analyzer.py,sha256=BGBpgdB-g0-KRI65sVAvHV4lxfoCzMt4uKOHbw8GXT4,32596
327
376
  kailash/workflow/cycle_builder.py,sha256=uWAx8K4ZKMtFC3mWylK4gHT03xeu0xChJlhw50hVqEE,20883
@@ -331,21 +380,23 @@ kailash/workflow/cycle_exceptions.py,sha256=4_OLnbEXqIiXKzOc3uh8DzFik4wEHwl8bRZh
331
380
  kailash/workflow/cycle_profiler.py,sha256=aEWSCm0Xy15SjgLTpPooVJMzpFhtJWt4livR-3Me4N8,28547
332
381
  kailash/workflow/cycle_state.py,sha256=hzRUvciRreWfS56Cf7ZLQPit_mlPTQDoNTawh8yi-2s,10747
333
382
  kailash/workflow/cyclic_runner.py,sha256=0IlmghTrwYb3ivqP975DprP3aj45-8_Sn5Wq9tEutG0,43888
383
+ kailash/workflow/edge_infrastructure.py,sha256=lQDzs0-KdoCMqI4KAXAGbhHbwadM6t-ffJEWLlRuSNo,12448
334
384
  kailash/workflow/graph.py,sha256=zRpGLXeuwtuxFBvE7_16c_bB9yqZirM_uwtfD1_MY4g,59272
335
385
  kailash/workflow/input_handling.py,sha256=HrW--AmelYC8F18nkfmYlF_wXycA24RuNbDRjvM8rqk,6561
336
- kailash/workflow/mermaid_visualizer.py,sha256=UsQDvxgIAhy-Th7ZzFnbuziaTx1Cd5yUh6S_25DffoQ,22294
337
- kailash/workflow/migration.py,sha256=zsmXgbUtOZdjoOx9YoEY0-x7uOY1T-_yQo4MnZjokCQ,31487
386
+ kailash/workflow/mermaid_visualizer.py,sha256=CAbLWSL9H-QeRlPNpPOJ3uxIBdcBEtx_KHHrrCdReCU,22290
387
+ kailash/workflow/migration.py,sha256=6WIGP5Y9kGgb0_3nLXVo8TPtuzsk66eoTSalWt7st_0,31463
338
388
  kailash/workflow/mock_registry.py,sha256=J4gyH8YdhRyhvORDVxGTya0FgDK8iAA8Nonur6p9s-o,1692
339
389
  kailash/workflow/resilience.py,sha256=Ecef4gBg-QWP369a_xfzQnVWhHryvEcO2RSFVSriLJI,8569
340
390
  kailash/workflow/runner.py,sha256=l6jb-H7DwbRlvQ3H3SuTs70rut-u7H3Gi8nybKCEjZU,10795
341
391
  kailash/workflow/safety.py,sha256=pS5GKu7UdkzFZcb16Dn-0jBxjULDU-59_M0CbUVMVyw,11298
342
392
  kailash/workflow/state.py,sha256=UTZxs5-Ona6uvBhx1__i6-RX8gB4qazkBIWE7uyRmWQ,7600
343
- kailash/workflow/templates.py,sha256=98EN5H4fO9b4xeczk20Hu5L8hNcAuRQNGayT6vnZYCw,48540
344
- kailash/workflow/validation.py,sha256=rWZNJYA_XAfk_og6Cxz8p1gZ3j5CylPvMTDXg2SfjgM,38574
393
+ kailash/workflow/templates.py,sha256=XQMAKZXC2dlxgMMQhSEOWAF3hIbe9JJt9j_THchhAm8,48486
394
+ kailash/workflow/type_inference.py,sha256=i1F7Yd_Z3elTXrthsLpqGbOnQBIVVVEjhRpI0HrIjd0,24492
395
+ kailash/workflow/validation.py,sha256=r2zApGiiG8UEn7p5Ji842l8OR1_KftzDkWc7gg0cac0,44675
345
396
  kailash/workflow/visualization.py,sha256=nHBW-Ai8QBMZtn2Nf3EE1_aiMGi9S6Ui_BfpA5KbJPU,23187
346
- kailash-0.8.4.dist-info/licenses/LICENSE,sha256=Axe6g7bTrJkToK9h9j2SpRUKKNaDZDCo2lQ2zPxCE6s,1065
347
- kailash-0.8.4.dist-info/METADATA,sha256=OaxiRteaH3HjtT7CkflzEiGfzIxG5uQOMmOL00awr2Y,20297
348
- kailash-0.8.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
349
- kailash-0.8.4.dist-info/entry_points.txt,sha256=M_q3b8PG5W4XbhSgESzIJjh3_4OBKtZFYFsOdkr2vO4,45
350
- kailash-0.8.4.dist-info/top_level.txt,sha256=z7GzH2mxl66498pVf5HKwo5wwfPtt9Aq95uZUpH6JV0,8
351
- kailash-0.8.4.dist-info/RECORD,,
397
+ kailash-0.8.6.dist-info/licenses/LICENSE,sha256=Axe6g7bTrJkToK9h9j2SpRUKKNaDZDCo2lQ2zPxCE6s,1065
398
+ kailash-0.8.6.dist-info/METADATA,sha256=8CMVRW3iAN5K_8U_1GN8OxLJF4HGjoo8G0vzKMq7kRc,21703
399
+ kailash-0.8.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
400
+ kailash-0.8.6.dist-info/entry_points.txt,sha256=M_q3b8PG5W4XbhSgESzIJjh3_4OBKtZFYFsOdkr2vO4,45
401
+ kailash-0.8.6.dist-info/top_level.txt,sha256=z7GzH2mxl66498pVf5HKwo5wwfPtt9Aq95uZUpH6JV0,8
402
+ kailash-0.8.6.dist-info/RECORD,,