orchestrator-core 4.6.0rc3__tar.gz → 4.6.1__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 (379) hide show
  1. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/PKG-INFO +15 -10
  2. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/README.md +12 -7
  3. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/__init__.py +2 -2
  4. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/app.py +1 -1
  5. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/main.py +1 -1
  6. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/models.py +1 -1
  7. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schema.py +6 -1
  8. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/types.py +4 -1
  9. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/llm_settings.py +1 -1
  10. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/helpers.py +1 -1
  11. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflow.py +23 -6
  12. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/pyproject.toml +3 -2
  13. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/LICENSE +0 -0
  14. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/agentic_app.py +0 -0
  15. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/__init__.py +0 -0
  16. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/__init__.py +0 -0
  17. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/api.py +0 -0
  18. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/__init__.py +0 -0
  19. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/agent.py +0 -0
  20. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/health.py +0 -0
  21. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/processes.py +0 -0
  22. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/product_blocks.py +0 -0
  23. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/products.py +0 -0
  24. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/resource_types.py +0 -0
  25. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/search.py +0 -0
  26. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/settings.py +0 -0
  27. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/subscription_customer_descriptions.py +0 -0
  28. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/subscriptions.py +0 -0
  29. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/translations.py +0 -0
  30. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/user.py +0 -0
  31. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/workflows.py +0 -0
  32. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/api_v1/endpoints/ws.py +0 -0
  33. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/error_handling.py +0 -0
  34. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/helpers.py +0 -0
  35. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/api/models.py +0 -0
  36. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/__init__.py +0 -0
  37. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/database.py +0 -0
  38. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/__init__.py +0 -0
  39. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/fixed_input_helpers.py +0 -0
  40. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/helpers.py +0 -0
  41. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/product_block_helpers.py +0 -0
  42. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/product_helpers.py +0 -0
  43. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/resource_type_helpers.py +0 -0
  44. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/domain_gen_helpers/types.py +0 -0
  45. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generate.py +0 -0
  46. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/__init__.py +0 -0
  47. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/README +0 -0
  48. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_create_imports.j2 +0 -0
  49. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_create_input_fields.j2 +0 -0
  50. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_create_steps.j2 +0 -0
  51. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_modify_imports.j2 +0 -0
  52. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_modify_input_fields.j2 +0 -0
  53. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_modify_steps.j2 +0 -0
  54. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_terminate_imports.j2 +0 -0
  55. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_terminate_input_fields.j2 +0 -0
  56. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/custom_templates/additional_terminate_steps.j2 +0 -0
  57. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/__init__.py +0 -0
  58. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/enums.py +0 -0
  59. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/helpers.py +0 -0
  60. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/migration.py +0 -0
  61. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/product.py +0 -0
  62. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/product_block.py +0 -0
  63. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/settings.py +0 -0
  64. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/translations.py +0 -0
  65. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/unittest.py +0 -0
  66. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/validations.py +0 -0
  67. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/generator/workflow.py +0 -0
  68. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/products/workshop/circuit.yaml +0 -0
  69. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/products/workshop/node.yaml +0 -0
  70. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/products/workshop/user.yaml +0 -0
  71. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/products/workshop/user_group.yaml +0 -0
  72. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/additional_create_imports.j2 +0 -0
  73. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/additional_create_steps.j2 +0 -0
  74. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/additional_modify_imports.j2 +0 -0
  75. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/additional_modify_steps.j2 +0 -0
  76. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/additional_terminate_steps.j2 +0 -0
  77. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/constrained_int_definitions.j2 +0 -0
  78. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/create_data_head.j2 +0 -0
  79. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/create_product.j2 +0 -0
  80. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/enums.j2 +0 -0
  81. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/lazy_workflow_instance.j2 +0 -0
  82. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/list_definitions.j2 +0 -0
  83. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/macros.j2 +0 -0
  84. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/modify_product.j2 +0 -0
  85. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/new_product_migration.j2 +0 -0
  86. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/product.j2 +0 -0
  87. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/product_block.j2 +0 -0
  88. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/shared_forms.j2 +0 -0
  89. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/shared_workflows.j2 +0 -0
  90. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/subscription_model_registry.j2 +0 -0
  91. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/terminate_product.j2 +0 -0
  92. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/test_create_workflow.j2 +0 -0
  93. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/test_modify_workflow.j2 +0 -0
  94. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/test_product_type.j2 +0 -0
  95. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/test_terminate_workflow.j2 +0 -0
  96. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/test_validate_workflow.j2 +0 -0
  97. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/generator/templates/validate_product.j2 +0 -0
  98. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/helpers/__init__.py +0 -0
  99. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/helpers/input_helpers.py +0 -0
  100. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/helpers/print_helpers.py +0 -0
  101. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/migrate_domain_models.py +0 -0
  102. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/migrate_tasks.py +0 -0
  103. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/migrate_workflows.py +0 -0
  104. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/migration_helpers.py +0 -0
  105. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/scheduler.py +0 -0
  106. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/search/__init__.py +0 -0
  107. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/search/index_llm.py +0 -0
  108. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/search/resize_embedding.py +0 -0
  109. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/search/search_explore.py +0 -0
  110. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/cli/search/speedtest.py +0 -0
  111. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/config/__init__.py +0 -0
  112. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/config/assignee.py +0 -0
  113. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/__init__.py +0 -0
  114. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/database.py +0 -0
  115. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/__init__.py +0 -0
  116. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/filters.py +0 -0
  117. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/process.py +0 -0
  118. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/product.py +0 -0
  119. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/product_block.py +0 -0
  120. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/resource_type.py +0 -0
  121. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/search_filters/__init__.py +0 -0
  122. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/search_filters/inferred_filter.py +0 -0
  123. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/subscription.py +0 -0
  124. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/filters/workflow.py +0 -0
  125. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/helpers.py +0 -0
  126. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/listeners.py +0 -0
  127. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/loaders.py +0 -0
  128. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/queries/__init__.py +0 -0
  129. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/queries/subscription.py +0 -0
  130. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/queries/subscription_instance.py +0 -0
  131. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/range/__init__.py +0 -0
  132. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/range/range.py +0 -0
  133. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/__init__.py +0 -0
  134. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/process.py +0 -0
  135. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/product.py +0 -0
  136. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/product_block.py +0 -0
  137. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/resource_type.py +0 -0
  138. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/sorting.py +0 -0
  139. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/subscription.py +0 -0
  140. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/db/sorting/workflow.py +0 -0
  141. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/devtools/__init__.py +0 -0
  142. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/devtools/populator.py +0 -0
  143. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/devtools/scripts/__init__.py +0 -0
  144. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/devtools/scripts/migrate_20.py +0 -0
  145. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/devtools/scripts/migrate_30.py +0 -0
  146. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/devtools/scripts/shared.py +0 -0
  147. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/distlock/__init__.py +0 -0
  148. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/distlock/distlock_manager.py +0 -0
  149. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/distlock/managers/__init__.py +0 -0
  150. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/distlock/managers/memory_distlock_manager.py +0 -0
  151. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/distlock/managers/redis_distlock_manager.py +0 -0
  152. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/__init__.py +0 -0
  153. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/base.py +0 -0
  154. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/context_cache.py +0 -0
  155. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/customer_description.py +0 -0
  156. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/helpers.py +0 -0
  157. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/lifecycle.py +0 -0
  158. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/domain/subscription_instance_transform.py +0 -0
  159. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/exception_handlers.py +0 -0
  160. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/__init__.py +0 -0
  161. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/validators/__init__.py +0 -0
  162. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/validators/customer_contact_list.py +0 -0
  163. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/validators/customer_id.py +0 -0
  164. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/validators/display_subscription.py +0 -0
  165. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/validators/network_type_validators.py +0 -0
  166. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/forms/validators/product_id.py +0 -0
  167. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/__init__.py +0 -0
  168. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/autoregistration.py +0 -0
  169. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/extensions/__init__.py +0 -0
  170. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/extensions/model_cache.py +0 -0
  171. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/extensions/stats.py +0 -0
  172. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/loaders/__init__.py +0 -0
  173. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/loaders/subscriptions.py +0 -0
  174. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/mutations/customer_description.py +0 -0
  175. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/mutations/start_process.py +0 -0
  176. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/pagination.py +0 -0
  177. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/__init__.py +0 -0
  178. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/customer.py +0 -0
  179. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/helpers.py +0 -0
  180. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/process.py +0 -0
  181. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/product.py +0 -0
  182. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/product_block.py +0 -0
  183. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/resource_type.py +0 -0
  184. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/scheduled_tasks.py +0 -0
  185. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/settings.py +0 -0
  186. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/subscription.py +0 -0
  187. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/version.py +0 -0
  188. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/resolvers/workflow.py +0 -0
  189. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/__init__.py +0 -0
  190. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/customer.py +0 -0
  191. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/customer_description.py +0 -0
  192. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/errors.py +0 -0
  193. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/fixed_input.py +0 -0
  194. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/helpers.py +0 -0
  195. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/process.py +0 -0
  196. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/product.py +0 -0
  197. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/product_block.py +0 -0
  198. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/resource_type.py +0 -0
  199. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/scheduled_task.py +0 -0
  200. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/settings.py +0 -0
  201. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/strawberry_pydantic_patch.py +0 -0
  202. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/subscription.py +0 -0
  203. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/version.py +0 -0
  204. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/schemas/workflow.py +0 -0
  205. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/__init__.py +0 -0
  206. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/create_resolver_error_handler.py +0 -0
  207. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/get_query_loaders.py +0 -0
  208. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/get_selected_fields.py +0 -0
  209. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/get_selected_paths.py +0 -0
  210. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/get_subscription_product_blocks.py +0 -0
  211. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/is_query_detailed.py +0 -0
  212. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/override_class.py +0 -0
  213. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/graphql/utils/to_graphql_result_page.py +0 -0
  214. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/log_config.py +0 -0
  215. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/metrics/__init__.py +0 -0
  216. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/metrics/engine.py +0 -0
  217. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/metrics/init.py +0 -0
  218. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/metrics/processes.py +0 -0
  219. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/metrics/subscriptions.py +0 -0
  220. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/README +0 -0
  221. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/__init__.py +0 -0
  222. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/alembic.ini +0 -0
  223. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/env.py +0 -0
  224. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/script.py.mako +0 -0
  225. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/templates/alembic.ini.j2 +0 -0
  226. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/templates/env.py.j2 +0 -0
  227. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/templates/helpers.py.j2 +0 -0
  228. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2020-10-19_3323bcb934e7_fix_tsv_triggers.py +0 -0
  229. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2020-10-19_a76b9185b334_add_generic_workflows_to_core.py +0 -0
  230. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2020-10-19_c112305b07d3_initial_schema_migration.py +0 -0
  231. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2021-04-06_3c8b9185c221_add_validate_products_task.py +0 -0
  232. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2021-07-01_6896a54e9483_add_product_block_relations.py +0 -0
  233. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2021-11-17_19cdd3ab86f6_fix_parse_websearch.py +0 -0
  234. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2022-02-16_bed6bc0b197a_rename_parent_and_child_block_relations.py +0 -0
  235. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-03-06_e05bb1967eff_add_subscriptions_search_view.py +0 -0
  236. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-05-25_b1970225392d_add_subscription_metadata_workflow.py +0 -0
  237. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-06-28_a09ac125ea73_add_throttling_to_refresh_subscriptions.py +0 -0
  238. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-06-28_a09ac125ea73_add_throttling_to_refresh_subscriptions.sql +0 -0
  239. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-07-17_165303a20fb1_customer_id_to_varchar.py +0 -0
  240. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-07-17_165303a20fb1_customer_id_to_varchar.sql +0 -0
  241. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-09-25_da5c9f4cce1c_add_subscription_metadata_to_fulltext_.py +0 -0
  242. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-09-25_da5c9f4cce1c_add_subscription_metadata_to_fulltext_.sql +0 -0
  243. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2023-12-06_048219045729_add_workflow_id_to_processes_table.py +0 -0
  244. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2024-09-27_460ec6748e37_add_uuid_search_workaround.py +0 -0
  245. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2024-09-27_460ec6748e37_add_uuid_search_workaround.sql +0 -0
  246. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-01-08_4c5859620539_add_version_column_to_subscription.py +0 -0
  247. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-01-19_4fjdn13f83ga_add_validate_product_type_task.py +0 -0
  248. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-02-12_bac6be6f2b4f_added_input_state_table.py +0 -0
  249. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-02-20_68d14db1b8da_make_workflow_description_mandatory.py +0 -0
  250. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-03-06_42b3d076a85b_subscription_instance_as_json_function.py +0 -0
  251. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-03-06_42b3d076a85b_subscription_instance_as_json_function.sql +0 -0
  252. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-04-09_fc5c993a4b4a_add_cascade_constraint_on_processes_.py +0 -0
  253. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-05-08_161918133bec_add_is_task_to_workflow.py +0 -0
  254. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-07-01_93fc5834c7e5_changed_timestamping_fields_in_process_steps.py +0 -0
  255. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-07-04_4b58e336d1bf_deprecating_workflow_target_in_.py +0 -0
  256. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/migrations/versions/schema/2025-07-28_850dccac3b02_update_description_of_resume_workflows_.py +0 -0
  257. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/py.typed +0 -0
  258. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/__init__.py +0 -0
  259. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/resume_workflows.py +0 -0
  260. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/scheduler.py +0 -0
  261. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/scheduling.py +0 -0
  262. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/task_vacuum.py +0 -0
  263. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/validate_products.py +0 -0
  264. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schedules/validate_subscriptions.py +0 -0
  265. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/__init__.py +0 -0
  266. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/base.py +0 -0
  267. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/engine_settings.py +0 -0
  268. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/fixed_input.py +0 -0
  269. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/problem_detail.py +0 -0
  270. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/process.py +0 -0
  271. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/product.py +0 -0
  272. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/product_block.py +0 -0
  273. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/resource_type.py +0 -0
  274. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/search.py +0 -0
  275. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/subscription.py +0 -0
  276. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/subscription_descriptions.py +0 -0
  277. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/schemas/workflow.py +0 -0
  278. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/__init__.py +0 -0
  279. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/agent/__init__.py +0 -0
  280. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/agent/agent.py +0 -0
  281. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/agent/json_patch.py +0 -0
  282. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/agent/prompts.py +0 -0
  283. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/agent/state.py +0 -0
  284. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/agent/tools.py +0 -0
  285. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/core/__init__.py +0 -0
  286. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/core/embedding.py +0 -0
  287. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/core/exceptions.py +0 -0
  288. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/core/types.py +0 -0
  289. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/core/validators.py +0 -0
  290. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/docs/index.md +0 -0
  291. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/docs/running_local_text_embedding_inference.md +0 -0
  292. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/export.py +0 -0
  293. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/filters/__init__.py +0 -0
  294. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/filters/base.py +0 -0
  295. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/filters/date_filters.py +0 -0
  296. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/filters/definitions.py +0 -0
  297. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/filters/ltree_filters.py +0 -0
  298. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/filters/numeric_filter.py +0 -0
  299. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/indexing/__init__.py +0 -0
  300. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/indexing/indexer.py +0 -0
  301. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/indexing/registry.py +0 -0
  302. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/indexing/tasks.py +0 -0
  303. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/indexing/traverse.py +0 -0
  304. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/llm_migration.py +0 -0
  305. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/__init__.py +0 -0
  306. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/builder.py +0 -0
  307. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/engine.py +0 -0
  308. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/exceptions.py +0 -0
  309. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/pagination.py +0 -0
  310. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/query_state.py +0 -0
  311. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/retrievers/__init__.py +0 -0
  312. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/retrievers/base.py +0 -0
  313. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/retrievers/fuzzy.py +0 -0
  314. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/retrievers/hybrid.py +0 -0
  315. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/retrievers/semantic.py +0 -0
  316. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/retrievers/structured.py +0 -0
  317. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/utils.py +0 -0
  318. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/retrieval/validation.py +0 -0
  319. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/schemas/__init__.py +0 -0
  320. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/schemas/parameters.py +0 -0
  321. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/search/schemas/results.py +0 -0
  322. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/security.py +0 -0
  323. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/__init__.py +0 -0
  324. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/executors/__init__.py +0 -0
  325. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/executors/celery.py +0 -0
  326. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/executors/threadpool.py +0 -0
  327. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/fixed_inputs.py +0 -0
  328. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/input_state.py +0 -0
  329. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/process_broadcast_thread.py +0 -0
  330. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/processes.py +0 -0
  331. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/products.py +0 -0
  332. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/resource_types.py +0 -0
  333. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/settings.py +0 -0
  334. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/settings_env_variables.py +0 -0
  335. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/subscription_relations.py +0 -0
  336. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/subscriptions.py +0 -0
  337. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/tasks.py +0 -0
  338. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/translations.py +0 -0
  339. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/services/workflows.py +0 -0
  340. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/settings.py +0 -0
  341. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/targets.py +0 -0
  342. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/types.py +0 -0
  343. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/__init__.py +0 -0
  344. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/auth.py +0 -0
  345. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/crypt.py +0 -0
  346. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/datetime.py +0 -0
  347. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/deprecation_logger.py +0 -0
  348. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/docs.py +0 -0
  349. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/enrich_process.py +0 -0
  350. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/errors.py +0 -0
  351. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/expose_settings.py +0 -0
  352. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/fixed_inputs.py +0 -0
  353. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/functional.py +0 -0
  354. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/get_subscription_dict.py +0 -0
  355. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/get_updated_properties.py +0 -0
  356. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/helpers.py +0 -0
  357. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/json.py +0 -0
  358. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/redis.py +0 -0
  359. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/redis_client.py +0 -0
  360. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/search_query.py +0 -0
  361. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/state.py +0 -0
  362. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/strings.py +0 -0
  363. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/utils/validate_data_version.py +0 -0
  364. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/version.py +0 -0
  365. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/websocket/__init__.py +0 -0
  366. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/websocket/managers/broadcast_websocket_manager.py +0 -0
  367. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/websocket/managers/memory_websocket_manager.py +0 -0
  368. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/websocket/websocket_manager.py +0 -0
  369. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/__init__.py +0 -0
  370. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/modify_note.py +0 -0
  371. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/removed_workflow.py +0 -0
  372. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/steps.py +0 -0
  373. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/tasks/__init__.py +0 -0
  374. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/tasks/cleanup_tasks_log.py +0 -0
  375. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/tasks/resume_workflows.py +0 -0
  376. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/tasks/validate_product_type.py +0 -0
  377. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/tasks/validate_products.py +0 -0
  378. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/translations/en-GB.json +0 -0
  379. {orchestrator_core-4.6.0rc3 → orchestrator_core-4.6.1}/orchestrator/workflows/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orchestrator-core
