kailash 0.3.2__py3-none-any.whl → 0.4.1__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 (151) hide show
  1. kailash/__init__.py +33 -1
  2. kailash/access_control/__init__.py +129 -0
  3. kailash/access_control/managers.py +461 -0
  4. kailash/access_control/rule_evaluators.py +467 -0
  5. kailash/access_control_abac.py +825 -0
  6. kailash/config/__init__.py +27 -0
  7. kailash/config/database_config.py +359 -0
  8. kailash/database/__init__.py +28 -0
  9. kailash/database/execution_pipeline.py +499 -0
  10. kailash/middleware/__init__.py +306 -0
  11. kailash/middleware/auth/__init__.py +33 -0
  12. kailash/middleware/auth/access_control.py +436 -0
  13. kailash/middleware/auth/auth_manager.py +422 -0
  14. kailash/middleware/auth/jwt_auth.py +477 -0
  15. kailash/middleware/auth/kailash_jwt_auth.py +616 -0
  16. kailash/middleware/communication/__init__.py +37 -0
  17. kailash/middleware/communication/ai_chat.py +989 -0
  18. kailash/middleware/communication/api_gateway.py +802 -0
  19. kailash/middleware/communication/events.py +470 -0
  20. kailash/middleware/communication/realtime.py +710 -0
  21. kailash/middleware/core/__init__.py +21 -0
  22. kailash/middleware/core/agent_ui.py +890 -0
  23. kailash/middleware/core/schema.py +643 -0
  24. kailash/middleware/core/workflows.py +396 -0
  25. kailash/middleware/database/__init__.py +63 -0
  26. kailash/middleware/database/base.py +113 -0
  27. kailash/middleware/database/base_models.py +525 -0
  28. kailash/middleware/database/enums.py +106 -0
  29. kailash/middleware/database/migrations.py +12 -0
  30. kailash/{api/database.py → middleware/database/models.py} +183 -291
  31. kailash/middleware/database/repositories.py +685 -0
  32. kailash/middleware/database/session_manager.py +19 -0
  33. kailash/middleware/mcp/__init__.py +38 -0
  34. kailash/middleware/mcp/client_integration.py +585 -0
  35. kailash/middleware/mcp/enhanced_server.py +576 -0
  36. kailash/nodes/__init__.py +27 -3
  37. kailash/nodes/admin/__init__.py +42 -0
  38. kailash/nodes/admin/audit_log.py +794 -0
  39. kailash/nodes/admin/permission_check.py +864 -0
  40. kailash/nodes/admin/role_management.py +823 -0
  41. kailash/nodes/admin/security_event.py +1523 -0
  42. kailash/nodes/admin/user_management.py +944 -0
  43. kailash/nodes/ai/a2a.py +24 -7
  44. kailash/nodes/ai/ai_providers.py +248 -40
  45. kailash/nodes/ai/embedding_generator.py +11 -11
  46. kailash/nodes/ai/intelligent_agent_orchestrator.py +99 -11
  47. kailash/nodes/ai/llm_agent.py +436 -5
  48. kailash/nodes/ai/self_organizing.py +85 -10
  49. kailash/nodes/ai/vision_utils.py +148 -0
  50. kailash/nodes/alerts/__init__.py +26 -0
  51. kailash/nodes/alerts/base.py +234 -0
  52. kailash/nodes/alerts/discord.py +499 -0
  53. kailash/nodes/api/auth.py +287 -6
  54. kailash/nodes/api/rest.py +151 -0
  55. kailash/nodes/auth/__init__.py +17 -0
  56. kailash/nodes/auth/directory_integration.py +1228 -0
  57. kailash/nodes/auth/enterprise_auth_provider.py +1328 -0
  58. kailash/nodes/auth/mfa.py +2338 -0
  59. kailash/nodes/auth/risk_assessment.py +872 -0
  60. kailash/nodes/auth/session_management.py +1093 -0
  61. kailash/nodes/auth/sso.py +1040 -0
  62. kailash/nodes/base.py +344 -13
  63. kailash/nodes/base_cycle_aware.py +4 -2
  64. kailash/nodes/base_with_acl.py +1 -1
  65. kailash/nodes/code/python.py +283 -10
  66. kailash/nodes/compliance/__init__.py +9 -0
  67. kailash/nodes/compliance/data_retention.py +1888 -0
  68. kailash/nodes/compliance/gdpr.py +2004 -0
  69. kailash/nodes/data/__init__.py +22 -2
  70. kailash/nodes/data/async_connection.py +469 -0
  71. kailash/nodes/data/async_sql.py +757 -0
  72. kailash/nodes/data/async_vector.py +598 -0
  73. kailash/nodes/data/readers.py +767 -0
  74. kailash/nodes/data/retrieval.py +360 -1
  75. kailash/nodes/data/sharepoint_graph.py +397 -21
  76. kailash/nodes/data/sql.py +94 -5
  77. kailash/nodes/data/streaming.py +68 -8
  78. kailash/nodes/data/vector_db.py +54 -4
  79. kailash/nodes/enterprise/__init__.py +13 -0
  80. kailash/nodes/enterprise/batch_processor.py +741 -0
  81. kailash/nodes/enterprise/data_lineage.py +497 -0
  82. kailash/nodes/logic/convergence.py +31 -9
  83. kailash/nodes/logic/operations.py +14 -3
  84. kailash/nodes/mixins/__init__.py +8 -0
  85. kailash/nodes/mixins/event_emitter.py +201 -0
  86. kailash/nodes/mixins/mcp.py +9 -4
  87. kailash/nodes/mixins/security.py +165 -0
  88. kailash/nodes/monitoring/__init__.py +7 -0
  89. kailash/nodes/monitoring/performance_benchmark.py +2497 -0
  90. kailash/nodes/rag/__init__.py +284 -0
  91. kailash/nodes/rag/advanced.py +1615 -0
  92. kailash/nodes/rag/agentic.py +773 -0
  93. kailash/nodes/rag/conversational.py +999 -0
  94. kailash/nodes/rag/evaluation.py +875 -0
  95. kailash/nodes/rag/federated.py +1188 -0
  96. kailash/nodes/rag/graph.py +721 -0
  97. kailash/nodes/rag/multimodal.py +671 -0
  98. kailash/nodes/rag/optimized.py +933 -0
  99. kailash/nodes/rag/privacy.py +1059 -0
  100. kailash/nodes/rag/query_processing.py +1335 -0
  101. kailash/nodes/rag/realtime.py +764 -0
  102. kailash/nodes/rag/registry.py +547 -0
  103. kailash/nodes/rag/router.py +837 -0
  104. kailash/nodes/rag/similarity.py +1854 -0
  105. kailash/nodes/rag/strategies.py +566 -0
  106. kailash/nodes/rag/workflows.py +575 -0
  107. kailash/nodes/security/__init__.py +19 -0
  108. kailash/nodes/security/abac_evaluator.py +1411 -0
  109. kailash/nodes/security/audit_log.py +103 -0
  110. kailash/nodes/security/behavior_analysis.py +1893 -0
  111. kailash/nodes/security/credential_manager.py +401 -0
  112. kailash/nodes/security/rotating_credentials.py +760 -0
  113. kailash/nodes/security/security_event.py +133 -0
  114. kailash/nodes/security/threat_detection.py +1103 -0
  115. kailash/nodes/testing/__init__.py +9 -0
  116. kailash/nodes/testing/credential_testing.py +499 -0
  117. kailash/nodes/transform/__init__.py +10 -2
  118. kailash/nodes/transform/chunkers.py +592 -1
  119. kailash/nodes/transform/processors.py +484 -14
  120. kailash/nodes/validation.py +321 -0
  121. kailash/runtime/access_controlled.py +1 -1
  122. kailash/runtime/async_local.py +41 -7
  123. kailash/runtime/docker.py +1 -1
  124. kailash/runtime/local.py +474 -55
  125. kailash/runtime/parallel.py +1 -1
  126. kailash/runtime/parallel_cyclic.py +1 -1
  127. kailash/runtime/testing.py +210 -2
  128. kailash/security.py +1 -1
  129. kailash/utils/migrations/__init__.py +25 -0
  130. kailash/utils/migrations/generator.py +433 -0
  131. kailash/utils/migrations/models.py +231 -0
  132. kailash/utils/migrations/runner.py +489 -0
  133. kailash/utils/secure_logging.py +342 -0
  134. kailash/workflow/__init__.py +16 -0
  135. kailash/workflow/cyclic_runner.py +3 -4
  136. kailash/workflow/graph.py +70 -2
  137. kailash/workflow/resilience.py +249 -0
  138. kailash/workflow/templates.py +726 -0
  139. {kailash-0.3.2.dist-info → kailash-0.4.1.dist-info}/METADATA +256 -20
  140. kailash-0.4.1.dist-info/RECORD +227 -0
  141. kailash/api/__init__.py +0 -17
  142. kailash/api/__main__.py +0 -6
  143. kailash/api/studio_secure.py +0 -893
  144. kailash/mcp/__main__.py +0 -13
  145. kailash/mcp/server_new.py +0 -336
  146. kailash/mcp/servers/__init__.py +0 -12
  147. kailash-0.3.2.dist-info/RECORD +0 -136
  148. {kailash-0.3.2.dist-info → kailash-0.4.1.dist-info}/WHEEL +0 -0
  149. {kailash-0.3.2.dist-info → kailash-0.4.1.dist-info}/entry_points.txt +0 -0
  150. {kailash-0.3.2.dist-info → kailash-0.4.1.dist-info}/licenses/LICENSE +0 -0
  151. {kailash-0.3.2.dist-info → kailash-0.4.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kailash
3
- Version: 0.3.2
3
+ Version: 0.4.1
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
@@ -57,6 +57,10 @@ Requires-Dist: python-jose>=3.5.0
57
57
  Requires-Dist: pytest-xdist>=3.6.0
58
58
  Requires-Dist: pytest-timeout>=2.3.0
59
59
  Requires-Dist: pytest-split>=0.9.0
60
+ Requires-Dist: asyncpg>=0.30.0
61
+ Requires-Dist: aiomysql>=0.2.0
62
+ Requires-Dist: twilio>=9.6.3
63
+ Requires-Dist: qrcode>=8.2
60
64
  Provides-Extra: dev
61
65
  Requires-Dist: pytest>=7.0; extra == "dev"
62
66
  Requires-Dist: pytest-cov>=3.0; extra == "dev"
@@ -76,8 +80,8 @@ Dynamic: requires-python
76
80
  <a href="https://pepy.tech/project/kailash"><img src="https://static.pepy.tech/badge/kailash" alt="Downloads"></a>
77
81
  <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
78
82
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
79
- <img src="https://img.shields.io/badge/tests-751%20passing-brightgreen.svg" alt="Tests: 751 passing">
80
- <img src="https://img.shields.io/badge/coverage-100%25-brightgreen.svg" alt="Coverage: 100%">
83
+ <img src="https://img.shields.io/badge/tests-127%20organized-brightgreen.svg" alt="Tests: 127 organized">
84
+ <img src="https://img.shields.io/badge/test%20structure-reorganized-blue.svg" alt="Test structure: reorganized">
81
85
  </p>
82
86
 
83
87
  <p align="center">
@@ -105,12 +109,73 @@ Dynamic: requires-python
105
109
  - 🤖 **Self-Organizing Agents**: Autonomous agent pools with intelligent team formation and convergence detection
106
110
  - 🧠 **Agent-to-Agent Communication**: Shared memory pools and intelligent caching for coordinated multi-agent systems
107
111
  - 🔒 **Production Security**: Comprehensive security framework with path traversal prevention, code sandboxing, and audit logging
112
+ - 🛡️ **Admin Tool Framework**: Complete enterprise admin infrastructure with React UI, RBAC, audit logging, and LLM-based QA testing
108
113
  - 🎨 **Visual Workflow Builder**: Kailash Workflow Studio - drag-and-drop interface for creating and managing workflows (coming soon)
109
114
  - 🔁 **Cyclic Workflows (v0.2.0)**: Universal Hybrid Cyclic Graph Architecture with 30,000+ iterations/second performance
110
115
  - 🛠️ **Developer Tools**: CycleAnalyzer, CycleDebugger, CycleProfiler for production-ready cyclic workflows
111
116
  - 📈 **High Performance**: Optimized execution engine supporting 100,000+ iteration workflows
112
117
  - 📁 **Complete Finance Workflow Library (v0.3.1)**: Production-ready financial workflows with AI analysis
113
118
  - 💼 **Enterprise Workflow Patterns**: Credit risk, portfolio optimization, trading signals, fraud detection
119
+ - 🔔 **Production Alert System**: Rich Discord alerts with rate limiting, retry logic, and rich embed support
120
+ - 🏭 **Session 067 Enhancements**: Business workflow templates, data lineage tracking, automatic credential rotation
121
+ - 🔄 **Zero-Downtime Operations**: Automatic credential rotation with enterprise notifications and audit trails
122
+ - 🌉 **Enterprise Middleware (v0.4.0)**: Production-ready middleware architecture with real-time agent-frontend communication, dynamic workflows, and AI chat integration
123
+
124
+ ## 🏗️ Project Architecture
125
+
126
+ The Kailash project is organized into three distinct layers:
127
+
128
+ ### Core Architecture (v0.4.0)
129
+ ```
130
+ ┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
131
+ │ Frontend │ │ Middleware │ │ Kailash Core │
132
+ │ │ │ │ │ │
133
+ │ • React/Vue │◄───│ • Agent-UI │◄───│ • Workflows │
134
+ │ • JavaScript │ │ • Real-time │ │ • Nodes │
135
+ │ • Mobile Apps │ │ • API Gateway │ │ • Runtime │
136
+ │ │ │ • AI Chat │ │ • Security │
137
+ │ │ │ • WebSocket/SSE │ │ • Database │
138
+ └─────────────────┘ └──────────────────┘ └─────────────────┘
139
+ ```
140
+
141
+ ```
142
+ kailash_python_sdk/
143
+ ├── src/kailash/ # Core SDK - Framework and building blocks
144
+ ├── apps/ # Applications - Production-ready solutions built with the SDK
145
+ └── studio/ # UI Layer - Frontend interfaces and visual tools
146
+ ```
147
+
148
+ ### Layer Overview
149
+
150
+ 1. **SDK Layer** (`src/kailash/`) - The core framework providing:
151
+ - Nodes: Reusable computational units (100+ built-in)
152
+ - Workflows: DAG-based orchestration with cyclic support
153
+ - Runtime: Unified execution engine (async + enterprise)
154
+ - Middleware: Enterprise communication layer (NEW in v0.4.0)
155
+ - Security: RBAC/ABAC access control with audit logging
156
+
157
+ 2. **Application Layer** (`apps/`) - Complete applications including:
158
+ - User Management System (Django++ capabilities)
159
+ - Future: Workflow Designer, Data Pipeline, API Gateway, etc.
160
+
161
+ 3. **UI Layer** (`studio/`) - Modern React interfaces for:
162
+ - Admin dashboards
163
+ - Workflow visualization
164
+ - Application UIs
165
+
166
+ ### Installation Options
167
+
168
+ ```bash
169
+ # Core SDK only
170
+ pip install kailash
171
+
172
+ # SDK with User Management
173
+ pip install kailash[user-management]
174
+
175
+ # Everything
176
+ pip install kailash[all]
177
+ ```
178
+ >>>>>>> origin/main
114
179
 
115
180
  ## 🎯 Who Is This For?
116
181
 
@@ -257,7 +322,7 @@ workflow.add_node("optimizer", PythonCodeNode.from_function(func=optimize_portfo
257
322
  - Industry-specific solutions by vertical
258
323
  - Enterprise integration patterns
259
324
  - `essentials/` - Quick reference and cheatsheets
260
- - `nodes/` - Comprehensive node catalog (66+ nodes)
325
+ - `nodes/` - Comprehensive node catalog (93+ nodes including Session 067 enhancements)
261
326
  - `patterns/` - Architectural patterns
262
327
 
263
328
  ### For SDK Contributors
@@ -282,8 +347,112 @@ workflow.add_node("optimizer", PythonCodeNode.from_function(func=optimize_portfo
282
347
  - [Examples](examples/)
283
348
  - [Release Notes](CHANGELOG.md)
284
349
 
350
+ ## 🌉 Enterprise Middleware (v0.4.0)
351
+
352
+ ### Production-Ready Communication Layer
353
+
354
+ The new middleware architecture provides enterprise-grade components for building production applications:
355
+
356
+ ```python
357
+ from kailash.middleware import (
358
+ AgentUIMiddleware,
359
+ APIGateway,
360
+ create_gateway,
361
+ RealtimeMiddleware,
362
+ AIChatMiddleware
363
+ )
364
+
365
+ # Create enterprise middleware stack
366
+ agent_ui = AgentUIMiddleware(
367
+ max_sessions=1000,
368
+ session_timeout_minutes=60,
369
+ enable_persistence=True
370
+ )
371
+
372
+ # API Gateway with authentication
373
+ gateway = create_gateway(
374
+ title="My Production API",
375
+ cors_origins=["https://myapp.com"],
376
+ enable_docs=True
377
+ )
378
+
379
+ # Real-time communication
380
+ realtime = RealtimeMiddleware(agent_ui)
381
+
382
+ # AI chat integration
383
+ ai_chat = AIChatMiddleware(
384
+ agent_ui,
385
+ enable_vector_search=True,
386
+ llm_provider="ollama"
387
+ )
388
+ ```
389
+
390
+ ### Key Middleware Features
391
+
392
+ - **Dynamic Workflow Creation**: Create workflows from frontend configurations using `WorkflowBuilder.from_dict()`
393
+ - **Real-time Communication**: WebSocket and SSE support for live updates
394
+ - **Session Management**: Multi-tenant isolation with automatic cleanup
395
+ - **AI Chat Integration**: Natural language workflow generation with context awareness
396
+ - **Database Persistence**: Repository pattern with audit logging
397
+ - **JWT Authentication**: Enterprise security with RBAC/ABAC access control
398
+ - **Health Monitoring**: Built-in health checks and performance metrics
399
+
400
+ ### Frontend Integration
401
+
402
+ ```python
403
+ # Create session for frontend client
404
+ session_id = await agent_ui.create_session("user123")
405
+
406
+ # Dynamic workflow from frontend
407
+ workflow_config = {
408
+ "name": "data_pipeline",
409
+ "nodes": [...],
410
+ "connections": [...]
411
+ }
412
+
413
+ workflow_id = await agent_ui.create_dynamic_workflow(
414
+ session_id, workflow_config
415
+ )
416
+
417
+ # Execute with real-time updates
418
+ execution_id = await agent_ui.execute_workflow(
419
+ session_id, workflow_id, inputs={}
420
+ )
421
+ ```
422
+
423
+ **Test Excellence**: 17/17 integration tests passing with 100% reliability for production deployment.
424
+
425
+ See [Middleware Integration Guide](sdk-users/developer/16-middleware-integration-guide.md) for complete documentation.
426
+
285
427
  ## 🔥 Advanced Features
286
428
 
429
+ ### Unified Access Control (v0.3.3)
430
+
431
+ Single interface for all access control strategies:
432
+
433
+ ```python
434
+ from kailash.access_control import AccessControlManager
435
+
436
+ # Choose your strategy
437
+ manager = AccessControlManager(strategy="abac") # or "rbac" or "hybrid"
438
+
439
+ # ABAC example with helper functions
440
+ from kailash.access_control import create_attribute_condition
441
+
442
+ condition = create_attribute_condition(
443
+ path="user.attributes.department",
444
+ operator="hierarchical_match",
445
+ value="finance"
446
+ )
447
+
448
+ # Database integration
449
+ db_node = AsyncSQLDatabaseNode(
450
+ name="financial_query",
451
+ query="SELECT * FROM sensitive_data",
452
+ access_control_manager=manager
453
+ )
454
+ ```
455
+
287
456
  ### Cyclic Workflows (Enhanced in v0.2.2)
288
457
 
289
458
  Build iterative workflows with the new CycleBuilder API:
@@ -346,14 +515,17 @@ api.run()
346
515
 
347
516
  ## 🏗️ Key Components
348
517
 
349
- ### Nodes (60+ built-in)
518
+ ### Nodes (85+ built-in)
350
519
 
351
- - **Data**: CSVReaderNode, JSONReaderNode, SQLDatabaseNode, DirectoryReaderNode
520
+ - **Data**: CSVReaderNode, JSONReaderNode, SQLDatabaseNode, AsyncSQLDatabaseNode, DirectoryReaderNode
521
+ - **Admin**: UserManagementNode, RoleManagementNode, PermissionCheckNode, AuditLogNode, SecurityEventNode
352
522
  - **Transform**: DataTransformer, DataFrameFilter, DataFrameJoiner
353
- - **AI/ML**: LLMAgentNode, EmbeddingGeneratorNode, A2ACoordinatorNode
354
- - **API**: RESTClientNode, GraphQLNode, AuthNode
523
+ - **AI/ML**: LLMAgentNode, EmbeddingGeneratorNode, A2ACoordinatorNode, MCPAgentNode
524
+ - **API**: RESTClientNode, GraphQLNode, AuthNode, HTTPRequestNode
355
525
  - **Logic**: SwitchNode, MergeNode, ConvergenceCheckerNode
356
526
  - **Code**: PythonCodeNode, WorkflowNode
527
+ - **Alerts**: DiscordAlertNode with rich embeds and rate limiting
528
+ - **Security**: EnhancedAccessControlManager (ABAC with 16 operators)
357
529
 
358
530
  ### Runtimes
359
531
 
@@ -443,23 +615,87 @@ ruff check .
443
615
  python scripts/test-all-examples.py
444
616
  ```
445
617
 
618
+ ## 🧪 Tests & Examples
619
+
620
+ ### Comprehensive Test Suite
621
+ The SDK features a fully reorganized test suite with 127 tests organized by purpose:
622
+
623
+ ```bash
624
+ # Run all tests
625
+ pytest
626
+
627
+ # Fast unit tests (92 tests)
628
+ pytest tests/unit/
629
+
630
+ # Integration tests (31 tests)
631
+ pytest tests/integration/
632
+
633
+ # End-to-end tests (4 tests)
634
+ pytest tests/e2e/
635
+
636
+ # Specific component tests
637
+ pytest tests/unit/nodes/ai/
638
+ ```
639
+
640
+ **Test Structure:**
641
+ - **Unit Tests**: Fast, isolated component validation
642
+ - **Integration Tests**: Component interaction testing
643
+ - **E2E Tests**: Complete scenario validation
644
+ - **Unified Configuration**: Single `conftest.py` with 76+ fixtures
645
+
646
+ ### Production Workflows & Examples
647
+ Clear separation of purpose for maximum value:
648
+
649
+ **Business Workflows** (`sdk-users/workflows/`):
650
+ ```
651
+ sdk-users/workflows/
652
+ ├── quickstart/ # 5-minute success stories
653
+ ├── by-industry/ # Finance, healthcare, manufacturing
654
+ ├── by-pattern/ # Data processing, AI/ML, API integration
655
+ ├── integrations/ # Third-party platform connections
656
+ └── production-ready/ # Enterprise deployment patterns
657
+ ```
658
+
659
+ **SDK Development** (`examples/`):
660
+ ```
661
+ examples/
662
+ ├── feature-validation/ # SDK component testing
663
+ ├── test-harness/ # Development utilities
664
+ └── utils/ # Shared development tools
665
+ ```
666
+
667
+ **Key Principles:**
668
+ - **Workflows**: Production business value, real-world solutions
669
+ - **Examples**: SDK development, feature validation
670
+ - **Tests**: Quality assurance, regression prevention
671
+
446
672
  ## 📈 Project Status
447
673
 
448
- -Core workflow engine
449
- - 60+ production-ready nodes
450
- - Local and parallel runtimes
674
+ ###v0.4.0 - Enterprise Middleware Architecture
675
+ - **Middleware Layer**: Complete refactor from monolithic to composable middleware
676
+ - **Real-time Communication**: WebSocket/SSE with comprehensive event streaming
677
+ - **AI Integration**: Built-in chat middleware with workflow generation
678
+ - **Test Excellence**: 799 tests passing (100% pass rate), organized structure
679
+ - **Gateway Integration**: Updated for middleware-based architecture
680
+ - **Performance**: Excluded slow tests from CI, builds complete in <2 minutes
681
+
682
+ ### ✅ Previous Releases
683
+ - ✅ Core workflow engine with 100+ production-ready nodes
684
+ - ✅ Unified LocalRuntime (async + enterprise features)
451
685
  - ✅ Export to container format
452
- - ✅ Real-time monitoring
453
- - ✅ Comprehensive test suite (751 tests)
454
- - ✅ Self-organizing agent systems
455
- - ✅ Hierarchical RAG architecture
456
- - ✅ REST API wrapper
686
+ - ✅ Reorganized test suite (unit/integration/e2e structure)
687
+ - ✅ Self-organizing agent systems and hierarchical RAG
457
688
  - ✅ Cyclic workflow support with CycleBuilder API
458
- - ✅ Production security framework
459
- - ✅ Comprehensive workflow library (v0.2.2)
460
- - 🚧 Visual workflow builder (in progress)
461
- - 🚧 Docker runtime
689
+ - ✅ Production security framework with RBAC/ABAC/Hybrid
690
+ - ✅ Async database infrastructure with pgvector support
691
+ - Admin tool framework with React UI and QA testing
692
+ - Comprehensive workflow library (finance, enterprise patterns)
693
+
694
+ ### 🚧 In Progress
695
+ - 🚧 Visual workflow builder (Studio UI)
696
+ - 🚧 Docker runtime integration
462
697
  - 🚧 Cloud deployment tools
698
+ - 🚧 Advanced RAG toolkit validation
463
699
 
464
700
  ## 📄 License
465
701
 
@@ -0,0 +1,227 @@
1
+ kailash/__init__.py,sha256=FdEB2WokgGOcUMo19ACxoI2MowIWcSm3zeZvWt5nVAc,1792
2
+ kailash/__main__.py,sha256=vr7TVE5o16V6LsTmRFKG6RDKUXHpIWYdZ6Dok2HkHnI,198
3
+ kailash/access_control.py,sha256=2ctdRFeSeu-d7DU04Aovxh6Rt_4t3IyQfkKEjTeQiMM,25519
4
+ kailash/access_control_abac.py,sha256=FPfa_8PuDP3AxTjdWfiH3ntwWO8NodA0py9W8SE5dno,30263
5
+ kailash/manifest.py,sha256=qzOmeMGWz20Sp4IJitSH9gTVbGng7hlimc96VTW4KI8,24814
6
+ kailash/sdk_exceptions.py,sha256=dueSUxUYqKXmHS5mwl6QtEzP6a0rMGXcBFGCh5sT0tg,10179
7
+ kailash/security.py,sha256=eTb5rq92vFz7xU1Ov5gM5izRIAi2JQO3Pmf0xe2U3ls,26433
8
+ kailash/access_control/__init__.py,sha256=6ZKYHe8SqEdiog369KMmqXBPKM77eBuncwIRbBG8ij4,3958
9
+ kailash/access_control/managers.py,sha256=Vg2inaZqR2GBXsySvPZcEqQtFHgF94z7A_wUHMtA3qA,14431
10
+ kailash/access_control/rule_evaluators.py,sha256=niguhjThBjA0jIXvdKdGAXzdSM_bAd0ebphGgRrDFKU,15337
11
+ kailash/api/auth.py,sha256=SnEgCJ2AkFQORDiFHW4-DsMf2HZ4Ox2qfi1iL75wdG0,19913
12
+ kailash/api/custom_nodes.py,sha256=ATCrfAgYJhspKmgTdpWgPrSHkea6YLHcjjvaL_zfuqk,10614
13
+ kailash/api/custom_nodes_secure.py,sha256=2BVO2OvTmMXXB3ccLxTJck6k7p3W9rNmCb1rQeylxoA,13184
14
+ kailash/api/gateway.py,sha256=kqdYvf77_xt87SIWO2paIll6e1pbdOdvXuLgUkKInG0,12536
15
+ kailash/api/mcp_integration.py,sha256=xY5VjYXh4bFuNyyWBXEuTm4jjwUn8_9QxZpa4hh6a0Q,14521
16
+ kailash/api/studio.py,sha256=F48J0dzqv48n_OiGPR7VGQk7KfH39yHNk9rQNM_-fJM,34888
17
+ kailash/api/workflow_api.py,sha256=1Y8EfjqBJrs9rettbGHH_SifDi1c-cwibDk3GGG-NUo,13139
18
+ kailash/cli/__init__.py,sha256=kJaqsBp3fRmagJhqA6LMwMbEa_Vkz93hIPH3W5Mn5r0,97
19
+ kailash/cli/commands.py,sha256=lv1S1uB0JQE4tiQCJIa1HCbjYDbFE9KwcK3M1jRtRU4,18168
20
+ kailash/config/__init__.py,sha256=9qNwtvXAVV-KkHbuL1ZbtC6yXDtowH4YoFiOP-Qbe-w,638
21
+ kailash/config/database_config.py,sha256=rdlqIP9WUzC0kvAdSjno1LMpu_bEy2v5FgFdgJy-qsc,11588
22
+ kailash/database/__init__.py,sha256=keUIl-BhRMSR7ohW4kojaEYCzKmeb_pb4IpWqDqfnOk,686
23
+ kailash/database/execution_pipeline.py,sha256=1Y-iVXKPoCED3dRoQvOZe1lQyff92NJ__q77NPI0CRQ,16453
24
+ kailash/mcp/__init__.py,sha256=jQHP7EVT126QXmi0TqR1mU3QNrUeEB4oIC4sD4B2a8c,1813
25
+ kailash/mcp/ai_registry_server.py,sha256=9pOzJnJFpxJnZPfLo2QvVZ5yvAq5IRqzXPbQL1rL1ns,28104
26
+ kailash/mcp/client.py,sha256=sTouSiuiu1nbahMXSWcP8-mr1k7cqdBCzSxm8G7le-s,16058
27
+ kailash/mcp/client_new.py,sha256=YU671JvAM0uvuX0uhGZCIKI8co3fqz0cs6HqLZ59Xyo,10285
28
+ kailash/mcp/server.py,sha256=aWU0DHj89FN_eEgH6aVjA05WjthugrXMHdPlgwJ6kZg,8246
29
+ kailash/mcp/server_enhanced.py,sha256=lRIDSNs0c8urMq_SURwi7eBhTWKa-rq2FAB8xZf9CwI,14724
30
+ kailash/mcp/servers/ai_registry.py,sha256=7k17ld0DUQYL476N5EbiNpPy8D0HqPRhrl8Wk1ajjj8,9992
31
+ kailash/mcp/utils/__init__.py,sha256=R20N-iiKXUPxc9MOh6vPO1vIfkPmwhEQ5KNFgGd4xSs,771
32
+ kailash/mcp/utils/cache.py,sha256=dLEseovPaXL4lRzMSw7tqd3tJHwnWfhdZ-HKGyScJXI,8414
33
+ kailash/mcp/utils/config.py,sha256=DyZxgdy3vqI5pwhQ_E-42mhueVGNHiuOtTUOrM9HC_U,8124
34
+ kailash/mcp/utils/formatters.py,sha256=D-2j1nvmprApiUI13HWY-L2_WPSAcJDtVdHcshAuOdo,9740
35
+ kailash/mcp/utils/metrics.py,sha256=MNUjWGQyq1EGdeqzAKCCZJNgcWHOyaYAV8MlS2cb-4k,13754
36
+ kailash/middleware/__init__.py,sha256=bHTPBzAOLfSXmKZHU-g0qOgrIQbIdoNxx5A_6S34EDw,10269
37
+ kailash/middleware/auth/__init__.py,sha256=ZiF8U2EWtJv4-blfKYAG3K6xhOcwQfajpJe0eeWOaLI,934
38
+ kailash/middleware/auth/access_control.py,sha256=u8jlfTXRkRteHXi-kiwSGfFFKzAfabxWR6t6L4dU2bk,14954
39
+ kailash/middleware/auth/auth_manager.py,sha256=d1XFJ9jOCrOTwV26qO0b7wBOSbroTvTxaJADII-mCz0,14057
40
+ kailash/middleware/auth/jwt_auth.py,sha256=k_X4yZEMWTNSViIYgPfVNKjnXCHWxo1gA_9q8mcPI6k,15388
41
+ kailash/middleware/auth/kailash_jwt_auth.py,sha256=NdbOUMBr7kh5E0yGfh8sRstiXo6UTLbAadvoQWziFDU,19974
42
+ kailash/middleware/communication/__init__.py,sha256=keQ2db4WI2-oZ_nJ5sLE1Tum_RkUt7M2VLTmqOlt0zA,778
43
+ kailash/middleware/communication/ai_chat.py,sha256=T4R2dujQ40cFH3mI09FTpc6UCbjTItvFLwG0JGe48BQ,36045
44
+ kailash/middleware/communication/api_gateway.py,sha256=czRaYOLUpjaVQPR8feb1nuvA4rJwGR8u4z0aBpPjAlY,30048
45
+ kailash/middleware/communication/events.py,sha256=MEjgcibNyjA4tSFK8CeXDn1oCE75My7K_saxdCBz2HY,15367
46
+ kailash/middleware/communication/realtime.py,sha256=JS7lMV1_Ta5orvTJPQsetdCdvIiUdsgYt7M7NSQu6fs,24951
47
+ kailash/middleware/core/__init__.py,sha256=4yQkOWC4b88zSogs1YVqtKG1PugbncqNCwNNWxTdIZA,545
48
+ kailash/middleware/core/agent_ui.py,sha256=GtUASP2hhA_cV6X_J5uLQK7zNTdZW3Jr2Zw-QUUn7Zo,32579
49
+ kailash/middleware/core/schema.py,sha256=uVF-5ZJlLYHOQdsKrG46FnTO1bq_QtDjhUSkIIDL9dY,23584
50
+ kailash/middleware/core/workflows.py,sha256=kjwwP69-T6eCY7kWIMLUBwVy2CapoPR34cqCETquq0s,12480
51
+ kailash/middleware/database/__init__.py,sha256=UMws94L-vja94AjfzPWIgn0h4_5BGQzI3YaSdqtzeLk,1682
52
+ kailash/middleware/database/base.py,sha256=cWEei9Gb6J-C-bpa4M4T0takfWE3POXWumzYhqX3V4g,2735
53
+ kailash/middleware/database/base_models.py,sha256=XBcHEUmcpl2f6zZHCAgHQ_0jqUB3Gl82XARR83lW5GY,18287
54
+ kailash/middleware/database/enums.py,sha256=Yo_wMS7OpsleWtNMESTc2LTf15d93nPnBADIn2EHjeQ,2516
55
+ kailash/middleware/database/migrations.py,sha256=v5VZxsqciwmOl3rzIBQLp5p6-OP8OG_EL3mu65_yrCM,240
56
+ kailash/middleware/database/models.py,sha256=CJwwUEdgxqBteXqpFJr1tWskjypJxViZXjODZlByrFk,17784
57
+ kailash/middleware/database/repositories.py,sha256=3sdHvUv6a0K5ZOoijLt_MLnYPnd8xzeeWPjiWCjGnf0,23296
58
+ kailash/middleware/database/session_manager.py,sha256=Pzj7c2TZnM3GRty2igSaxmLOf0-Fs67NVe2Q5lR_C-Q,379
59
+ kailash/middleware/mcp/__init__.py,sha256=EdZB8zOMSBEEmudRzs8ksz9QZJYWQMEx7Tm1MOwIWnI,922
60
+ kailash/middleware/mcp/client_integration.py,sha256=opzhB5TUts_ND8gARXh93nKCc1u4kwo6SqNMMWqMcSU,18258
61
+ kailash/middleware/mcp/enhanced_server.py,sha256=I82oRfzADPBM0ExxFNhZ-tI2kJTVBF0Hjx4uHfWkA2o,18456
62
+ kailash/nodes/__init__.py,sha256=E6CEp1ooq4GgFhKtwVAczOhPt5N3x-AVQ-R0n3_IFyA,936
63
+ kailash/nodes/base.py,sha256=5selOpaQvLXoy4VaiTbMxB7NbUhQ4tXdUF31-nPSGnc,51291
64
+ kailash/nodes/base_async.py,sha256=cjp0tedoxvwqr9fdC385vqInb3WTR0Wcx3ecLxhHiY0,6593
65
+ kailash/nodes/base_cycle_aware.py,sha256=Xpze9xZzLepWeLpi9Y3tMn1dm2LVv-omr5TSQuGTtWo,13377
66
+ kailash/nodes/base_with_acl.py,sha256=kY_OWfjHWy6uCw60zGgGybqk7dnNL6kST69cFbd9XqM,11844
67
+ kailash/nodes/mixins.py,sha256=ncAdNQPe1sphLByeerP6G_s8mjFLt7dM4baiozzIBPA,12083
68
+ kailash/nodes/validation.py,sha256=tuBZRZkDiEdvfeU7JaRB7v2-j1vxPYMJ1gVaJ-PKHRk,12117
69
+ kailash/nodes/admin/__init__.py,sha256=C9_pK2w0rH6JEV_-roypeasAIyIhEFKKnH-npGBeew0,1508
70
+ kailash/nodes/admin/audit_log.py,sha256=IsG91W7QDllhVsXRMXAw9LmSpZAJKn-4hFUZDHs-xao,28339
71
+ kailash/nodes/admin/permission_check.py,sha256=yA_vHWzMg3KH27oDnu1M6IWfxXWsRnH0m8x72YKkrFI,32484
72
+ kailash/nodes/admin/role_management.py,sha256=2jDQak5jIblP5Dd7vSCKt7h-4vbi6AEhCynu3blQ3vw,30184
73
+ kailash/nodes/admin/security_event.py,sha256=We_nGn6_J004b7LQVd0nKU6LmhJ6vyrl5zySC3xVdfo,56336
74
+ kailash/nodes/admin/user_management.py,sha256=Z31mDGC5J_73DtauH5fqGnv9MmEOPgxKOfIGGalR9GA,35305
75
+ kailash/nodes/ai/__init__.py,sha256=rslxIS8jlovshiNgWqVzQjD_kfT_3h3Ct03sk-iRe6U,2202
76
+ kailash/nodes/ai/a2a.py,sha256=QpTPl-Cm6mqzM0unLfqPrgEu964QP47g5p2T4clVPMs,70004
77
+ kailash/nodes/ai/agents.py,sha256=CRA3cdapQjpuvOniXUh6ZVWAlRxUIepVw1BROW6QzdY,20373
78
+ kailash/nodes/ai/ai_providers.py,sha256=XK7AzC8uL8nIxukZs6bxX4g75vcxCbehefgvR4QJgXk,62824
79
+ kailash/nodes/ai/embedding_generator.py,sha256=rsos3B6oWrgGTMIbwSWIBzGH9kq3SFVD_-bEDrujBRs,31860
80
+ kailash/nodes/ai/intelligent_agent_orchestrator.py,sha256=xw44C-CkcNH3SVmEJ49o4oNV3o4ZqjLE9aLpggwoIXs,83021
81
+ kailash/nodes/ai/iterative_llm_agent.py,sha256=pv54W_YDfDPDl6DJf0ul9_rs2mL2kE_C59sSAJ4CRn8,52884
82
+ kailash/nodes/ai/llm_agent.py,sha256=Beb07UNzCvPjHLTgYG9HeGsmuAXGLPjcExY30DghBfA,77566
83
+ kailash/nodes/ai/models.py,sha256=wsEeUTuegy87mnLtKgSTg7ggCXvC1n3MsL-iZ4qujHs,16393
84
+ kailash/nodes/ai/self_organizing.py,sha256=M7yCLkN4I1JCNU7PWuwrqwQSlaG9MJVxYIR44TV52MM,62877
85
+ kailash/nodes/ai/vision_utils.py,sha256=OHD9cVH_mq0WpJyQkNTj_mpipIVWfSV_bF9eA6CdyeA,4166
86
+ kailash/nodes/alerts/__init__.py,sha256=CY3agJ7VQ4yU68BhxMCaj18EGEaDecYfLxceHHP4o9c,782
87
+ kailash/nodes/alerts/base.py,sha256=qFU3cBF7jJNjScA0BJv2mTYCUTNQjbr4wTDEEvIGvRE,7598
88
+ kailash/nodes/alerts/discord.py,sha256=IPVyhb0i0QcWXxdP3MyeGCDP30pdSu-bEV-ueh9fwN0,16980
89
+ kailash/nodes/api/__init__.py,sha256=dzK6kiAdJcTQa7NSBkSmd5CCTSefBlMZMewGlTJSr0c,2334
90
+ kailash/nodes/api/auth.py,sha256=mve8rdshFIfLpkJX6M9opgDDru1LjcTyf3KpuCs1wd0,30869
91
+ kailash/nodes/api/graphql.py,sha256=6UBqWBbAysrerrx9lQMwwRM6mZT4-65ZINPhC_ObWmA,16975
92
+ kailash/nodes/api/http.py,sha256=LOWT4fIv4Qs7yCjmnahQK2H7ABrCNdMZiZSrCjKr00Y,38345
93
+ kailash/nodes/api/monitoring.py,sha256=vV0nLPyqw34YgsZvuegxNMSLyHU59pMdnzkdXelPYFc,17468
94
+ kailash/nodes/api/rate_limiting.py,sha256=kzArU7OrkDGLSqbjiOs5TSZz4VJsLeQYuYzOzwkfqSI,19657
95
+ kailash/nodes/api/rest.py,sha256=d1o6-Lz0-Hq9c5XSwuiwxajmLuZEcSoK-49awYjDByw,48738
96
+ kailash/nodes/api/security.py,sha256=VxMl5p7jWF2ViAqzHTFkte6agUiS9QEiQztV9l9PzDk,31134
97
+ kailash/nodes/auth/__init__.py,sha256=8d6OJCuyDytejA9_o_PDdRBFxuTdoTCScc4qRi5wlK4,562
98
+ kailash/nodes/auth/directory_integration.py,sha256=tzXyLdHMR2ja1Wf659BzSfSSd1P256D3LEfzPCgBUyE,47010
99
+ kailash/nodes/auth/enterprise_auth_provider.py,sha256=ggWgRTYPBXFtNG1XuYv3cE-3JyEGgMQMWqaBu8MjyMs,50368
100
+ kailash/nodes/auth/mfa.py,sha256=FqeKemNLn1smy8l_A5YxrwKAx19hoer3Wo0WmXP8pCA,85394
101
+ kailash/nodes/auth/risk_assessment.py,sha256=ZVKYCXp8saTBsVxonh2YAM_BkqBPg5HtulRT6PHWspk,30157
102
+ kailash/nodes/auth/session_management.py,sha256=FzOxic3hjmRlMiAQy7ps8a7XO7AoxYToZL9ywAcwKxY,38694
103
+ kailash/nodes/auth/sso.py,sha256=m-sYRNGEWwKfpvAzaHikGC3Wy45h0o-JhqgeYLTTV24,38507
104
+ kailash/nodes/code/__init__.py,sha256=L3QBfnITPb6v-Wbq2ezNWt8xDlC4uGaTgrkqIJ9vGKU,1191
105
+ kailash/nodes/code/python.py,sha256=RHolFWCkN-NFUv3ZvL5wPd4gxy9rEqg7uXSnpbAXtHU,50571
106
+ kailash/nodes/compliance/__init__.py,sha256=6a_FL4ofc8MAVuZ-ARW5uYenZLS4mBFVM9AI2QsnoF8,214
107
+ kailash/nodes/compliance/data_retention.py,sha256=rP85W9mIbbVb4LqxPFYYFySgUJXI5Q5mdoYLY0o3Mnw,69419
108
+ kailash/nodes/compliance/gdpr.py,sha256=iEAVU7Faqp0HVHk2KLw51oXr6VyJPycvsVL5IQR4ciY,70528
109
+ kailash/nodes/data/__init__.py,sha256=4UVGZ77ZjCUdDQqwOrhZH60Ka8hGVrZMZCySPk9mFJc,4898
110
+ kailash/nodes/data/async_connection.py,sha256=wfArHs9svU48bxGZIiixSV2YVn9cukNgEjagwTRu6J4,17250
111
+ kailash/nodes/data/async_sql.py,sha256=r1IVpMKLbxOZ_hGnlJJ0bE30Y8UoC2Lhw20c3Gc-yjo,27764
112
+ kailash/nodes/data/async_vector.py,sha256=HtwQLO25IXu8Vq80qzU8rMkUAKPQ2qM0x8YxjXHlygU,21005
113
+ kailash/nodes/data/directory.py,sha256=fbfLqD_ijRubk-4xew3604QntPsyDxqaF4k6TpfyjDg,9923
114
+ kailash/nodes/data/event_generation.py,sha256=Bc1se0tPg1IAGCQDrWqlFmgoOpUyfMN9ku4Lm3akhXU,11579
115
+ kailash/nodes/data/file_discovery.py,sha256=njLLusndwBFwbaWP8rcaiE0UQ49RpDlNQ-3SXH7Jhi4,21733
116
+ kailash/nodes/data/readers.py,sha256=fX82yQSLGPUFbSf6krT_-9gybp6IBnBH-Lcr87aNlHQ,45962
117
+ kailash/nodes/data/retrieval.py,sha256=H8Qb2R64fQ_OeaQBh6jVn7-xLuygiF3fjzbh4ssNOrU,20591
118
+ kailash/nodes/data/sharepoint_graph.py,sha256=J1_KZQ5s8yXkjGY1PjsMY7T8viKARi3os5P8CXpmn2U,37160
119
+ kailash/nodes/data/sources.py,sha256=tvgDDDerWELD6QkAm73ciKmNakD_SYMd50idlOjpbF0,3632
120
+ kailash/nodes/data/sql.py,sha256=ByBr_IaJuHJahyrgrtixFcWTZjE9A1XkSMCHE1K_9mo,33933
121
+ kailash/nodes/data/streaming.py,sha256=VE4e3CNuRAdjckV8UXFpkTj3mPLY2cicoZwnkq10ZnE,37163
122
+ kailash/nodes/data/vector_db.py,sha256=pwCl-3tyk_Cv_VQ8GafgodJ1yM88W1BXCIcYC56XoqU,32056
123
+ kailash/nodes/data/writers.py,sha256=-RPLetKhKAPXOU6YPwMkVRXF8by6ROhgICm3aUnGcFs,17537
124
+ kailash/nodes/enterprise/__init__.py,sha256=1a6SsEnzozP4MSFDo-Yimzx-e65NwnmGeTDMammSrtk,407
125
+ kailash/nodes/enterprise/batch_processor.py,sha256=wA9AtBC_roLF040zoFSBo7wqdE2KFWvVLMIRBBR2_cY,27170
126
+ kailash/nodes/enterprise/data_lineage.py,sha256=oC5eVWdjfy2EqRQGLcLCfm3nu-WeAScZMtFY9o-NFB4,19253
127
+ kailash/nodes/logic/__init__.py,sha256=JKGFXwBDfY3s1MWQkx3ivdvCMm3b3HIXCn-wH9uMoG4,603
128
+ kailash/nodes/logic/async_operations.py,sha256=HJ1YULrh5U8WNYbuwTthmMfqBh1xomVQcSEe3gt8rYA,27501
129
+ kailash/nodes/logic/convergence.py,sha256=D9rdLe2VTqTne2RkD8phAENL3LAdjbl4mzsj6QEXwQE,25076
130
+ kailash/nodes/logic/loop.py,sha256=34hnrcfeigcpsVcomsd-ZLE2x7f3irAd_-Q89vZzW9w,5756
131
+ kailash/nodes/logic/operations.py,sha256=IkRa3whMiNiyiceQrXAbXWyG2USgdwoLvqB9itlypxE,28718
132
+ kailash/nodes/logic/workflow.py,sha256=p2ED6tOWGVC50iNyUInSpJI41eBXmSF8Tb_w0h7NeD0,17136
133
+ kailash/nodes/mixins/__init__.py,sha256=0WYfu5kj-lHbFwP9g5vmlbsG8UzvI-vhOyHMEUzXbz4,558
134
+ kailash/nodes/mixins/event_emitter.py,sha256=xTeNrBWmuWIf8qYA5DZekymjjrTAD1sboW9dKbAP40w,7492
135
+ kailash/nodes/mixins/mcp.py,sha256=HSULx66VY-e8h5R4HjcNDI5pPVq3MN9HxD8T9FI9vRo,7040
136
+ kailash/nodes/mixins/security.py,sha256=oxIwfKHd6Sdmd2GIaoNkRcSzVHUusYKyGNA7rM61fvw,5534
137
+ kailash/nodes/monitoring/__init__.py,sha256=my9X4QK-RPAtdkHpQSdwnFc7kVPi-XXxnc90-p-vu5s,168
138
+ kailash/nodes/monitoring/performance_benchmark.py,sha256=KPDjsoSZ1TT0Z1teITDdSbdpYXvyJUoPzgsVWdzQybs,87637
139
+ kailash/nodes/rag/__init__.py,sha256=0tUkBZoUvRep7O_isRvb8b5HF9OfUeAGo7AMjfJjfp0,8705
140
+ kailash/nodes/rag/advanced.py,sha256=oPcdS8i4yscJ3NCkwQjv9KCwNhmC_5tp8JZ1_XPQY4I,60265
141
+ kailash/nodes/rag/agentic.py,sha256=6jmUJphKPYXRH7P3K5fPPFuKy1BYfkgR7Mmkv8JvPaM,24153
142
+ kailash/nodes/rag/conversational.py,sha256=wmN4dArb1XBYYc2wm-FSDuykqbX8EfsHvA-FVEMjEa0,35498
143
+ kailash/nodes/rag/evaluation.py,sha256=0UE-lPAP_xioexr1GYPs6JmhfglIlGOKZi4BMlL9vEo,29918
144
+ kailash/nodes/rag/federated.py,sha256=Z6AmVbf0byPaRppWRl2KJzbcTXEngW5Lec3jHbwfOzo,43138
145
+ kailash/nodes/rag/graph.py,sha256=uXMn_zjqNl0TAoUuPPCws6Ue2nGLvSIUqwQ_kZJPXTs,24601
146
+ kailash/nodes/rag/multimodal.py,sha256=PlESsoT3E_yi6LI0WG1nYPA670q776aM25jcLbu9pSM,21831
147
+ kailash/nodes/rag/optimized.py,sha256=MSqzrK_nl-HQDmyATGa8K--yu53bGyJ705hEfB4tOFA,28469
148
+ kailash/nodes/rag/privacy.py,sha256=veGutDjRzq5HdmIa7F2KR5DZB3jKPdyncKAT1tCSEbk,36712
149
+ kailash/nodes/rag/query_processing.py,sha256=rwQUiDw2x3QJ5bFaOELMGVapkxHrffvK0XULEpbQmBc,44674
150
+ kailash/nodes/rag/realtime.py,sha256=oK3G6zdKWGFEiTVYICuPyeXIjFrYlb2ga62wwfijqRc,24754
151
+ kailash/nodes/rag/registry.py,sha256=MmoIKDi6gTRuj_c9wIJlxjsUX868pnnAGFsiWA-Fqa0,19275
152
+ kailash/nodes/rag/router.py,sha256=yEMd1Q7y40_hguqHnTeiZFer_XhN1fad-A5jUKkf3pA,30139
153
+ kailash/nodes/rag/similarity.py,sha256=61ukXp8xMRtQi2BO-IL7bAj3mCUs8zAHrbcJjWD6O5w,61257
154
+ kailash/nodes/rag/strategies.py,sha256=FqJKiVb1Mq4BfJNFwrugKg_ovf7ULbyuF_uTvs4VQ30,18444
155
+ kailash/nodes/rag/workflows.py,sha256=PL9d3Lk15drwo2QVdNR9B61EpZ8Kc1crjnqFXc10O1I,20008
156
+ kailash/nodes/security/__init__.py,sha256=oaoZdbKhjEZ8vtUHGRPZPDixInzFDmhUZg4ou_Lz6mI,611
157
+ kailash/nodes/security/abac_evaluator.py,sha256=l2DT-akmJ_etM9ImmLydYNvd8TGDejTziFuoWCrqCDU,50289
158
+ kailash/nodes/security/audit_log.py,sha256=zjwLoWHJLhkJiD5rRmE8H2mSEE7-6EHh_FR0FT91uLU,3130
159
+ kailash/nodes/security/behavior_analysis.py,sha256=-V6Vq1WwACxK6B607ykKOh9HZhCPbY4NPvaUHBkjqsQ,71543
160
+ kailash/nodes/security/credential_manager.py,sha256=USFQvX-ZPB537IEtKfD7y6alcVpOAIpAr0bj9V68W_k,14964
161
+ kailash/nodes/security/rotating_credentials.py,sha256=qP04ARlrQAqEljOCXAmn-bsQlLFgoWlqZWerRD-srjo,28884
162
+ kailash/nodes/security/security_event.py,sha256=yVP8foaki-LDD16mlRapaPsbaWMwsum5J_V0n1bnqvw,4150
163
+ kailash/nodes/security/threat_detection.py,sha256=F-8QXx3FOZi1-poZdfTHa_phY1ectl4jYkzjfl3ck8U,40065
164
+ kailash/nodes/testing/__init__.py,sha256=TpaRD5YHwT6R3pI0r0WU99-Vgixj6gmCbZewnt8K8uI,274
165
+ kailash/nodes/testing/credential_testing.py,sha256=FiiVyBqL-fdHw7t6g7_Wq3104siM83llOmi-UFykMEw,17919
166
+ kailash/nodes/transform/__init__.py,sha256=JWciUYn9y78-tWiYhc4SCXRoy8YP2O3S2dRp-BXVQxA,765
167
+ kailash/nodes/transform/chunkers.py,sha256=StRuS6-eLE67OVsqqJJF8dqA2jngD-4yp_rjZQfMAAA,24621
168
+ kailash/nodes/transform/formatters.py,sha256=BWb5depTZ23Bbg41A_nZojIeET7in6WxYvi3Bhjg-bk,3072
169
+ kailash/nodes/transform/processors.py,sha256=lLEujPQfZXEDIpgcDoQG6_5s9UgBwWmf0N6rzLVehAA,38353
170
+ kailash/runtime/__init__.py,sha256=CvU-qBMESYYISqFOlYlLsYJrXJu0Gqr4x6yr4Ob_Rng,278
171
+ kailash/runtime/access_controlled.py,sha256=Td8Fa8oPxEqlb74bDiH_HtT6J-ku0AudvN7mrUZOacc,17219
172
+ kailash/runtime/async_local.py,sha256=qQWCrdBNoa-E6113UqYQ--C5u8F-wq6p1nESLnshIjg,13699
173
+ kailash/runtime/docker.py,sha256=sZknVl1PCGfAZeyc0-exTuKlllSyjYlFIgJoiB3CRNs,23500
174
+ kailash/runtime/local.py,sha256=i2hnRrk2Ks0Q5jR9SkBhM6d6plJbpH0i7rNkJ8laLCw,39078
175
+ kailash/runtime/parallel.py,sha256=mz_wPD13-YVc3Q_8HkOs4nPQPdTjnjCcnRL7ZRM70lo,21070
176
+ kailash/runtime/parallel_cyclic.py,sha256=yANZHnePjhCPuCFbq3lFQA1K6jbCv5Of5-vIKbCsmZk,19863
177
+ kailash/runtime/runner.py,sha256=Lt9ugsk56ICD9XLKJjnhejtqdiz0mJNdlqH7sSxIlWU,3214
178
+ kailash/runtime/testing.py,sha256=-Uiq58evL0jzaT8c0Q1oEqQNjeQhkNe3HGrU0FKQ3rQ,19073
179
+ kailash/tracking/__init__.py,sha256=nhyecV24JuB_D-veJ3qw7h4oO8Sbdmyb6RvPS6VQktU,305
180
+ kailash/tracking/manager.py,sha256=OxDgvuObiLLcje7-DF5DRIqi8f5clzvrlean1RrL9KE,28006
181
+ kailash/tracking/metrics_collector.py,sha256=rvKvm2BzhAwdFazJpEQ87j78AMVDSehoScZK4Tfm3O8,11798
182
+ kailash/tracking/models.py,sha256=9Fwcd1hqRwlAsU88FFMJsqNn2GlkJaUxmynnS2aFhdY,17912
183
+ kailash/tracking/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
184
+ kailash/tracking/storage/base.py,sha256=wWkK1XdrMV0EGxlbFDyfuVnDoIG0tdSPPwz_8iwzdNI,2299
185
+ kailash/tracking/storage/database.py,sha256=O3-qYmgwTccq9jYl25C0L6R398pXPsWkIAoWLL1aZvQ,20048
186
+ kailash/tracking/storage/filesystem.py,sha256=VhWxNvqf_Ta3mIaGqKuOrcCqQiEvJj7S8NK5yRd1V68,19627
187
+ kailash/utils/__init__.py,sha256=pFKhHJxU_kyFE9aGT5recw5E-3nbfVF5pMHepBJWB2E,253
188
+ kailash/utils/export.py,sha256=HViwFBtg20VnGBC9gQjHcnu44wQ1u2vOZMXR8EtfGvw,31913
189
+ kailash/utils/secure_logging.py,sha256=3iEJt7sXnIgvdiRz8qsx0JbcygrsUf0_C8UHFXLNfcs,11325
190
+ kailash/utils/templates.py,sha256=1O9mniUTJmZZFkC1gFaWy73pDIZxcawljDIQpPj6G9Q,21977
191
+ kailash/utils/migrations/__init__.py,sha256=smrA1fcJ88d0mDHukhcxM0oNI9hYlLbbUL9-wgdetHs,758
192
+ kailash/utils/migrations/generator.py,sha256=QvVT0Z6NCH1ageXi2gsDzzkpkpZsRAyeIpmoV3fvBoY,13157
193
+ kailash/utils/migrations/models.py,sha256=BSiz6Ucgl9OSi8Wm-QWZ1ALBDWurxWnr0Tqk1ZvV6YY,6922
194
+ kailash/utils/migrations/runner.py,sha256=atE7jYhk0Jr-A6UtZ1XbkNEBzE0ZqJvddaTKKcUU3gU,17199
195
+ kailash/visualization/__init__.py,sha256=6bvgE_Rt8z3Rf4kSvdWvZNaTYvbofRHc_QbGlC0xDYE,1880
196
+ kailash/visualization/api.py,sha256=AavUemsir_tCQgU-YZxo9RyrZJP5g__RCaE7B8_eJIc,28755
197
+ kailash/visualization/dashboard.py,sha256=26uL82scgQEhOhqDTyZ-UJr9rNkW9pLw_iJ9bIu3GSs,32806
198
+ kailash/visualization/performance.py,sha256=KvB7IG8Un2sM1ZnT1TWOabwj4kK40DlCWUN33Mb89nk,28514
199
+ kailash/visualization/reports.py,sha256=D7kJ0flHr16d-qSEq8vnw20N8u_dgTrXtKVSXVm886w,52778
200
+ kailash/workflow/__init__.py,sha256=eUTrN7nVrbw1VaqGeYUzFjC0Un5YIjzh3-03OWPiFSs,1513
201
+ kailash/workflow/builder.py,sha256=KZkg0gxreBB4axgHWlYxn11u6u5QdQpeCuyR6yhoeBw,7652
202
+ kailash/workflow/convergence.py,sha256=vfIDR-uNaQE-LVUEzrRtfgKPgX9gL0nLNH-nTg5ra-c,10031
203
+ kailash/workflow/cycle_analyzer.py,sha256=BGBpgdB-g0-KRI65sVAvHV4lxfoCzMt4uKOHbw8GXT4,32596
204
+ kailash/workflow/cycle_builder.py,sha256=uWAx8K4ZKMtFC3mWylK4gHT03xeu0xChJlhw50hVqEE,20883
205
+ kailash/workflow/cycle_config.py,sha256=DSoQMFH_dqjYbJU5PegCsmswjdlb0f-4XhNKUtFp6PM,28388
206
+ kailash/workflow/cycle_debugger.py,sha256=eG-Q_kakqyhr1Ts-q4pRnO0EI7mVO9ao1s9WOxeXo8E,31535
207
+ kailash/workflow/cycle_exceptions.py,sha256=4_OLnbEXqIiXKzOc3uh8DzFik4wEHwl8bRZhY9Xhf2A,21838
208
+ kailash/workflow/cycle_profiler.py,sha256=aEWSCm0Xy15SjgLTpPooVJMzpFhtJWt4livR-3Me4N8,28547
209
+ kailash/workflow/cycle_state.py,sha256=hzRUvciRreWfS56Cf7ZLQPit_mlPTQDoNTawh8yi-2s,10747
210
+ kailash/workflow/cyclic_runner.py,sha256=62GgaidZJ8tCJpDR2Zts5t9ugeZxMAAN658zC7_s0jc,37102
211
+ kailash/workflow/graph.py,sha256=Dk-5DuhybQlBprLIkblMEmChc9a-Xci7elDqHa4JEGI,55920
212
+ kailash/workflow/mermaid_visualizer.py,sha256=UsQDvxgIAhy-Th7ZzFnbuziaTx1Cd5yUh6S_25DffoQ,22294
213
+ kailash/workflow/migration.py,sha256=zsmXgbUtOZdjoOx9YoEY0-x7uOY1T-_yQo4MnZjokCQ,31487
214
+ kailash/workflow/mock_registry.py,sha256=J4gyH8YdhRyhvORDVxGTya0FgDK8iAA8Nonur6p9s-o,1692
215
+ kailash/workflow/resilience.py,sha256=_SvyeTQIY5XYGZMB14-mxeq5KSB4hdt4UwauaWiIJZc,8214
216
+ kailash/workflow/runner.py,sha256=l6jb-H7DwbRlvQ3H3SuTs70rut-u7H3Gi8nybKCEjZU,10795
217
+ kailash/workflow/safety.py,sha256=pS5GKu7UdkzFZcb16Dn-0jBxjULDU-59_M0CbUVMVyw,11298
218
+ kailash/workflow/state.py,sha256=UTZxs5-Ona6uvBhx1__i6-RX8gB4qazkBIWE7uyRmWQ,7600
219
+ kailash/workflow/templates.py,sha256=MTIMHGyQML6omLbqeKDbTVIVykfXG6pIFWTTsGBUHN0,48591
220
+ kailash/workflow/validation.py,sha256=JIbIajWVIaWHSvWtgZ4WUVJaBaUOCz5B9cyTwM--dL4,33060
221
+ kailash/workflow/visualization.py,sha256=ICMWCWqh5fOQ7eJygbvu2PMWHxe-H5_0epwdZuz8cMw,19737
222
+ kailash-0.4.1.dist-info/licenses/LICENSE,sha256=Axe6g7bTrJkToK9h9j2SpRUKKNaDZDCo2lQ2zPxCE6s,1065
223
+ kailash-0.4.1.dist-info/METADATA,sha256=KN5COKUq4zgWFi10SlSZFDln22hgMj9qb7TyZAJTLq8,24793
224
+ kailash-0.4.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
225
+ kailash-0.4.1.dist-info/entry_points.txt,sha256=M_q3b8PG5W4XbhSgESzIJjh3_4OBKtZFYFsOdkr2vO4,45
226
+ kailash-0.4.1.dist-info/top_level.txt,sha256=z7GzH2mxl66498pVf5HKwo5wwfPtt9Aq95uZUpH6JV0,8
227
+ kailash-0.4.1.dist-info/RECORD,,
kailash/api/__init__.py DELETED
@@ -1,17 +0,0 @@
1
- """
2
- Kailash API module for exposing workflows as REST APIs.
3
- """
4
-
5
- from .gateway import WorkflowAPIGateway, WorkflowOrchestrator
6
- from .mcp_integration import MCPIntegration, MCPToolNode
7
- from .workflow_api import HierarchicalRAGAPI, WorkflowAPI, create_workflow_api
8
-
9
- __all__ = [
10
- "WorkflowAPI",
11
- "HierarchicalRAGAPI",
12
- "create_workflow_api",
13
- "WorkflowAPIGateway",
14
- "WorkflowOrchestrator",
15
- "MCPIntegration",
16
- "MCPToolNode",
17
- ]
kailash/api/__main__.py DELETED
@@ -1,6 +0,0 @@
1
- """Entry point for running the Workflow Studio API."""
2
-
3
- from .studio import main
4
-
5
- if __name__ == "__main__":
6
- main()