kailash 0.3.1__py3-none-any.whl → 0.4.0__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 (146) 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 +25 -3
  37. kailash/nodes/admin/__init__.py +35 -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 +1519 -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 +1 -0
  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 +407 -2
  48. kailash/nodes/ai/self_organizing.py +85 -10
  49. kailash/nodes/api/auth.py +287 -6
  50. kailash/nodes/api/rest.py +151 -0
  51. kailash/nodes/auth/__init__.py +17 -0
  52. kailash/nodes/auth/directory_integration.py +1228 -0
  53. kailash/nodes/auth/enterprise_auth_provider.py +1328 -0
  54. kailash/nodes/auth/mfa.py +2338 -0
  55. kailash/nodes/auth/risk_assessment.py +872 -0
  56. kailash/nodes/auth/session_management.py +1093 -0
  57. kailash/nodes/auth/sso.py +1040 -0
  58. kailash/nodes/base.py +344 -13
  59. kailash/nodes/base_cycle_aware.py +4 -2
  60. kailash/nodes/base_with_acl.py +1 -1
  61. kailash/nodes/code/python.py +293 -12
  62. kailash/nodes/compliance/__init__.py +9 -0
  63. kailash/nodes/compliance/data_retention.py +1888 -0
  64. kailash/nodes/compliance/gdpr.py +2004 -0
  65. kailash/nodes/data/__init__.py +22 -2
  66. kailash/nodes/data/async_connection.py +469 -0
  67. kailash/nodes/data/async_sql.py +757 -0
  68. kailash/nodes/data/async_vector.py +598 -0
  69. kailash/nodes/data/readers.py +767 -0
  70. kailash/nodes/data/retrieval.py +360 -1
  71. kailash/nodes/data/sharepoint_graph.py +397 -21
  72. kailash/nodes/data/sql.py +94 -5
  73. kailash/nodes/data/streaming.py +68 -8
  74. kailash/nodes/data/vector_db.py +54 -4
  75. kailash/nodes/enterprise/__init__.py +13 -0
  76. kailash/nodes/enterprise/batch_processor.py +741 -0
  77. kailash/nodes/enterprise/data_lineage.py +497 -0
  78. kailash/nodes/logic/convergence.py +31 -9
  79. kailash/nodes/logic/operations.py +14 -3
  80. kailash/nodes/mixins/__init__.py +8 -0
  81. kailash/nodes/mixins/event_emitter.py +201 -0
  82. kailash/nodes/mixins/mcp.py +9 -4
  83. kailash/nodes/mixins/security.py +165 -0
  84. kailash/nodes/monitoring/__init__.py +7 -0
  85. kailash/nodes/monitoring/performance_benchmark.py +2497 -0
  86. kailash/nodes/rag/__init__.py +284 -0
  87. kailash/nodes/rag/advanced.py +1615 -0
  88. kailash/nodes/rag/agentic.py +773 -0
  89. kailash/nodes/rag/conversational.py +999 -0
  90. kailash/nodes/rag/evaluation.py +875 -0
  91. kailash/nodes/rag/federated.py +1188 -0
  92. kailash/nodes/rag/graph.py +721 -0
  93. kailash/nodes/rag/multimodal.py +671 -0
  94. kailash/nodes/rag/optimized.py +933 -0
  95. kailash/nodes/rag/privacy.py +1059 -0
  96. kailash/nodes/rag/query_processing.py +1335 -0
  97. kailash/nodes/rag/realtime.py +764 -0
  98. kailash/nodes/rag/registry.py +547 -0
  99. kailash/nodes/rag/router.py +837 -0
  100. kailash/nodes/rag/similarity.py +1854 -0
  101. kailash/nodes/rag/strategies.py +566 -0
  102. kailash/nodes/rag/workflows.py +575 -0
  103. kailash/nodes/security/__init__.py +19 -0
  104. kailash/nodes/security/abac_evaluator.py +1411 -0
  105. kailash/nodes/security/audit_log.py +91 -0
  106. kailash/nodes/security/behavior_analysis.py +1893 -0
  107. kailash/nodes/security/credential_manager.py +401 -0
  108. kailash/nodes/security/rotating_credentials.py +760 -0
  109. kailash/nodes/security/security_event.py +132 -0
  110. kailash/nodes/security/threat_detection.py +1103 -0
  111. kailash/nodes/testing/__init__.py +9 -0
  112. kailash/nodes/testing/credential_testing.py +499 -0
  113. kailash/nodes/transform/__init__.py +10 -2
  114. kailash/nodes/transform/chunkers.py +592 -1
  115. kailash/nodes/transform/processors.py +484 -14
  116. kailash/nodes/validation.py +321 -0
  117. kailash/runtime/access_controlled.py +1 -1
  118. kailash/runtime/async_local.py +41 -7
  119. kailash/runtime/docker.py +1 -1
  120. kailash/runtime/local.py +474 -55
  121. kailash/runtime/parallel.py +1 -1
  122. kailash/runtime/parallel_cyclic.py +1 -1
  123. kailash/runtime/testing.py +210 -2
  124. kailash/utils/migrations/__init__.py +25 -0
  125. kailash/utils/migrations/generator.py +433 -0
  126. kailash/utils/migrations/models.py +231 -0
  127. kailash/utils/migrations/runner.py +489 -0
  128. kailash/utils/secure_logging.py +342 -0
  129. kailash/workflow/__init__.py +16 -0
  130. kailash/workflow/cyclic_runner.py +3 -4
  131. kailash/workflow/graph.py +70 -2
  132. kailash/workflow/resilience.py +249 -0
  133. kailash/workflow/templates.py +726 -0
  134. {kailash-0.3.1.dist-info → kailash-0.4.0.dist-info}/METADATA +253 -20
  135. kailash-0.4.0.dist-info/RECORD +223 -0
  136. kailash/api/__init__.py +0 -17
  137. kailash/api/__main__.py +0 -6
  138. kailash/api/studio_secure.py +0 -893
  139. kailash/mcp/__main__.py +0 -13
  140. kailash/mcp/server_new.py +0 -336
  141. kailash/mcp/servers/__init__.py +0 -12
  142. kailash-0.3.1.dist-info/RECORD +0 -136
  143. {kailash-0.3.1.dist-info → kailash-0.4.0.dist-info}/WHEEL +0 -0
  144. {kailash-0.3.1.dist-info → kailash-0.4.0.dist-info}/entry_points.txt +0 -0
  145. {kailash-0.3.1.dist-info → kailash-0.4.0.dist-info}/licenses/LICENSE +0 -0
  146. {kailash-0.3.1.dist-info → kailash-0.4.0.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.1
3
+ Version: 0.4.0
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,71 @@ 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
+ - 🏭 **Session 067 Enhancements**: Business workflow templates, data lineage tracking, automatic credential rotation
120
+ - 🔄 **Zero-Downtime Operations**: Automatic credential rotation with enterprise notifications and audit trails
121
+ - 🌉 **Enterprise Middleware (v0.4.0)**: Production-ready middleware architecture with real-time agent-frontend communication, dynamic workflows, and AI chat integration
122
+
123
+ ## 🏗️ Project Architecture
124
+
125
+ The Kailash project is organized into three distinct layers:
126
+
127
+ ### Core Architecture (v0.4.0)
128
+ ```
129
+ ┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
130
+ │ Frontend │ │ Middleware │ │ Kailash Core │
131
+ │ │ │ │ │ │
132
+ │ • React/Vue │◄───│ • Agent-UI │◄───│ • Workflows │
133
+ │ • JavaScript │ │ • Real-time │ │ • Nodes │
134
+ │ • Mobile Apps │ │ • API Gateway │ │ • Runtime │
135
+ │ │ │ • AI Chat │ │ • Security │
136
+ │ │ │ • WebSocket/SSE │ │ • Database │
137
+ └─────────────────┘ └──────────────────┘ └─────────────────┘
138
+ ```
139
+
140
+ ```
141
+ kailash_python_sdk/
142
+ ├── src/kailash/ # Core SDK - Framework and building blocks
143
+ ├── apps/ # Applications - Production-ready solutions built with the SDK
144
+ └── studio/ # UI Layer - Frontend interfaces and visual tools
145
+ ```
146
+
147
+ ### Layer Overview
148
+
149
+ 1. **SDK Layer** (`src/kailash/`) - The core framework providing:
150
+ - Nodes: Reusable computational units (100+ built-in)
151
+ - Workflows: DAG-based orchestration with cyclic support
152
+ - Runtime: Unified execution engine (async + enterprise)
153
+ - Middleware: Enterprise communication layer (NEW in v0.4.0)
154
+ - Security: RBAC/ABAC access control with audit logging
155
+
156
+ 2. **Application Layer** (`apps/`) - Complete applications including:
157
+ - User Management System (Django++ capabilities)
158
+ - Future: Workflow Designer, Data Pipeline, API Gateway, etc.
159
+
160
+ 3. **UI Layer** (`studio/`) - Modern React interfaces for:
161
+ - Admin dashboards
162
+ - Workflow visualization
163
+ - Application UIs
164
+
165
+ ### Installation Options
166
+
167
+ ```bash
168
+ # Core SDK only
169
+ pip install kailash
170
+
171
+ # SDK with User Management
172
+ pip install kailash[user-management]
173
+
174
+ # Everything
175
+ pip install kailash[all]
176
+ ```
114
177
 
115
178
  ## 🎯 Who Is This For?
116
179
 
@@ -257,7 +320,7 @@ workflow.add_node("optimizer", PythonCodeNode.from_function(func=optimize_portfo
257
320
  - Industry-specific solutions by vertical
258
321
  - Enterprise integration patterns
259
322
  - `essentials/` - Quick reference and cheatsheets
260
- - `nodes/` - Comprehensive node catalog (66+ nodes)
323
+ - `nodes/` - Comprehensive node catalog (93+ nodes including Session 067 enhancements)
261
324
  - `patterns/` - Architectural patterns
262
325
 
263
326
  ### For SDK Contributors
@@ -282,8 +345,112 @@ workflow.add_node("optimizer", PythonCodeNode.from_function(func=optimize_portfo
282
345
  - [Examples](examples/)
283
346
  - [Release Notes](CHANGELOG.md)
284
347
 
348
+ ## 🌉 Enterprise Middleware (v0.4.0)
349
+
350
+ ### Production-Ready Communication Layer
351
+
352
+ The new middleware architecture provides enterprise-grade components for building production applications:
353
+
354
+ ```python
355
+ from kailash.middleware import (
356
+ AgentUIMiddleware,
357
+ APIGateway,
358
+ create_gateway,
359
+ RealtimeMiddleware,
360
+ AIChatMiddleware
361
+ )
362
+
363
+ # Create enterprise middleware stack
364
+ agent_ui = AgentUIMiddleware(
365
+ max_sessions=1000,
366
+ session_timeout_minutes=60,
367
+ enable_persistence=True
368
+ )
369
+
370
+ # API Gateway with authentication
371
+ gateway = create_gateway(
372
+ title="My Production API",
373
+ cors_origins=["https://myapp.com"],
374
+ enable_docs=True
375
+ )
376
+
377
+ # Real-time communication
378
+ realtime = RealtimeMiddleware(agent_ui)
379
+
380
+ # AI chat integration
381
+ ai_chat = AIChatMiddleware(
382
+ agent_ui,
383
+ enable_vector_search=True,
384
+ llm_provider="ollama"
385
+ )
386
+ ```
387
+
388
+ ### Key Middleware Features
389
+
390
+ - **Dynamic Workflow Creation**: Create workflows from frontend configurations using `WorkflowBuilder.from_dict()`
391
+ - **Real-time Communication**: WebSocket and SSE support for live updates
392
+ - **Session Management**: Multi-tenant isolation with automatic cleanup
393
+ - **AI Chat Integration**: Natural language workflow generation with context awareness
394
+ - **Database Persistence**: Repository pattern with audit logging
395
+ - **JWT Authentication**: Enterprise security with RBAC/ABAC access control
396
+ - **Health Monitoring**: Built-in health checks and performance metrics
397
+
398
+ ### Frontend Integration
399
+
400
+ ```python
401
+ # Create session for frontend client
402
+ session_id = await agent_ui.create_session("user123")
403
+
404
+ # Dynamic workflow from frontend
405
+ workflow_config = {
406
+ "name": "data_pipeline",
407
+ "nodes": [...],
408
+ "connections": [...]
409
+ }
410
+
411
+ workflow_id = await agent_ui.create_dynamic_workflow(
412
+ session_id, workflow_config
413
+ )
414
+
415
+ # Execute with real-time updates
416
+ execution_id = await agent_ui.execute_workflow(
417
+ session_id, workflow_id, inputs={}
418
+ )
419
+ ```
420
+
421
+ **Test Excellence**: 17/17 integration tests passing with 100% reliability for production deployment.
422
+
423
+ See [Middleware Integration Guide](sdk-users/developer/16-middleware-integration-guide.md) for complete documentation.
424
+
285
425
  ## 🔥 Advanced Features
286
426
 
427
+ ### Unified Access Control (v0.3.3)
428
+
429
+ Single interface for all access control strategies:
430
+
431
+ ```python
432
+ from kailash.access_control import AccessControlManager
433
+
434
+ # Choose your strategy
435
+ manager = AccessControlManager(strategy="abac") # or "rbac" or "hybrid"
436
+
437
+ # ABAC example with helper functions
438
+ from kailash.access_control import create_attribute_condition
439
+
440
+ condition = create_attribute_condition(
441
+ path="user.attributes.department",
442
+ operator="hierarchical_match",
443
+ value="finance"
444
+ )
445
+
446
+ # Database integration
447
+ db_node = AsyncSQLDatabaseNode(
448
+ name="financial_query",
449
+ query="SELECT * FROM sensitive_data",
450
+ access_control_manager=manager
451
+ )
452
+ ```
453
+
287
454
  ### Cyclic Workflows (Enhanced in v0.2.2)
288
455
 
289
456
  Build iterative workflows with the new CycleBuilder API:
@@ -346,14 +513,16 @@ api.run()
346
513
 
347
514
  ## 🏗️ Key Components
348
515
 
349
- ### Nodes (60+ built-in)
516
+ ### Nodes (85+ built-in)
350
517
 
351
- - **Data**: CSVReaderNode, JSONReaderNode, SQLDatabaseNode, DirectoryReaderNode
518
+ - **Data**: CSVReaderNode, JSONReaderNode, SQLDatabaseNode, AsyncSQLDatabaseNode, DirectoryReaderNode
519
+ - **Admin**: UserManagementNode, RoleManagementNode, PermissionCheckNode, AuditLogNode, SecurityEventNode
352
520
  - **Transform**: DataTransformer, DataFrameFilter, DataFrameJoiner
353
- - **AI/ML**: LLMAgentNode, EmbeddingGeneratorNode, A2ACoordinatorNode
354
- - **API**: RESTClientNode, GraphQLNode, AuthNode
521
+ - **AI/ML**: LLMAgentNode, EmbeddingGeneratorNode, A2ACoordinatorNode, MCPAgentNode
522
+ - **API**: RESTClientNode, GraphQLNode, AuthNode, HTTPRequestNode
355
523
  - **Logic**: SwitchNode, MergeNode, ConvergenceCheckerNode
356
524
  - **Code**: PythonCodeNode, WorkflowNode
525
+ - **Security**: EnhancedAccessControlManager (ABAC with 16 operators)
357
526
 
358
527
  ### Runtimes
359
528
 
@@ -443,23 +612,87 @@ ruff check .
443
612
  python scripts/test-all-examples.py
444
613
  ```
445
614
 
615
+ ## 🧪 Tests & Examples
616
+
617
+ ### Comprehensive Test Suite
618
+ The SDK features a fully reorganized test suite with 127 tests organized by purpose:
619
+
620
+ ```bash
621
+ # Run all tests
622
+ pytest
623
+
624
+ # Fast unit tests (92 tests)
625
+ pytest tests/unit/
626
+
627
+ # Integration tests (31 tests)
628
+ pytest tests/integration/
629
+
630
+ # End-to-end tests (4 tests)
631
+ pytest tests/e2e/
632
+
633
+ # Specific component tests
634
+ pytest tests/unit/nodes/ai/
635
+ ```
636
+
637
+ **Test Structure:**
638
+ - **Unit Tests**: Fast, isolated component validation
639
+ - **Integration Tests**: Component interaction testing
640
+ - **E2E Tests**: Complete scenario validation
641
+ - **Unified Configuration**: Single `conftest.py` with 76+ fixtures
642
+
643
+ ### Production Workflows & Examples
644
+ Clear separation of purpose for maximum value:
645
+
646
+ **Business Workflows** (`sdk-users/workflows/`):
647
+ ```
648
+ sdk-users/workflows/
649
+ ├── quickstart/ # 5-minute success stories
650
+ ├── by-industry/ # Finance, healthcare, manufacturing
651
+ ├── by-pattern/ # Data processing, AI/ML, API integration
652
+ ├── integrations/ # Third-party platform connections
653
+ └── production-ready/ # Enterprise deployment patterns
654
+ ```
655
+
656
+ **SDK Development** (`examples/`):
657
+ ```
658
+ examples/
659
+ ├── feature-validation/ # SDK component testing
660
+ ├── test-harness/ # Development utilities
661
+ └── utils/ # Shared development tools
662
+ ```
663
+
664
+ **Key Principles:**
665
+ - **Workflows**: Production business value, real-world solutions
666
+ - **Examples**: SDK development, feature validation
667
+ - **Tests**: Quality assurance, regression prevention
668
+
446
669
  ## 📈 Project Status
447
670
 
448
- -Core workflow engine
449
- - 60+ production-ready nodes
450
- - Local and parallel runtimes
671
+ ###v0.4.0 - Enterprise Middleware Architecture
672
+ - **Middleware Layer**: Complete refactor from monolithic to composable middleware
673
+ - **Real-time Communication**: WebSocket/SSE with comprehensive event streaming
674
+ - **AI Integration**: Built-in chat middleware with workflow generation
675
+ - **Test Excellence**: 799 tests passing (100% pass rate), organized structure
676
+ - **Gateway Integration**: Updated for middleware-based architecture
677
+ - **Performance**: Excluded slow tests from CI, builds complete in <2 minutes
678
+
679
+ ### ✅ Previous Releases
680
+ - ✅ Core workflow engine with 100+ production-ready nodes
681
+ - ✅ Unified LocalRuntime (async + enterprise features)
451
682
  - ✅ 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
683
+ - ✅ Reorganized test suite (unit/integration/e2e structure)
684
+ - ✅ Self-organizing agent systems and hierarchical RAG
457
685
  - ✅ 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
686
+ - ✅ Production security framework with RBAC/ABAC/Hybrid
687
+ - ✅ Async database infrastructure with pgvector support
688
+ - Admin tool framework with React UI and QA testing
689
+ - Comprehensive workflow library (finance, enterprise patterns)
690
+
691
+ ### 🚧 In Progress
692
+ - 🚧 Visual workflow builder (Studio UI)
693
+ - 🚧 Docker runtime integration
462
694
  - 🚧 Cloud deployment tools
695
+ - 🚧 Advanced RAG toolkit validation
463
696
 
464
697
  ## 📄 License
465
698
 
@@ -0,0 +1,223 @@
1
+ kailash/__init__.py,sha256=vryDzVzXgXkzymSGHJmrlB0c6MNSmUhbWDPGmE4H3Ms,1797
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=2hHb3Ag-jZ7UCvjUiX0JK2fBRaIhNFYpI3fN_JPPOgA,26455
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=aRN9tWHDAK0juyD1TXmlqVDA28pUwMC5pCx8RPBnBI4,910
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=DLX9fwHRwGdt5ShDwIWh75PTpSIUzLhb_oBRFBBAUlA,1239
70
+ kailash/nodes/admin/audit_log.py,sha256=wv5E2xDPjC6DTgc1PVOt2YINV8JoHXc4Aj0Jpt0EGbY,28329
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=CzB6hF48Ip1CtJmZ_Y1GHwAbwo5wiI4PK-ILRb0jl98,56289
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=-JJZNTk6NWnVzSMGJpc1vNN7m2zxqpJnmuszjtAFDE8,52975
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=gsT_QNyNdrhM6S87wPmOWBuNVJUrlDNsi2KP6Wfy_0c,76411
83
+ kailash/nodes/ai/models.py,sha256=wsEeUTuegy87mnLtKgSTg7ggCXvC1n3MsL-iZ4qujHs,16393
84
+ kailash/nodes/ai/self_organizing.py,sha256=M7yCLkN4I1JCNU7PWuwrqwQSlaG9MJVxYIR44TV52MM,62877
85
+ kailash/nodes/api/__init__.py,sha256=dzK6kiAdJcTQa7NSBkSmd5CCTSefBlMZMewGlTJSr0c,2334
86
+ kailash/nodes/api/auth.py,sha256=mve8rdshFIfLpkJX6M9opgDDru1LjcTyf3KpuCs1wd0,30869
87
+ kailash/nodes/api/graphql.py,sha256=6UBqWBbAysrerrx9lQMwwRM6mZT4-65ZINPhC_ObWmA,16975
88
+ kailash/nodes/api/http.py,sha256=LOWT4fIv4Qs7yCjmnahQK2H7ABrCNdMZiZSrCjKr00Y,38345
89
+ kailash/nodes/api/monitoring.py,sha256=vV0nLPyqw34YgsZvuegxNMSLyHU59pMdnzkdXelPYFc,17468
90
+ kailash/nodes/api/rate_limiting.py,sha256=kzArU7OrkDGLSqbjiOs5TSZz4VJsLeQYuYzOzwkfqSI,19657
91
+ kailash/nodes/api/rest.py,sha256=d1o6-Lz0-Hq9c5XSwuiwxajmLuZEcSoK-49awYjDByw,48738
92
+ kailash/nodes/api/security.py,sha256=VxMl5p7jWF2ViAqzHTFkte6agUiS9QEiQztV9l9PzDk,31134
93
+ kailash/nodes/auth/__init__.py,sha256=8d6OJCuyDytejA9_o_PDdRBFxuTdoTCScc4qRi5wlK4,562
94
+ kailash/nodes/auth/directory_integration.py,sha256=tzXyLdHMR2ja1Wf659BzSfSSd1P256D3LEfzPCgBUyE,47010
95
+ kailash/nodes/auth/enterprise_auth_provider.py,sha256=ggWgRTYPBXFtNG1XuYv3cE-3JyEGgMQMWqaBu8MjyMs,50368
96
+ kailash/nodes/auth/mfa.py,sha256=FqeKemNLn1smy8l_A5YxrwKAx19hoer3Wo0WmXP8pCA,85394
97
+ kailash/nodes/auth/risk_assessment.py,sha256=ZVKYCXp8saTBsVxonh2YAM_BkqBPg5HtulRT6PHWspk,30157
98
+ kailash/nodes/auth/session_management.py,sha256=FzOxic3hjmRlMiAQy7ps8a7XO7AoxYToZL9ywAcwKxY,38694
99
+ kailash/nodes/auth/sso.py,sha256=m-sYRNGEWwKfpvAzaHikGC3Wy45h0o-JhqgeYLTTV24,38507
100
+ kailash/nodes/code/__init__.py,sha256=L3QBfnITPb6v-Wbq2ezNWt8xDlC4uGaTgrkqIJ9vGKU,1191
101
+ kailash/nodes/code/python.py,sha256=RHolFWCkN-NFUv3ZvL5wPd4gxy9rEqg7uXSnpbAXtHU,50571
102
+ kailash/nodes/compliance/__init__.py,sha256=6a_FL4ofc8MAVuZ-ARW5uYenZLS4mBFVM9AI2QsnoF8,214
103
+ kailash/nodes/compliance/data_retention.py,sha256=rP85W9mIbbVb4LqxPFYYFySgUJXI5Q5mdoYLY0o3Mnw,69419
104
+ kailash/nodes/compliance/gdpr.py,sha256=iEAVU7Faqp0HVHk2KLw51oXr6VyJPycvsVL5IQR4ciY,70528
105
+ kailash/nodes/data/__init__.py,sha256=4UVGZ77ZjCUdDQqwOrhZH60Ka8hGVrZMZCySPk9mFJc,4898
106
+ kailash/nodes/data/async_connection.py,sha256=wfArHs9svU48bxGZIiixSV2YVn9cukNgEjagwTRu6J4,17250
107
+ kailash/nodes/data/async_sql.py,sha256=r1IVpMKLbxOZ_hGnlJJ0bE30Y8UoC2Lhw20c3Gc-yjo,27764
108
+ kailash/nodes/data/async_vector.py,sha256=HtwQLO25IXu8Vq80qzU8rMkUAKPQ2qM0x8YxjXHlygU,21005
109
+ kailash/nodes/data/directory.py,sha256=fbfLqD_ijRubk-4xew3604QntPsyDxqaF4k6TpfyjDg,9923
110
+ kailash/nodes/data/event_generation.py,sha256=Bc1se0tPg1IAGCQDrWqlFmgoOpUyfMN9ku4Lm3akhXU,11579
111
+ kailash/nodes/data/file_discovery.py,sha256=njLLusndwBFwbaWP8rcaiE0UQ49RpDlNQ-3SXH7Jhi4,21733
112
+ kailash/nodes/data/readers.py,sha256=fX82yQSLGPUFbSf6krT_-9gybp6IBnBH-Lcr87aNlHQ,45962
113
+ kailash/nodes/data/retrieval.py,sha256=H8Qb2R64fQ_OeaQBh6jVn7-xLuygiF3fjzbh4ssNOrU,20591
114
+ kailash/nodes/data/sharepoint_graph.py,sha256=J1_KZQ5s8yXkjGY1PjsMY7T8viKARi3os5P8CXpmn2U,37160
115
+ kailash/nodes/data/sources.py,sha256=tvgDDDerWELD6QkAm73ciKmNakD_SYMd50idlOjpbF0,3632
116
+ kailash/nodes/data/sql.py,sha256=ByBr_IaJuHJahyrgrtixFcWTZjE9A1XkSMCHE1K_9mo,33933
117
+ kailash/nodes/data/streaming.py,sha256=Ap1m-OvZq6IfI2tNZI4Pok3ooxor5mjbsqNZ4yaYEeE,37059
118
+ kailash/nodes/data/vector_db.py,sha256=pwCl-3tyk_Cv_VQ8GafgodJ1yM88W1BXCIcYC56XoqU,32056
119
+ kailash/nodes/data/writers.py,sha256=-RPLetKhKAPXOU6YPwMkVRXF8by6ROhgICm3aUnGcFs,17537
120
+ kailash/nodes/enterprise/__init__.py,sha256=1a6SsEnzozP4MSFDo-Yimzx-e65NwnmGeTDMammSrtk,407
121
+ kailash/nodes/enterprise/batch_processor.py,sha256=wA9AtBC_roLF040zoFSBo7wqdE2KFWvVLMIRBBR2_cY,27170
122
+ kailash/nodes/enterprise/data_lineage.py,sha256=oC5eVWdjfy2EqRQGLcLCfm3nu-WeAScZMtFY9o-NFB4,19253
123
+ kailash/nodes/logic/__init__.py,sha256=JKGFXwBDfY3s1MWQkx3ivdvCMm3b3HIXCn-wH9uMoG4,603
124
+ kailash/nodes/logic/async_operations.py,sha256=HJ1YULrh5U8WNYbuwTthmMfqBh1xomVQcSEe3gt8rYA,27501
125
+ kailash/nodes/logic/convergence.py,sha256=D9rdLe2VTqTne2RkD8phAENL3LAdjbl4mzsj6QEXwQE,25076
126
+ kailash/nodes/logic/loop.py,sha256=34hnrcfeigcpsVcomsd-ZLE2x7f3irAd_-Q89vZzW9w,5756
127
+ kailash/nodes/logic/operations.py,sha256=IkRa3whMiNiyiceQrXAbXWyG2USgdwoLvqB9itlypxE,28718
128
+ kailash/nodes/logic/workflow.py,sha256=p2ED6tOWGVC50iNyUInSpJI41eBXmSF8Tb_w0h7NeD0,17136
129
+ kailash/nodes/mixins/__init__.py,sha256=0WYfu5kj-lHbFwP9g5vmlbsG8UzvI-vhOyHMEUzXbz4,558
130
+ kailash/nodes/mixins/event_emitter.py,sha256=xTeNrBWmuWIf8qYA5DZekymjjrTAD1sboW9dKbAP40w,7492
131
+ kailash/nodes/mixins/mcp.py,sha256=HSULx66VY-e8h5R4HjcNDI5pPVq3MN9HxD8T9FI9vRo,7040
132
+ kailash/nodes/mixins/security.py,sha256=oxIwfKHd6Sdmd2GIaoNkRcSzVHUusYKyGNA7rM61fvw,5534
133
+ kailash/nodes/monitoring/__init__.py,sha256=my9X4QK-RPAtdkHpQSdwnFc7kVPi-XXxnc90-p-vu5s,168
134
+ kailash/nodes/monitoring/performance_benchmark.py,sha256=KPDjsoSZ1TT0Z1teITDdSbdpYXvyJUoPzgsVWdzQybs,87637
135
+ kailash/nodes/rag/__init__.py,sha256=0tUkBZoUvRep7O_isRvb8b5HF9OfUeAGo7AMjfJjfp0,8705
136
+ kailash/nodes/rag/advanced.py,sha256=oPcdS8i4yscJ3NCkwQjv9KCwNhmC_5tp8JZ1_XPQY4I,60265
137
+ kailash/nodes/rag/agentic.py,sha256=6jmUJphKPYXRH7P3K5fPPFuKy1BYfkgR7Mmkv8JvPaM,24153
138
+ kailash/nodes/rag/conversational.py,sha256=wmN4dArb1XBYYc2wm-FSDuykqbX8EfsHvA-FVEMjEa0,35498
139
+ kailash/nodes/rag/evaluation.py,sha256=0UE-lPAP_xioexr1GYPs6JmhfglIlGOKZi4BMlL9vEo,29918
140
+ kailash/nodes/rag/federated.py,sha256=Z6AmVbf0byPaRppWRl2KJzbcTXEngW5Lec3jHbwfOzo,43138
141
+ kailash/nodes/rag/graph.py,sha256=uXMn_zjqNl0TAoUuPPCws6Ue2nGLvSIUqwQ_kZJPXTs,24601
142
+ kailash/nodes/rag/multimodal.py,sha256=PlESsoT3E_yi6LI0WG1nYPA670q776aM25jcLbu9pSM,21831
143
+ kailash/nodes/rag/optimized.py,sha256=MSqzrK_nl-HQDmyATGa8K--yu53bGyJ705hEfB4tOFA,28469
144
+ kailash/nodes/rag/privacy.py,sha256=veGutDjRzq5HdmIa7F2KR5DZB3jKPdyncKAT1tCSEbk,36712
145
+ kailash/nodes/rag/query_processing.py,sha256=rwQUiDw2x3QJ5bFaOELMGVapkxHrffvK0XULEpbQmBc,44674
146
+ kailash/nodes/rag/realtime.py,sha256=oK3G6zdKWGFEiTVYICuPyeXIjFrYlb2ga62wwfijqRc,24754
147
+ kailash/nodes/rag/registry.py,sha256=MmoIKDi6gTRuj_c9wIJlxjsUX868pnnAGFsiWA-Fqa0,19275
148
+ kailash/nodes/rag/router.py,sha256=yEMd1Q7y40_hguqHnTeiZFer_XhN1fad-A5jUKkf3pA,30139
149
+ kailash/nodes/rag/similarity.py,sha256=61ukXp8xMRtQi2BO-IL7bAj3mCUs8zAHrbcJjWD6O5w,61257
150
+ kailash/nodes/rag/strategies.py,sha256=FqJKiVb1Mq4BfJNFwrugKg_ovf7ULbyuF_uTvs4VQ30,18444
151
+ kailash/nodes/rag/workflows.py,sha256=PL9d3Lk15drwo2QVdNR9B61EpZ8Kc1crjnqFXc10O1I,20008
152
+ kailash/nodes/security/__init__.py,sha256=oaoZdbKhjEZ8vtUHGRPZPDixInzFDmhUZg4ou_Lz6mI,611
153
+ kailash/nodes/security/abac_evaluator.py,sha256=l2DT-akmJ_etM9ImmLydYNvd8TGDejTziFuoWCrqCDU,50289
154
+ kailash/nodes/security/audit_log.py,sha256=o81LqlQglggmVWyC_dqqMH8X7thduFpJLSN5tGGyNcs,2817
155
+ kailash/nodes/security/behavior_analysis.py,sha256=-V6Vq1WwACxK6B607ykKOh9HZhCPbY4NPvaUHBkjqsQ,71543
156
+ kailash/nodes/security/credential_manager.py,sha256=USFQvX-ZPB537IEtKfD7y6alcVpOAIpAr0bj9V68W_k,14964
157
+ kailash/nodes/security/rotating_credentials.py,sha256=qP04ARlrQAqEljOCXAmn-bsQlLFgoWlqZWerRD-srjo,28884
158
+ kailash/nodes/security/security_event.py,sha256=SNl1114GdCNwbvhTvAm20sv4X7BPx4alYEdRbKHf1_Q,3978
159
+ kailash/nodes/security/threat_detection.py,sha256=F-8QXx3FOZi1-poZdfTHa_phY1ectl4jYkzjfl3ck8U,40065
160
+ kailash/nodes/testing/__init__.py,sha256=TpaRD5YHwT6R3pI0r0WU99-Vgixj6gmCbZewnt8K8uI,274
161
+ kailash/nodes/testing/credential_testing.py,sha256=FiiVyBqL-fdHw7t6g7_Wq3104siM83llOmi-UFykMEw,17919
162
+ kailash/nodes/transform/__init__.py,sha256=JWciUYn9y78-tWiYhc4SCXRoy8YP2O3S2dRp-BXVQxA,765
163
+ kailash/nodes/transform/chunkers.py,sha256=StRuS6-eLE67OVsqqJJF8dqA2jngD-4yp_rjZQfMAAA,24621
164
+ kailash/nodes/transform/formatters.py,sha256=BWb5depTZ23Bbg41A_nZojIeET7in6WxYvi3Bhjg-bk,3072
165
+ kailash/nodes/transform/processors.py,sha256=lLEujPQfZXEDIpgcDoQG6_5s9UgBwWmf0N6rzLVehAA,38353
166
+ kailash/runtime/__init__.py,sha256=CvU-qBMESYYISqFOlYlLsYJrXJu0Gqr4x6yr4Ob_Rng,278
167
+ kailash/runtime/access_controlled.py,sha256=Td8Fa8oPxEqlb74bDiH_HtT6J-ku0AudvN7mrUZOacc,17219
168
+ kailash/runtime/async_local.py,sha256=qQWCrdBNoa-E6113UqYQ--C5u8F-wq6p1nESLnshIjg,13699
169
+ kailash/runtime/docker.py,sha256=sZknVl1PCGfAZeyc0-exTuKlllSyjYlFIgJoiB3CRNs,23500
170
+ kailash/runtime/local.py,sha256=i2hnRrk2Ks0Q5jR9SkBhM6d6plJbpH0i7rNkJ8laLCw,39078
171
+ kailash/runtime/parallel.py,sha256=mz_wPD13-YVc3Q_8HkOs4nPQPdTjnjCcnRL7ZRM70lo,21070
172
+ kailash/runtime/parallel_cyclic.py,sha256=yANZHnePjhCPuCFbq3lFQA1K6jbCv5Of5-vIKbCsmZk,19863
173
+ kailash/runtime/runner.py,sha256=Lt9ugsk56ICD9XLKJjnhejtqdiz0mJNdlqH7sSxIlWU,3214
174
+ kailash/runtime/testing.py,sha256=-Uiq58evL0jzaT8c0Q1oEqQNjeQhkNe3HGrU0FKQ3rQ,19073
175
+ kailash/tracking/__init__.py,sha256=nhyecV24JuB_D-veJ3qw7h4oO8Sbdmyb6RvPS6VQktU,305
176
+ kailash/tracking/manager.py,sha256=OxDgvuObiLLcje7-DF5DRIqi8f5clzvrlean1RrL9KE,28006
177
+ kailash/tracking/metrics_collector.py,sha256=rvKvm2BzhAwdFazJpEQ87j78AMVDSehoScZK4Tfm3O8,11798
178
+ kailash/tracking/models.py,sha256=9Fwcd1hqRwlAsU88FFMJsqNn2GlkJaUxmynnS2aFhdY,17912
179
+ kailash/tracking/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
+ kailash/tracking/storage/base.py,sha256=wWkK1XdrMV0EGxlbFDyfuVnDoIG0tdSPPwz_8iwzdNI,2299
181
+ kailash/tracking/storage/database.py,sha256=O3-qYmgwTccq9jYl25C0L6R398pXPsWkIAoWLL1aZvQ,20048
182
+ kailash/tracking/storage/filesystem.py,sha256=VhWxNvqf_Ta3mIaGqKuOrcCqQiEvJj7S8NK5yRd1V68,19627
183
+ kailash/utils/__init__.py,sha256=pFKhHJxU_kyFE9aGT5recw5E-3nbfVF5pMHepBJWB2E,253
184
+ kailash/utils/export.py,sha256=HViwFBtg20VnGBC9gQjHcnu44wQ1u2vOZMXR8EtfGvw,31913
185
+ kailash/utils/secure_logging.py,sha256=3iEJt7sXnIgvdiRz8qsx0JbcygrsUf0_C8UHFXLNfcs,11325
186
+ kailash/utils/templates.py,sha256=1O9mniUTJmZZFkC1gFaWy73pDIZxcawljDIQpPj6G9Q,21977
187
+ kailash/utils/migrations/__init__.py,sha256=smrA1fcJ88d0mDHukhcxM0oNI9hYlLbbUL9-wgdetHs,758
188
+ kailash/utils/migrations/generator.py,sha256=QvVT0Z6NCH1ageXi2gsDzzkpkpZsRAyeIpmoV3fvBoY,13157
189
+ kailash/utils/migrations/models.py,sha256=BSiz6Ucgl9OSi8Wm-QWZ1ALBDWurxWnr0Tqk1ZvV6YY,6922
190
+ kailash/utils/migrations/runner.py,sha256=atE7jYhk0Jr-A6UtZ1XbkNEBzE0ZqJvddaTKKcUU3gU,17199
191
+ kailash/visualization/__init__.py,sha256=6bvgE_Rt8z3Rf4kSvdWvZNaTYvbofRHc_QbGlC0xDYE,1880
192
+ kailash/visualization/api.py,sha256=AavUemsir_tCQgU-YZxo9RyrZJP5g__RCaE7B8_eJIc,28755
193
+ kailash/visualization/dashboard.py,sha256=26uL82scgQEhOhqDTyZ-UJr9rNkW9pLw_iJ9bIu3GSs,32806
194
+ kailash/visualization/performance.py,sha256=KvB7IG8Un2sM1ZnT1TWOabwj4kK40DlCWUN33Mb89nk,28514
195
+ kailash/visualization/reports.py,sha256=D7kJ0flHr16d-qSEq8vnw20N8u_dgTrXtKVSXVm886w,52778
196
+ kailash/workflow/__init__.py,sha256=eUTrN7nVrbw1VaqGeYUzFjC0Un5YIjzh3-03OWPiFSs,1513
197
+ kailash/workflow/builder.py,sha256=KZkg0gxreBB4axgHWlYxn11u6u5QdQpeCuyR6yhoeBw,7652
198
+ kailash/workflow/convergence.py,sha256=vfIDR-uNaQE-LVUEzrRtfgKPgX9gL0nLNH-nTg5ra-c,10031
199
+ kailash/workflow/cycle_analyzer.py,sha256=BGBpgdB-g0-KRI65sVAvHV4lxfoCzMt4uKOHbw8GXT4,32596
200
+ kailash/workflow/cycle_builder.py,sha256=uWAx8K4ZKMtFC3mWylK4gHT03xeu0xChJlhw50hVqEE,20883
201
+ kailash/workflow/cycle_config.py,sha256=DSoQMFH_dqjYbJU5PegCsmswjdlb0f-4XhNKUtFp6PM,28388
202
+ kailash/workflow/cycle_debugger.py,sha256=eG-Q_kakqyhr1Ts-q4pRnO0EI7mVO9ao1s9WOxeXo8E,31535
203
+ kailash/workflow/cycle_exceptions.py,sha256=4_OLnbEXqIiXKzOc3uh8DzFik4wEHwl8bRZhY9Xhf2A,21838
204
+ kailash/workflow/cycle_profiler.py,sha256=aEWSCm0Xy15SjgLTpPooVJMzpFhtJWt4livR-3Me4N8,28547
205
+ kailash/workflow/cycle_state.py,sha256=hzRUvciRreWfS56Cf7ZLQPit_mlPTQDoNTawh8yi-2s,10747
206
+ kailash/workflow/cyclic_runner.py,sha256=62GgaidZJ8tCJpDR2Zts5t9ugeZxMAAN658zC7_s0jc,37102
207
+ kailash/workflow/graph.py,sha256=Dk-5DuhybQlBprLIkblMEmChc9a-Xci7elDqHa4JEGI,55920
208
+ kailash/workflow/mermaid_visualizer.py,sha256=UsQDvxgIAhy-Th7ZzFnbuziaTx1Cd5yUh6S_25DffoQ,22294
209
+ kailash/workflow/migration.py,sha256=zsmXgbUtOZdjoOx9YoEY0-x7uOY1T-_yQo4MnZjokCQ,31487
210
+ kailash/workflow/mock_registry.py,sha256=J4gyH8YdhRyhvORDVxGTya0FgDK8iAA8Nonur6p9s-o,1692
211
+ kailash/workflow/resilience.py,sha256=_SvyeTQIY5XYGZMB14-mxeq5KSB4hdt4UwauaWiIJZc,8214
212
+ kailash/workflow/runner.py,sha256=l6jb-H7DwbRlvQ3H3SuTs70rut-u7H3Gi8nybKCEjZU,10795
213
+ kailash/workflow/safety.py,sha256=pS5GKu7UdkzFZcb16Dn-0jBxjULDU-59_M0CbUVMVyw,11298
214
+ kailash/workflow/state.py,sha256=UTZxs5-Ona6uvBhx1__i6-RX8gB4qazkBIWE7uyRmWQ,7600
215
+ kailash/workflow/templates.py,sha256=MTIMHGyQML6omLbqeKDbTVIVykfXG6pIFWTTsGBUHN0,48591
216
+ kailash/workflow/validation.py,sha256=JIbIajWVIaWHSvWtgZ4WUVJaBaUOCz5B9cyTwM--dL4,33060
217
+ kailash/workflow/visualization.py,sha256=ICMWCWqh5fOQ7eJygbvu2PMWHxe-H5_0epwdZuz8cMw,19737
218
+ kailash-0.4.0.dist-info/licenses/LICENSE,sha256=Axe6g7bTrJkToK9h9j2SpRUKKNaDZDCo2lQ2zPxCE6s,1065
219
+ kailash-0.4.0.dist-info/METADATA,sha256=2JfJnEKn9YDTMrvtsZPxHT4lLvxcDx7cqH1D4TTcNls,24595
220
+ kailash-0.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
221
+ kailash-0.4.0.dist-info/entry_points.txt,sha256=M_q3b8PG5W4XbhSgESzIJjh3_4OBKtZFYFsOdkr2vO4,45
222
+ kailash-0.4.0.dist-info/top_level.txt,sha256=z7GzH2mxl66498pVf5HKwo5wwfPtt9Aq95uZUpH6JV0,8
223
+ kailash-0.4.0.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()