3
- Version: 4.6.0rc3
3
+ Version: 4.6.1
4
4
  Summary: This is the orchestrator workflow engine.
5
5
  Author-email: SURF <automation-beheer@surf.nl>
6
6
  Requires-Python: >=3.11,<3.14
@@ -41,8 +41,8 @@ Requires-Dist: fastapi-etag==0.4.0
41
41
  Requires-Dist: itsdangerous>=2.2.0
42
42
  Requires-Dist: jinja2==3.1.6
43
43
  Requires-Dist: more-itertools~=10.7.0
44
- Requires-Dist: nwa-stdlib~=1.9.2
45
- Requires-Dist: oauth2-lib==2.4.2
44
+ Requires-Dist: nwa-stdlib~=1.10.3
45
+ Requires-Dist: oauth2-lib>=2.5.0
46
46
  Requires-Dist: orjson==3.10.18
47
47
  Requires-Dist: pgvector>=0.4.1
48
48
  Requires-Dist: prometheus-client==0.22.1
@@ -119,21 +119,26 @@ Configure the database URI in your local environment:
119
119
  export DATABASE_URI=postgresql://nwa:nwa@localhost:5432/orchestrator-core
120
120
  ```
121
121
 
122
- ### Step 3 - Create main.py
122
+ ### Step 3 - Create main.py and wsgi.py
123
123
 
124
- Create a `main.py` file.
124
+ Create a `main.py` file for running the CLI.
125
125
 
126
126
  ```python
