kailash 0.9.9__tar.gz → 0.9.10__tar.gz

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 (421) hide show
  1. kailash-0.9.10/LICENSE +243 -0
  2. kailash-0.9.10/NOTICE +17 -0
  3. {kailash-0.9.9/src/kailash.egg-info → kailash-0.9.10}/PKG-INFO +41 -19
  4. {kailash-0.9.9 → kailash-0.9.10}/README.md +36 -18
  5. {kailash-0.9.9 → kailash-0.9.10}/pyproject.toml +4 -1
  6. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/__init__.py +1 -1
  7. {kailash-0.9.9 → kailash-0.9.10/src/kailash.egg-info}/PKG-INFO +41 -19
  8. {kailash-0.9.9 → kailash-0.9.10}/src/kailash.egg-info/SOURCES.txt +1 -0
  9. kailash-0.9.9/LICENSE +0 -21
  10. {kailash-0.9.9 → kailash-0.9.10}/MANIFEST.in +0 -0
  11. {kailash-0.9.9 → kailash-0.9.10}/setup.cfg +0 -0
  12. {kailash-0.9.9 → kailash-0.9.10}/setup.py +0 -0
  13. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/__main__.py +0 -0
  14. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/access_control/__init__.py +0 -0
  15. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/access_control/managers.py +0 -0
  16. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/access_control/rule_evaluators.py +0 -0
  17. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/access_control.py +0 -0
  18. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/access_control_abac.py +0 -0
  19. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/adapters/__init__.py +0 -0
  20. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/adapters/mcp_platform_adapter.py +0 -0
  21. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/analysis/__init__.py +0 -0
  22. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/analysis/conditional_branch_analyzer.py +0 -0
  23. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/auth.py +0 -0
  24. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/custom_nodes.py +0 -0
  25. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/custom_nodes_secure.py +0 -0
  26. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/gateway.py +0 -0
  27. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/mcp_integration.py +0 -0
  28. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/studio.py +0 -0
  29. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/api/workflow_api.py +0 -0
  30. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/__init__.py +0 -0
  31. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/api_channel.py +0 -0
  32. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/base.py +0 -0
  33. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/cli_channel.py +0 -0
  34. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/event_router.py +0 -0
  35. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/mcp_channel.py +0 -0
  36. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/channels/session.py +0 -0
  37. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/cli/__init__.py +0 -0
  38. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/cli/commands.py +0 -0
  39. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/cli/validate_imports.py +0 -0
  40. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/cli/validation_audit.py +0 -0
  41. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/client/__init__.py +0 -0
  42. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/client/enhanced_client.py +0 -0
  43. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/config/__init__.py +0 -0
  44. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/config/database_config.py +0 -0
  45. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/actors/__init__.py +0 -0
  46. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/actors/adaptive_pool_controller.py +0 -0
  47. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/actors/connection_actor.py +0 -0
  48. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/actors/supervisor.py +0 -0
  49. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/ml/__init__.py +0 -0
  50. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/ml/query_patterns.py +0 -0
  51. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/monitoring/__init__.py +0 -0
  52. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/monitoring/connection_metrics.py +0 -0
  53. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/optimization/__init__.py +0 -0
  54. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/resilience/__init__.py +0 -0
  55. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/resilience/bulkhead.py +0 -0
  56. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/resilience/circuit_breaker.py +0 -0
  57. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/core/resilience/health_monitor.py +0 -0
  58. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/database/__init__.py +0 -0
  59. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/database/execution_pipeline.py +0 -0
  60. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/__init__.py +0 -0
  61. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/compliance.py +0 -0
  62. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/consistency.py +0 -0
  63. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/coordination/__init__.py +0 -0
  64. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/coordination/global_ordering.py +0 -0
  65. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/coordination/leader_election.py +0 -0
  66. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/coordination/partition_detector.py +0 -0
  67. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/coordination/raft.py +0 -0
  68. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/discovery.py +0 -0
  69. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/location.py +0 -0
  70. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/migration/__init__.py +0 -0
  71. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/migration/edge_migration_service.py +0 -0
  72. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/migration/edge_migrator.py +0 -0
  73. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/monitoring/__init__.py +0 -0
  74. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/monitoring/edge_monitor.py +0 -0
  75. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/prediction/__init__.py +0 -0
  76. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/prediction/predictive_warmer.py +0 -0
  77. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/__init__.py +0 -0
  78. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/cloud_integration.py +0 -0
  79. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/cost_optimizer.py +0 -0
  80. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/docker_integration.py +0 -0
  81. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/kubernetes_integration.py +0 -0
  82. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/platform_integration.py +0 -0
  83. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/predictive_scaler.py +0 -0
  84. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/resource_analyzer.py +0 -0
  85. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/edge/resource/resource_pools.py +0 -0
  86. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/gateway/__init__.py +0 -0
  87. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/gateway/api.py +0 -0
  88. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/gateway/enhanced_gateway.py +0 -0
  89. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/gateway/resource_resolver.py +0 -0
  90. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/gateway/security.py +0 -0
  91. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/integrations/dataflow_edge.py +0 -0
  92. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/manifest.py +0 -0
  93. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/__init__.py +0 -0
  94. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/advanced_features.py +0 -0
  95. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/ai_registry_server.py +0 -0
  96. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/auth.py +0 -0
  97. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/client.py +0 -0
  98. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/client_new.py +0 -0
  99. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/discovery.py +0 -0
  100. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/errors.py +0 -0
  101. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/oauth.py +0 -0
  102. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/protocol.py +0 -0
  103. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/registry_integration.py +0 -0
  104. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/server.py +0 -0
  105. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/servers/ai_registry.py +0 -0
  106. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/subscriptions.py +0 -0
  107. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/transports.py +0 -0
  108. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/utils/__init__.py +0 -0
  109. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/utils/cache.py +0 -0
  110. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/utils/config.py +0 -0
  111. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/utils/formatters.py +0 -0
  112. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/mcp_server/utils/metrics.py +0 -0
  113. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/__init__.py +0 -0
  114. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/__init__.py +0 -0
  115. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/access_control.py +0 -0
  116. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/auth_manager.py +0 -0
  117. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/exceptions.py +0 -0
  118. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/jwt_auth.py +0 -0
  119. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/models.py +0 -0
  120. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/auth/utils.py +0 -0
  121. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/communication/__init__.py +0 -0
  122. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/communication/ai_chat.py +0 -0
  123. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/communication/api_gateway.py +0 -0
  124. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/communication/events.py +0 -0
  125. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/communication/realtime.py +0 -0
  126. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/core/__init__.py +0 -0
  127. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/core/agent_ui.py +0 -0
  128. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/core/schema.py +0 -0
  129. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/core/workflows.py +0 -0
  130. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/__init__.py +0 -0
  131. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/base.py +0 -0
  132. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/base_models.py +0 -0
  133. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/enums.py +0 -0
  134. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/migrations.py +0 -0
  135. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/models.py +0 -0
  136. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/repositories.py +0 -0
  137. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/database/session_manager.py +0 -0
  138. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/__init__.py +0 -0
  139. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/checkpoint_manager.py +0 -0
  140. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/deduplicator.py +0 -0
  141. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/durable_gateway.py +0 -0
  142. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/durable_request.py +0 -0
  143. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/event_store.py +0 -0
  144. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/gateway/storage_backends.py +0 -0
  145. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/mcp/__init__.py +0 -0
  146. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/mcp/client_integration.py +0 -0
  147. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/middleware/mcp/enhanced_server.py +0 -0
  148. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/monitoring/__init__.py +0 -0
  149. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/monitoring/alerts.py +0 -0
  150. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/monitoring/metrics.py +0 -0
  151. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/__init__.py +0 -0
  152. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/__init__.py +0 -0
  153. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/audit_log.py +0 -0
  154. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/permission_check.py +0 -0
  155. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/role_management.py +0 -0
  156. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/schema.sql +0 -0
  157. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/schema_manager.py +0 -0
  158. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/security_event.py +0 -0
  159. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/tenant_isolation.py +0 -0
  160. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/transaction_utils.py +0 -0
  161. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/admin/user_management.py +0 -0
  162. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/__init__.py +0 -0
  163. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/a2a.py +0 -0
  164. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/a2a_backup.py +0 -0
  165. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/agents.py +0 -0
  166. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/ai_providers.py +0 -0
  167. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/embedding_generator.py +0 -0
  168. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/hybrid_search.py +0 -0
  169. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/intelligent_agent_orchestrator.py +0 -0
  170. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/iterative_llm_agent.py +0 -0
  171. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/llm_agent.py +0 -0
  172. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/models.py +0 -0
  173. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/self_organizing.py +0 -0
  174. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/semantic_memory.py +0 -0
  175. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/streaming_analytics.py +0 -0
  176. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ai/vision_utils.py +0 -0
  177. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/alerts/__init__.py +0 -0
  178. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/alerts/base.py +0 -0
  179. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/alerts/discord.py +0 -0
  180. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/__init__.py +0 -0
  181. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/auth.py +0 -0
  182. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/graphql.py +0 -0
  183. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/http.py +0 -0
  184. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/monitoring.py +0 -0
  185. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/rate_limiting.py +0 -0
  186. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/rest.py +0 -0
  187. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/api/security.py +0 -0
  188. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/__init__.py +0 -0
  189. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/directory_integration.py +0 -0
  190. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/enterprise_auth_provider.py +0 -0
  191. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/mfa.py +0 -0
  192. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/risk_assessment.py +0 -0
  193. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/session_management.py +0 -0
  194. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/auth/sso.py +0 -0
  195. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/base.py +0 -0
  196. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/base_async.py +0 -0
  197. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/base_cycle_aware.py +0 -0
  198. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/base_with_acl.py +0 -0
  199. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/cache/__init__.py +0 -0
  200. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/cache/cache.py +0 -0
  201. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/cache/cache_invalidation.py +0 -0
  202. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/cache/redis_pool_manager.py +0 -0
  203. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/code/__init__.py +0 -0
  204. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/code/async_python.py +0 -0
  205. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/code/python.py +0 -0
  206. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/compliance/__init__.py +0 -0
  207. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/compliance/data_retention.py +0 -0
  208. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/compliance/gdpr.py +0 -0
  209. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/__init__.py +0 -0
  210. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/async_connection.py +0 -0
  211. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/async_sql.py +0 -0
  212. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/async_vector.py +0 -0
  213. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/bulk_operations.py +0 -0
  214. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/directory.py +0 -0
  215. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/event_generation.py +0 -0
  216. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/file_discovery.py +0 -0
  217. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/optimistic_locking.py +0 -0
  218. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/query_builder.py +0 -0
  219. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/query_cache.py +0 -0
  220. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/query_pipeline.py +0 -0
  221. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/query_router.py +0 -0
  222. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/readers.py +0 -0
  223. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/redis.py +0 -0
  224. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/retrieval.py +0 -0
  225. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/sharepoint_graph.py +0 -0
  226. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/sources.py +0 -0
  227. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/sql.py +0 -0
  228. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/streaming.py +0 -0
  229. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/vector_db.py +0 -0
  230. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/workflow_connection_pool.py +0 -0
  231. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/data/writers.py +0 -0
  232. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/__init__.py +0 -0
  233. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/base.py +0 -0
  234. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/cloud_node.py +0 -0
  235. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/coordination.py +0 -0
  236. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/docker_node.py +0 -0
  237. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/edge_data.py +0 -0
  238. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/edge_migration_node.py +0 -0
  239. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/edge_monitoring_node.py +0 -0
  240. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/edge_state.py +0 -0
  241. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/edge_warming_node.py +0 -0
  242. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/kubernetes_node.py +0 -0
  243. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/platform_node.py +0 -0
  244. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/resource_analyzer_node.py +0 -0
  245. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/resource_optimizer_node.py +0 -0
  246. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/edge/resource_scaler_node.py +0 -0
  247. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/__init__.py +0 -0
  248. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/audit_logger.py +0 -0
  249. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/batch_processor.py +0 -0
  250. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/data_lineage.py +0 -0
  251. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/mcp_executor.py +0 -0
  252. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/service_discovery.py +0 -0
  253. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/enterprise/tenant_assignment.py +0 -0
  254. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/governance.py +0 -0
  255. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/__init__.py +0 -0
  256. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/async_operations.py +0 -0
  257. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/convergence.py +0 -0
  258. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/intelligent_merge.py +0 -0
  259. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/loop.py +0 -0
  260. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/operations.py +0 -0
  261. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/logic/workflow.py +0 -0
  262. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/mixins/__init__.py +0 -0
  263. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/mixins/event_emitter.py +0 -0
  264. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/mixins/mcp.py +0 -0
  265. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/mixins/security.py +0 -0
  266. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/mixins.py +0 -0
  267. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/__init__.py +0 -0
  268. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/connection_dashboard.py +0 -0
  269. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/deadlock_detector.py +0 -0
  270. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/health_check.py +0 -0
  271. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/log_processor.py +0 -0
  272. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/metrics_collector.py +0 -0
  273. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/performance_anomaly.py +0 -0
  274. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/performance_benchmark.py +0 -0
  275. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/race_condition_detector.py +0 -0
  276. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/transaction_metrics.py +0 -0
  277. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/monitoring/transaction_monitor.py +0 -0
  278. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/ports.py +0 -0
  279. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/__init__.py +0 -0
  280. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/advanced.py +0 -0
  281. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/agentic.py +0 -0
  282. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/conversational.py +0 -0
  283. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/evaluation.py +0 -0
  284. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/federated.py +0 -0
  285. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/graph.py +0 -0
  286. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/multimodal.py +0 -0
  287. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/optimized.py +0 -0
  288. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/privacy.py +0 -0
  289. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/query_processing.py +0 -0
  290. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/realtime.py +0 -0
  291. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/registry.py +0 -0
  292. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/router.py +0 -0
  293. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/similarity.py +0 -0
  294. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/strategies.py +0 -0
  295. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/rag/workflows.py +0 -0
  296. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/__init__.py +0 -0
  297. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/abac_evaluator.py +0 -0
  298. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/audit_log.py +0 -0
  299. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/behavior_analysis.py +0 -0
  300. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/credential_manager.py +0 -0
  301. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/rotating_credentials.py +0 -0
  302. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/security_event.py +0 -0
  303. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/security/threat_detection.py +0 -0
  304. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/system/__init__.py +0 -0
  305. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/system/command_parser.py +0 -0
  306. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/testing/__init__.py +0 -0
  307. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/testing/credential_testing.py +0 -0
  308. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/__init__.py +0 -0
  309. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/distributed_transaction_manager.py +0 -0
  310. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/saga_coordinator.py +0 -0
  311. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/saga_state_storage.py +0 -0
  312. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/saga_step.py +0 -0
  313. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/transaction_context.py +0 -0
  314. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transaction/two_phase_commit.py +0 -0
  315. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transform/__init__.py +0 -0
  316. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transform/chunkers.py +0 -0
  317. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transform/formatters.py +0 -0
  318. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/transform/processors.py +0 -0
  319. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/validation/__init__.py +0 -0
  320. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/validation/test_executor.py +0 -0
  321. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/validation/validation_nodes.py +0 -0
  322. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/nodes/validation.py +0 -0
  323. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/planning/__init__.py +0 -0
  324. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/planning/dynamic_execution_planner.py +0 -0
  325. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/resources/__init__.py +0 -0
  326. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/resources/factory.py +0 -0
  327. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/resources/health.py +0 -0
  328. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/resources/reference.py +0 -0
  329. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/resources/registry.py +0 -0
  330. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/__init__.py +0 -0
  331. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/access_controlled.py +0 -0
  332. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/async_local.py +0 -0
  333. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/compatibility_reporter.py +0 -0
  334. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/docker.py +0 -0
  335. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/hierarchical_switch_executor.py +0 -0
  336. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/local.py +0 -0
  337. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/parallel.py +0 -0
  338. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/parallel_cyclic.py +0 -0
  339. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/parameter_injection.py +0 -0
  340. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/parameter_injector.py +0 -0
  341. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/performance_monitor.py +0 -0
  342. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/runner.py +0 -0
  343. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/secret_provider.py +0 -0
  344. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/testing.py +0 -0
  345. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/__init__.py +0 -0
  346. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/connection_context.py +0 -0
  347. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/enhanced_error_formatter.py +0 -0
  348. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/error_categorizer.py +0 -0
  349. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/import_validator.py +0 -0
  350. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/metrics.py +0 -0
  351. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/performance.py +0 -0
  352. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/runtime/validation/suggestion_engine.py +0 -0
  353. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/sdk_exceptions.py +0 -0
  354. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/security.py +0 -0
  355. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/servers/__init__.py +0 -0
  356. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/servers/durable_workflow_server.py +0 -0
  357. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/servers/enterprise_workflow_server.py +0 -0
  358. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/servers/gateway.py +0 -0
  359. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/servers/workflow_server.py +0 -0
  360. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/testing/__init__.py +0 -0
  361. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/testing/async_test_case.py +0 -0
  362. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/testing/async_utils.py +0 -0
  363. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/testing/fixtures.py +0 -0
  364. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/testing/mock_registry.py +0 -0
  365. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/__init__.py +0 -0
  366. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/manager.py +0 -0
  367. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/metrics_collector.py +0 -0
  368. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/models.py +0 -0
  369. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/storage/__init__.py +0 -0
  370. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/storage/base.py +0 -0
  371. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/storage/database.py +0 -0
  372. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/tracking/storage/filesystem.py +0 -0
  373. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/__init__.py +0 -0
  374. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/data_paths.py +0 -0
  375. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/data_validation.py +0 -0
  376. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/export.py +0 -0
  377. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/migrations/__init__.py +0 -0
  378. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/migrations/generator.py +0 -0
  379. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/migrations/models.py +0 -0
  380. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/migrations/runner.py +0 -0
  381. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/resource_manager.py +0 -0
  382. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/secure_logging.py +0 -0
  383. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/utils/templates.py +0 -0
  384. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/visualization/__init__.py +0 -0
  385. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/visualization/api.py +0 -0
  386. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/visualization/dashboard.py +0 -0
  387. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/visualization/performance.py +0 -0
  388. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/visualization/reports.py +0 -0
  389. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/__init__.py +0 -0
  390. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/async_builder.py +0 -0
  391. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/async_patterns.py +0 -0
  392. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/builder.py +0 -0
  393. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/contracts.py +0 -0
  394. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/convergence.py +0 -0
  395. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_analyzer.py +0 -0
  396. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_builder.py +0 -0
  397. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_config.py +0 -0
  398. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_debugger.py +0 -0
  399. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_exceptions.py +0 -0
  400. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_profiler.py +0 -0
  401. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cycle_state.py +0 -0
  402. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/cyclic_runner.py +0 -0
  403. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/edge_infrastructure.py +0 -0
  404. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/graph.py +0 -0
  405. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/input_handling.py +0 -0
  406. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/mermaid_visualizer.py +0 -0
  407. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/migration.py +0 -0
  408. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/mock_registry.py +0 -0
  409. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/resilience.py +0 -0
  410. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/runner.py +0 -0
  411. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/safety.py +0 -0
  412. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/state.py +0 -0
  413. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/templates.py +0 -0
  414. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/type_inference.py +0 -0
  415. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/validation.py +0 -0
  416. {kailash-0.9.9 → kailash-0.9.10}/src/kailash/workflow/visualization.py +0 -0
  417. {kailash-0.9.9 → kailash-0.9.10}/src/kailash.egg-info/dependency_links.txt +0 -0
  418. {kailash-0.9.9 → kailash-0.9.10}/src/kailash.egg-info/entry_points.txt +0 -0
  419. {kailash-0.9.9 → kailash-0.9.10}/src/kailash.egg-info/not-zip-safe +0 -0
  420. {kailash-0.9.9 → kailash-0.9.10}/src/kailash.egg-info/requires.txt +0 -0
  421. {kailash-0.9.9 → kailash-0.9.10}/src/kailash.egg-info/top_level.txt +0 -0