127
- from orchestrator import OrchestratorCore
128
127
  from orchestrator.cli.main import app as core_cli
129
- from orchestrator.settings import AppSettings
130
-
131
- app = OrchestratorCore(base_settings=AppSettings())
132
128
 
133
129
  if __name__ == "__main__":
134
130
  core_cli()
135
131
  ```
136
132
 
133
+ Create a `wsgi.py` file for running the web server.
134
+
135
+ ```python
136
+ from orchestrator import OrchestratorCore
137
+ from orchestrator.settings import AppSettings
138
+
139
+ app = OrchestratorCore(base_settings=AppSettings())
140
+ ```
141
+
137
142
  ### Step 4 - Run the database migrations
138
143
 
139
144
  Initialize the migration environment and database tables.
@@ -147,7 +152,7 @@ python main.py db upgrade heads
147
152
 
148
153
  ```shell
149
154
  export OAUTH2_ACTIVE=False
150
- uvicorn --reload --host 127.0.0.1 --port 8080 main:app
155
+ uvicorn --reload --host 127.0.0.1 --port 8080 wsgi:app
151
156
  ```
152
157
 
153
158
  Visit the [ReDoc](http://127.0.0.1:8080/api/redoc) or [OpenAPI](http://127.0.0.1:8080/api/docs) page to view and interact with the API.
@@ -42,21 +42,26 @@ Configure the database URI in your local environment:
42
42
  export DATABASE_URI=postgresql://nwa:nwa@localhost:5432/orchestrator-core
43
43
  ```