kailash-0.9.10/LICENSE ADDED
@@ -0,0 +1,243 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Integrum Global Pte Ltd
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
202
+
203
+ ===========================================================================
204
+ ADDITIONAL TERMS AND CONDITIONS
205
+ ===========================================================================
206
+
207
+ In addition to the Apache License 2.0 terms above, the following
208
+ restrictions apply:
209
+
210
+ 1. PROHIBITION ON STANDALONE COMMERCIAL DISTRIBUTION
211
+ The Software may not be sold, licensed, or distributed on a standalone
212
+ basis for commercial purposes. This includes, but is not limited to:
213
+ - Selling the unmodified Software as a product
214
+ - Repackaging the Software with only cosmetic changes
215
+ - Offering the Software as-is through commercial channels
216
+
217
+ 2. PERMITTED USES
218
+ The above restriction does NOT apply to:
219
+ a) Using the Software as a component of a larger application or service
220
+ b) Creating and distributing Derivative Works that add substantial new
221
+ functionality beyond the original Software
222
+ c) Using the Software internally within an organization
223
+ d) Providing services that use the Software without distributing it
224
+ e) Educational and non-commercial research use
225
+
226
+ 3. SUBSTANTIAL MODIFICATION CRITERIA
227
+ For the purpose of these Additional Terms, "substantial new functionality"
228
+ means modifications that:
229
+ - Add significant features not present in the original Software
230
+ - Integrate the Software into a larger system as a component
231
+ - Adapt the Software for a specific industry or use case with meaningful
232
+ domain-specific enhancements
233
+
234
+ 4. ATTRIBUTION FOR DERIVATIVE WORKS
235
+ Any distribution of Derivative Works must:
236
+ - Clearly indicate the modifications made
237
+ - Not imply endorsement by the original authors
238
+ - Maintain the copyright notice and license information
239
+
240
+ These Additional Terms are supplementary to, and do not replace or modify,
241
+ the Apache License 2.0 terms above. In case of any conflict between these
242
+ Additional Terms and the Apache License 2.0, these Additional Terms shall
243
+ prevail only to the extent of such conflict.
kailash-0.9.10/NOTICE ADDED
@@ -0,0 +1,17 @@
1
+ Kailash Python SDK
2
+ Copyright 2025 Integrum Global Pte Ltd
3
+
4
+ This product includes software developed at Integrum Global Pte Ltd
5
+ (https://github.com/Integrum-Global/kailash_python_sdk).
6
+
7
+ The Kailash Python SDK is an enterprise-grade workflow orchestration
8
+ framework with AI-first architecture, providing 115+ nodes across data,
9
+ AI, security, and transaction categories.
10
+
11
+ IMPORTANT LICENSING NOTE:
12
+ This software is licensed under the Apache License 2.0 with Additional Terms
13
+ that prohibit standalone commercial distribution. Please see the LICENSE file
14
+ for complete terms and conditions.
15
+
16
+ Third-party components included in this distribution may be subject to
17
+ separate license terms as noted in their respective license files.
@@ -1,20 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kailash
3
- Version: 0.9.9
3
+ Version: 0.9.10
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
7
7
  Author-email: Integrum <info@integrum.com>
8
+ License: Apache-2.0 WITH Additional-Terms
8
9
  Project-URL: Homepage, https://github.com/integrum/kailash-python-sdk
9
10
  Project-URL: Bug Tracker, https://github.com/integrum/kailash-python-sdk/issues
11
+ Project-URL: License, https://github.com/integrum/kailash-python-sdk/blob/main/LICENSE
10
12
  Classifier: Development Status :: 3 - Alpha
11
13
  Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
12
15
  Classifier: Programming Language :: Python :: 3
13
16
  Classifier: Programming Language :: Python :: 3.11
14
17
  Classifier: Programming Language :: Python :: 3.12
15
18
  Requires-Python: >=3.11
16
19
  Description-Content-Type: text/markdown
17
20
  License-File: LICENSE
21
+ License-File: NOTICE
18
22
  Requires-Dist: networkx>=2.7
19
23
  Requires-Dist: pydantic>=1.9
20
24
  Requires-Dist: matplotlib>=3.5
@@ -99,7 +103,7 @@ Dynamic: requires-python
99
103
  <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/v/kailash.svg" alt="PyPI version"></a>
100
104
  <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/pyversions/kailash.svg" alt="Python versions"></a>
101
105
  <a href="https://pepy.tech/project/kailash"><img src="https://static.pepy.tech/badge/kailash" alt="Downloads"></a>
102
- <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
106
+ <img src="https://img.shields.io/badge/license-Apache%202.0%20with%20Additional%20Terms-orange.svg" alt="Apache 2.0 with Additional Terms">
103
107
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
104
108
  <img src="https://img.shields.io/badge/tests-2400%2B%20passing-brightgreen.svg" alt="Tests: 2400+ Passing">
105
109
  <img src="https://img.shields.io/badge/performance-11x%20faster-yellow.svg" alt="Performance: 11x Faster">
@@ -117,27 +121,28 @@ Dynamic: requires-python
117
121
 
118
122
  ---
119
123
 
120
- ## 🔥 Latest Release: v0.9.5 (July 31, 2025)
124
+ ## 🔥 Latest Release: v0.9.10 (August 1, 2025)
121
125
 
122
- **PythonCodeNode Serialization Stability & Testing**
126
+ **License Update & IterativeLLMAgentNode API Simplification**
123
127
 
124
- ### 🧪 Comprehensive Regression Test Suite (TODO-129)
125
- - **Added**: 33 unit tests validating PythonCodeNode serialization behavior and JSON compatibility
126
- - **Added**: 6 integration tests with real infrastructure using only allowed modules
127
- - **Added**: 6 E2E tests for complete business workflows and multi-channel consistency
128
- - **Impact**: Ensures serialization fix from commit 2fcf8591 (June 11, 2025) stays stable
128
+ ### 📄 License Changed to Apache 2.0 with Additional Terms
129
+ - **Changed**: From MIT to Apache License 2.0 with Additional Terms
130
+ - **Protection**: Prevents standalone commercial distribution of the SDK
131
+ - **Freedom**: Allows commercial use of derivatives and integration into larger systems
132
+ - **Patent Grant**: Includes Apache 2.0 patent protection clauses
129
133
 
130
- ### 📚 Documentation Clarifications
131
- - **Updated**: PythonCodeNode output structure documentation (all outputs wrapped in "result" key)
132
- - **Enhanced**: Serialization consistency notes for multi-channel deployment
133
- - **Improved**: Testing patterns for node serialization validation
134
+ ### 🤖 IterativeLLMAgentNode Improvements (v0.9.9)
135
+ - **Removed**: Mock mode entirely - real MCP execution always enabled
136
+ - **Simplified**: API by removing confusing `use_real_mcp` parameter
137
+ - **Enhanced**: Graceful fallback when MCP tools unavailable
138
+ - **Updated**: All documentation and examples with simplified API
134
139
 
135
- ### 🛡️ Stability Improvements
136
- - **Focus**: Testing and documentation release to ensure PythonCodeNode serialization remains stable
137
- - **Validation**: Complete test coverage for serialization edge cases
138
- - **Quality**: Comprehensive regression prevention for critical workflow components
140
+ ### 📦 Package Updates
141
+ - **kailash**: v0.9.10 - License update
142
+ - **kailash-nexus**: v1.0.6 - License update
143
+ - **kailash-dataflow**: v0.3.7 - License update
139
144
 
140
- [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.9.5-2025-07-31.md) | [Core SDK 0.9.5](https://pypi.org/project/kailash/0.9.5/) | [DataFlow 0.3.4](https://pypi.org/project/kailash-dataflow/0.3.4/)
145
+ [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.9.10-2025-08-01.md) | [Core SDK 0.9.10](https://pypi.org/project/kailash/0.9.10/) | [Nexus 1.0.6](https://pypi.org/project/kailash-nexus/1.0.6/) | [DataFlow 0.3.7](https://pypi.org/project/kailash-dataflow/0.3.7/)
141
146
 
142
147
  ## 🎯 What Makes Kailash Different
143
148
 
@@ -542,7 +547,24 @@ See [Contributing Guide](CONTRIBUTING.md) and [sdk-contributors/CLAUDE.md](sdk-c
542
547
 
543
548
  ## 📄 License
544
549
 
545
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
550
+ This project is licensed under the **Apache License 2.0 with Additional Terms** that protect against standalone commercial distribution while encouraging innovation.
551
+
552
+ ### ✅ What You CAN Do:
553
+ - **Use** Kailash SDK in your commercial applications and services
554
+ - **Create and sell** derivative works that add substantial functionality
555
+ - **Integrate** Kailash as a component of larger systems
556
+ - **Use internally** within your organization without restrictions
557
+ - **Provide services** using Kailash without distributing the SDK itself
558
+
559
+ ### ❌ What You CANNOT Do:
560
+ - **Sell the SDK as-is** without substantial modifications
561
+ - **Repackage and sell** with only cosmetic changes
562
+ - **Distribute commercially** as a standalone product
563
+
564
+ ### 📋 Summary:
565
+ We encourage commercial use of Kailash SDK as part of your innovative solutions while preventing direct resale of our work. This ensures the community benefits from continuous development while protecting the project's sustainability.
566
+
567
+ For complete license terms, see the [LICENSE](LICENSE) file. For commercial licensing inquiries or clarifications, please contact info@integrum.com.
546
568
 
547
569
  ## 🙏 Acknowledgments
548
570
 
@@ -4,7 +4,7 @@
4
4
  <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/v/kailash.svg" alt="PyPI version"></a>
5
5
  <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/pyversions/kailash.svg" alt="Python versions"></a>
6
6
  <a href="https://pepy.tech/project/kailash"><img src="https://static.pepy.tech/badge/kailash" alt="Downloads"></a>
7
- <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
7
+ <img src="https://img.shields.io/badge/license-Apache%202.0%20with%20Additional%20Terms-orange.svg" alt="Apache 2.0 with Additional Terms">
8
8
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
9
9
  <img src="https://img.shields.io/badge/tests-2400%2B%20passing-brightgreen.svg" alt="Tests: 2400+ Passing">
10
10
  <img src="https://img.shields.io/badge/performance-11x%20faster-yellow.svg" alt="Performance: 11x Faster">
@@ -22,27 +22,28 @@
22
22
 
23
23
  ---
24
24
 
25
- ## 🔥 Latest Release: v0.9.5 (July 31, 2025)
25
+ ## 🔥 Latest Release: v0.9.10 (August 1, 2025)
26
26
 
27
- **PythonCodeNode Serialization Stability & Testing**
27
+ **License Update & IterativeLLMAgentNode API Simplification**
28
28
 
29
- ### 🧪 Comprehensive Regression Test Suite (TODO-129)
30
- - **Added**: 33 unit tests validating PythonCodeNode serialization behavior and JSON compatibility
31
- - **Added**: 6 integration tests with real infrastructure using only allowed modules
32
- - **Added**: 6 E2E tests for complete business workflows and multi-channel consistency
33
- - **Impact**: Ensures serialization fix from commit 2fcf8591 (June 11, 2025) stays stable
29
+ ### 📄 License Changed to Apache 2.0 with Additional Terms
30
+ - **Changed**: From MIT to Apache License 2.0 with Additional Terms
31
+ - **Protection**: Prevents standalone commercial distribution of the SDK
32
+ - **Freedom**: Allows commercial use of derivatives and integration into larger systems
33
+ - **Patent Grant**: Includes Apache 2.0 patent protection clauses
34
34
 
35
- ### 📚 Documentation Clarifications
36
- - **Updated**: PythonCodeNode output structure documentation (all outputs wrapped in "result" key)
37
- - **Enhanced**: Serialization consistency notes for multi-channel deployment
38
- - **Improved**: Testing patterns for node serialization validation
35
+ ### 🤖 IterativeLLMAgentNode Improvements (v0.9.9)
36
+ - **Removed**: Mock mode entirely - real MCP execution always enabled
37
+ - **Simplified**: API by removing confusing `use_real_mcp` parameter
38
+ - **Enhanced**: Graceful fallback when MCP tools unavailable
39
+ - **Updated**: All documentation and examples with simplified API
39
40
 
40
- ### 🛡️ Stability Improvements
41
- - **Focus**: Testing and documentation release to ensure PythonCodeNode serialization remains stable
42
- - **Validation**: Complete test coverage for serialization edge cases
43
- - **Quality**: Comprehensive regression prevention for critical workflow components
41
+ ### 📦 Package Updates
42
+ - **kailash**: v0.9.10 - License update
43
+ - **kailash-nexus**: v1.0.6 - License update
44
+ - **kailash-dataflow**: v0.3.7 - License update
44
45
 
45
- [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.9.5-2025-07-31.md) | [Core SDK 0.9.5](https://pypi.org/project/kailash/0.9.5/) | [DataFlow 0.3.4](https://pypi.org/project/kailash-dataflow/0.3.4/)
46
+ [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.9.10-2025-08-01.md) | [Core SDK 0.9.10](https://pypi.org/project/kailash/0.9.10/) | [Nexus 1.0.6](https://pypi.org/project/kailash-nexus/1.0.6/) | [DataFlow 0.3.7](https://pypi.org/project/kailash-dataflow/0.3.7/)
46
47
 
47
48
  ## 🎯 What Makes Kailash Different
48
49
 
@@ -447,7 +448,24 @@ See [Contributing Guide](CONTRIBUTING.md) and [sdk-contributors/CLAUDE.md](sdk-c
447
448
 
448
449
  ## 📄 License
449
450
 
450
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
451
+ This project is licensed under the **Apache License 2.0 with Additional Terms** that protect against standalone commercial distribution while encouraging innovation.
452
+
453
+ ### ✅ What You CAN Do:
454
+ - **Use** Kailash SDK in your commercial applications and services
455
+ - **Create and sell** derivative works that add substantial functionality
456
+ - **Integrate** Kailash as a component of larger systems
457
+ - **Use internally** within your organization without restrictions
458
+ - **Provide services** using Kailash without distributing the SDK itself
459
+
460
+ ### ❌ What You CANNOT Do:
461
+ - **Sell the SDK as-is** without substantial modifications
462
+ - **Repackage and sell** with only cosmetic changes
463
+ - **Distribute commercially** as a standalone product
464
+
465
+ ### 📋 Summary:
466
+ We encourage commercial use of Kailash SDK as part of your innovative solutions while preventing direct resale of our work. This ensures the community benefits from continuous development while protecting the project's sustainability.
467
+
468
+ For complete license terms, see the [LICENSE](LICENSE) file. For commercial licensing inquiries or clarifications, please contact info@integrum.com.
451
469
 
452
470
  ## 🙏 Acknowledgments
453
471
 
@@ -4,16 +4,18 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kailash"
7
- version = "0.9.9"
7
+ version = "0.9.10"
8
8
  description = "Python SDK for the Kailash container-node architecture"
9
9
  authors = [
10
10
  {name = "Integrum", email = "info@integrum.com"}
11
11
  ]
12
12
  readme = "README.md"
13
+ license = {text = "Apache-2.0 WITH Additional-Terms"}
13
14
  requires-python = ">=3.12"
14
15
  classifiers = [
15
16
  "Development Status :: 3 - Alpha",
16
17
  "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: Apache Software License",
17
19
  "Programming Language :: Python :: 3",
18
20
  "Programming Language :: Python :: 3.11",
19
21
  "Programming Language :: Python :: 3.12",
@@ -100,6 +102,7 @@ dev = [
100
102
  [project.urls]
101
103
  "Homepage" = "https://github.com/integrum/kailash-python-sdk"
102
104
  "Bug Tracker" = "https://github.com/integrum/kailash-python-sdk/issues"
105
+ "License" = "https://github.com/integrum/kailash-python-sdk/blob/main/LICENSE"
103
106
 
104
107
  [tool.setuptools]
105
108
  package-dir = {"" = "src"}
@@ -50,7 +50,7 @@ except ImportError:
50
50
  # For backward compatibility
51
51
  WorkflowGraph = Workflow
52
52
 
53
- __version__ = "0.9.9"
53
+ __version__ = "0.9.10"
54
54
 
55
55
  __all__ = [
56
56
  # Core workflow components
@@ -1,20 +1,24 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kailash
3
- Version: 0.9.9
3
+ Version: 0.9.10
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
7
7
  Author-email: Integrum <info@integrum.com>
8
+ License: Apache-2.0 WITH Additional-Terms
8
9
  Project-URL: Homepage, https://github.com/integrum/kailash-python-sdk
9
10
  Project-URL: Bug Tracker, https://github.com/integrum/kailash-python-sdk/issues
11
+ Project-URL: License, https://github.com/integrum/kailash-python-sdk/blob/main/LICENSE
10
12
  Classifier: Development Status :: 3 - Alpha
11
13
  Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
12
15
  Classifier: Programming Language :: Python :: 3
13
16
  Classifier: Programming Language :: Python :: 3.11
14
17
  Classifier: Programming Language :: Python :: 3.12
15
18
  Requires-Python: >=3.11
16
19
  Description-Content-Type: text/markdown
17
20
  License-File: LICENSE
21
+ License-File: NOTICE
18
22
  Requires-Dist: networkx>=2.7
19
23
  Requires-Dist: pydantic>=1.9
20
24
  Requires-Dist: matplotlib>=3.5
@@ -99,7 +103,7 @@ Dynamic: requires-python
99
103
  <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/v/kailash.svg" alt="PyPI version"></a>
100
104
  <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/pyversions/kailash.svg" alt="Python versions"></a>
101
105
  <a href="https://pepy.tech/project/kailash"><img src="https://static.pepy.tech/badge/kailash" alt="Downloads"></a>
102
- <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
106
+ <img src="https://img.shields.io/badge/license-Apache%202.0%20with%20Additional%20Terms-orange.svg" alt="Apache 2.0 with Additional Terms">
103
107
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
104
108
  <img src="https://img.shields.io/badge/tests-2400%2B%20passing-brightgreen.svg" alt="Tests: 2400+ Passing">
105
109
  <img src="https://img.shields.io/badge/performance-11x%20faster-yellow.svg" alt="Performance: 11x Faster">
@@ -117,27 +121,28 @@ Dynamic: requires-python
117
121
 
118
122
  ---
119
123
 
120
- ## 🔥 Latest Release: v0.9.5 (July 31, 2025)
124
+ ## 🔥 Latest Release: v0.9.10 (August 1, 2025)
121
125
 
122
- **PythonCodeNode Serialization Stability & Testing**
126
+ **License Update & IterativeLLMAgentNode API Simplification**
123
127
 
124
- ### 🧪 Comprehensive Regression Test Suite (TODO-129)
125
- - **Added**: 33 unit tests validating PythonCodeNode serialization behavior and JSON compatibility
126
- - **Added**: 6 integration tests with real infrastructure using only allowed modules
127
- - **Added**: 6 E2E tests for complete business workflows and multi-channel consistency
128
- - **Impact**: Ensures serialization fix from commit 2fcf8591 (June 11, 2025) stays stable
128
+ ### 📄 License Changed to Apache 2.0 with Additional Terms
129
+ - **Changed**: From MIT to Apache License 2.0 with Additional Terms
130
+ - **Protection**: Prevents standalone commercial distribution of the SDK
131
+ - **Freedom**: Allows commercial use of derivatives and integration into larger systems
132
+ - **Patent Grant**: Includes Apache 2.0 patent protection clauses
129
133
 
130
- ### 📚 Documentation Clarifications
131
- - **Updated**: PythonCodeNode output structure documentation (all outputs wrapped in "result" key)
132
- - **Enhanced**: Serialization consistency notes for multi-channel deployment
133
- - **Improved**: Testing patterns for node serialization validation
134
+ ### 🤖 IterativeLLMAgentNode Improvements (v0.9.9)
135
+ - **Removed**: Mock mode entirely - real MCP execution always enabled
136
+ - **Simplified**: API by removing confusing `use_real_mcp` parameter
137
+ - **Enhanced**: Graceful fallback when MCP tools unavailable
138
+ - **Updated**: All documentation and examples with simplified API
134
139
 
135
- ### 🛡️ Stability Improvements
136
- - **Focus**: Testing and documentation release to ensure PythonCodeNode serialization remains stable
137
- - **Validation**: Complete test coverage for serialization edge cases
138
- - **Quality**: Comprehensive regression prevention for critical workflow components
140
+ ### 📦 Package Updates
141
+ - **kailash**: v0.9.10 - License update
142
+ - **kailash-nexus**: v1.0.6 - License update
143
+ - **kailash-dataflow**: v0.3.7 - License update
139
144
 
140
- [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.9.5-2025-07-31.md) | [Core SDK 0.9.5](https://pypi.org/project/kailash/0.9.5/) | [DataFlow 0.3.4](https://pypi.org/project/kailash-dataflow/0.3.4/)
145
+ [Full Changelog](sdk-users/6-reference/changelogs/releases/v0.9.10-2025-08-01.md) | [Core SDK 0.9.10](https://pypi.org/project/kailash/0.9.10/) | [Nexus 1.0.6](https://pypi.org/project/kailash-nexus/1.0.6/) | [DataFlow 0.3.7](https://pypi.org/project/kailash-dataflow/0.3.7/)
141
146
 
142
147
  ## 🎯 What Makes Kailash Different
143
148
 
@@ -542,7 +547,24 @@ See [Contributing Guide](CONTRIBUTING.md) and [sdk-contributors/CLAUDE.md](sdk-c
542
547
 
543
548
  ## 📄 License
544
549
 
545
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
550
+ This project is licensed under the **Apache License 2.0 with Additional Terms** that protect against standalone commercial distribution while encouraging innovation.
551
+
552
+ ### ✅ What You CAN Do:
553
+ - **Use** Kailash SDK in your commercial applications and services
554
+ - **Create and sell** derivative works that add substantial functionality
555
+ - **Integrate** Kailash as a component of larger systems
556
+ - **Use internally** within your organization without restrictions
557
+ - **Provide services** using Kailash without distributing the SDK itself
558
+
559
+ ### ❌ What You CANNOT Do:
560
+ - **Sell the SDK as-is** without substantial modifications
561
+ - **Repackage and sell** with only cosmetic changes
562
+ - **Distribute commercially** as a standalone product
563
+
564
+ ### 📋 Summary:
565
+ We encourage commercial use of Kailash SDK as part of your innovative solutions while preventing direct resale of our work. This ensures the community benefits from continuous development while protecting the project's sustainability.
566
+
567
+ For complete license terms, see the [LICENSE](LICENSE) file. For commercial licensing inquiries or clarifications, please contact info@integrum.com.
546
568
 
547
569
  ## 🙏 Acknowledgments
548
570
 
@@ -1,5 +1,6 @@
1
1
  LICENSE
2
2
  MANIFEST.in
3
+ NOTICE
3
4
  README.md
4
5
  pyproject.toml
5
6
  setup.cfg
kailash-0.9.9/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Integrum
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
File without changes
File without changes
File without changes