44
44
 
45
- ### Step 3 - Create main.py
45
+ ### Step 3 - Create main.py and wsgi.py
46
46
 
47
- Create a `main.py` file.
47
+ Create a `main.py` file for running the CLI.
48
48
 
49
49
  ```python
50
- from orchestrator import OrchestratorCore
51
50
  from orchestrator.cli.main import app as core_cli
52
- from orchestrator.settings import AppSettings
53
-
54
- app = OrchestratorCore(base_settings=AppSettings())
55
51
 
56
52
  if __name__ == "__main__":
57
53
  core_cli()
58
54
  ```
59
55
 
56
+ Create a `wsgi.py` file for running the web server.
57
+
58
+ ```python
59
+ from orchestrator import OrchestratorCore
60
+ from orchestrator.settings import AppSettings
61
+
62
+ app = OrchestratorCore(base_settings=AppSettings())
63
+ ```
64
+
60
65
  ### Step 4 - Run the database migrations
61
66
 
62
67
  Initialize the migration environment and database tables.
@@ -70,7 +75,7 @@ python main.py db upgrade heads
70
75
 
71
76
  ```shell
72
77
  export OAUTH2_ACTIVE=False
73
- uvicorn --reload --host 127.0.0.1 --port 8080 main:app
78
+ uvicorn --reload --host 127.0.0.1 --port 8080 wsgi:app
74
79
  ```
75
80
 
76
81
  Visit the [ReDoc](http://127.0.0.1:8080/api/redoc) or [OpenAPI](http://127.0.0.1:8080/api/docs) page to view and interact with the API.
@@ -1,4 +1,4 @@
1
- # Copyright 2019-2025 SURF, GÉANT.
1
+ # Copyright 2019-2025 SURF, GÉANT, ESnet.
2
2
  # Licensed under the Apache License, Version 2.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
@@ -13,7 +13,7 @@
13
13
 
14
14
  """This is the orchestrator workflow engine."""
15
15
 
16
- __version__ = "4.6.0rc3"
16
+ __version__ = "4.6.1"
17
17
 
18
18
 
19
19
  from structlog import get_logger
@@ -5,7 +5,7 @@ This module contains the main `OrchestratorCore` class for the `FastAPI` backend
5
5
  provides the ability to run the CLI.
6
6
  """
7
7
 
8
- # Copyright 2019-2020 SURF, ESnet, GÉANT.
8
+ # Copyright 2019-2025 SURF, ESnet, GÉANT.
9
9
  # Licensed under the Apache License, Version 2.0 (the "License");
10
10
  # you may not use this file except in compliance with the License.
11
11
  # You may obtain a copy of the License at
@@ -1,4 +1,4 @@
1
- # Copyright 2019-2020 SURF.
1
+ # Copyright 2019-2025 SURF, ESnet, GÉANT.
2
2
  # Licensed under the Apache License, Version 2.0 (the "License");
3
3
  # you may not use this file except in compliance with the License.
4
4
  # You may obtain a copy of the License at
@@ -711,7 +711,7 @@ class SearchQueryTable(BaseModel):
711
711
  parameters = mapped_column(pg.JSONB, nullable=False)
712
712
 
713
713
  # Query embedding for semantic search (pgvector)
714
- query_embedding = mapped_column(Vector(1536), nullable=True)
714
+ query_embedding = mapped_column(Vector(llm_settings.EMBEDDING_DIMENSION), nullable=True)
715
715
 
716
716
  executed_at = mapped_column(UtcTimestamp, server_default=text("current_timestamp()"), nullable=False)
717
717
 
@@ -63,7 +63,12 @@ from orchestrator.graphql.schemas.settings import StatusType
63
63
  from orchestrator.graphql.schemas.subscription import SubscriptionInterface
64
64
  from orchestrator.graphql.schemas.version import VersionType
65
65
  from orchestrator.graphql.schemas.workflow import Workflow
66
- from orchestrator.graphql.types import SCALAR_OVERRIDES, OrchestratorContext, ScalarOverrideType, StrawberryModelType
66
+ from orchestrator.graphql.types import (
67
+ SCALAR_OVERRIDES,
68
+ OrchestratorContext,
69
+ ScalarOverrideType,
70
+ StrawberryModelType,
71
+ )
67
72
  from orchestrator.services.process_broadcast_thread import ProcessDataBroadcastThread
68
73
  from orchestrator.settings import app_settings
69
74
 
@@ -17,7 +17,7 @@ from ipaddress import IPv4Address, IPv4Interface, IPv6Address, IPv6Interface
17
17
  from typing import Any, NewType, TypeVar
18
18
 
19
19
  import strawberry
20
- from graphql import GraphQLError
20
+ from graphql import GraphQLError, GraphQLNamedType
21
21
  from strawberry.dataloader import DataLoader
22
22
  from strawberry.experimental.pydantic.conversion_types import StrawberryTypeFromPydantic
23
23
  from strawberry.scalars import JSON
@@ -122,6 +122,9 @@ IPv6InterfaceType = strawberry.scalar(
122
122
  parse_value=lambda v: v,
123
123
  )
124
124
 
125
+ # TODO: Remove Hack to prevent the error: `Redefinition of reserved type 'Int'`
126
+ if hasattr(GraphQLNamedType, "reserved_types"):
127
+ GraphQLNamedType.reserved_types.pop("Int", None)
125
128
  IntType = strawberry.scalar(
126
129
  NewType("Int", int),
127
130
  description="An arbitrary precision integer",
@@ -18,7 +18,7 @@ from structlog import get_logger
18
18
 
19
19
  logger = get_logger(__name__)
20
20
 
21
- EMBEDDING_DIMENSION_MIN = 200
21
+ EMBEDDING_DIMENSION_MIN = 100
22
22
  EMBEDDING_DIMENSION_MAX = 2000
23
23
  EMBEDDING_DIMENSION_DEFAULT = 1536
24
24
 
@@ -237,7 +237,7 @@ def create_task(conn: sa.engine.Connection, task: dict) -> None:
237
237
  "name": "task_name",
238
238
  "description": "task description",
239
239
  }
240
- >>> create_workflow(conn, task)
240
+ >>> create_task(conn, task)
241
241
  """
242
242
  if has_table_column(table_name="workflows", column_name="is_task", conn=conn):
243
243
  query = """
@@ -235,7 +235,10 @@ def make_workflow(
235
235
  return wrapping_function
236
236
 
237
237
 
238
- def step(name: str) -> Callable[[StepFunc], Step]:
238
+ def step(
239
+ name: str,
240
+ retry_auth_callback: Authorizer | None = None,
241
+ ) -> Callable[[StepFunc], Step]:
239
242
  """Mark a function as a workflow step."""
240
243
 
241
244
  def decorator(func: StepFunc) -> Step:
@@ -255,12 +258,19 @@ def step(name: str) -> Callable[[StepFunc], Step]:
255
258
  logger.warning("Step failed", exc_info=ex)
256
259
  return Failed(ex)
257
260
 
258
- return make_step_function(wrapper, name)
261
+ return make_step_function(
262
+ wrapper,
263
+ name,
264
+ retry_auth_callback=retry_auth_callback,
265
+ )
259
266
 
260
267
  return decorator
261
268
 
262
269
 
263
- def retrystep(name: str) -> Callable[[StepFunc], Step]:
270
+ def retrystep(
271
+ name: str,
272
+ retry_auth_callback: Authorizer | None = None,
273
+ ) -> Callable[[StepFunc], Step]:
264
274
  """Mark a function as a retryable workflow step.
265
275
 
266
276
  If this step fails it goes to `Waiting` were it will be retried periodically. If it `Success` it acts as a normal
@@ -283,7 +293,11 @@ def retrystep(name: str) -> Callable[[StepFunc], Step]:
283
293
  except Exception as ex:
284
294
  return Waiting(ex)
285
295
 
286
- return make_step_function(wrapper, name)
296
+ return make_step_function(
297
+ wrapper,
298
+ name,
299
+ retry_auth_callback=retry_auth_callback,
300
+ )
287
301
 
288
302
  return decorator
289
303
 
@@ -349,7 +363,9 @@ def _extend_step_group_steps(name: str, steps: StepList) -> StepList:
349
363
  return enter_step >> steps >> exit_step
350
364
 
351
365
 
352
- def step_group(name: str, steps: StepList, extract_form: bool = True) -> Step:
366
+ def step_group(
367
+ name: str, steps: StepList, extract_form: bool = True, retry_auth_callback: Authorizer | None = None
368
+ ) -> Step:
353
369
  """Add a group of steps to the workflow as a single step.
354
370
 
355
371
  A step group is a sequence of steps that act as a single step.
@@ -362,6 +378,7 @@ def step_group(name: str, steps: StepList, extract_form: bool = True) -> Step:
362
378
  name: The name of the step
363
379
  steps: The sub steps in the step group
364
380
  extract_form: Whether to attach the first form of the sub steps to the step group
381
+ retry_auth_callback: Callback to determine if user is authorized to retry this group on failure
365
382
  """
366
383
 
367
384
  steps = _extend_step_group_steps(name, steps)
@@ -392,7 +409,7 @@ def step_group(name: str, steps: StepList, extract_form: bool = True) -> Step:
392
409
 
393
410
  # Make sure we return a form is a sub step has a form
394
411
  form = next((sub_step.form for sub_step in steps if sub_step.form), None) if extract_form else None
395
- return make_step_function(func, name, form)
412
+ return make_step_function(func, name, form, retry_auth_callback=retry_auth_callback)
396
413
 
397
414
 
398
415
  def _create_endpoint_step(key: str = DEFAULT_CALLBACK_ROUTE_KEY) -> StepFunc:
@@ -45,8 +45,8 @@ dependencies = [
45
45
  "itsdangerous>=2.2.0",
46
46
  "jinja2==3.1.6",
47
47
  "more-itertools~=10.7.0",
48
- "nwa-stdlib~=1.9.2",
49
- "oauth2-lib==2.4.2",
48
+ "nwa-stdlib~=1.10.3",
49
+ "oauth2-lib>=2.5.0",
50
50
  "orjson==3.10.18",
51
51
  "pgvector>=0.4.1",
52
52
  "prometheus-client==0.22.1",
@@ -97,6 +97,7 @@ docs = [
97
97
  "mkdocs-macros-plugin>=1.3.7",
98
98
  "mkdocs-material[imaging]>=9.6.14",
99
99
  "mkdocs-open-in-new-tab>=1.0.8",
100
+ "mkdocs-redirects>=1.2.2",
100
101
  "mkdocs-render-swagger-plugin>=0.1.2",
101
102
  "mkdocstrings[python]>=0.29.1",
102
103
  ]