graphon 0.2.0__tar.gz → 0.2.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 (262) hide show
  1. {graphon-0.2.0 → graphon-0.2.1}/PKG-INFO +1 -1
  2. {graphon-0.2.0 → graphon-0.2.1}/pyproject.toml +1 -1
  3. {graphon-0.2.0 → graphon-0.2.1}/LICENSE +0 -0
  4. {graphon-0.2.0 → graphon-0.2.1}/README.md +0 -0
  5. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/__init__.py +0 -0
  6. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/__init__.py +0 -0
  7. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/base_node_data.py +0 -0
  8. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/exc.py +0 -0
  9. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/graph_config.py +0 -0
  10. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/graph_init_params.py +0 -0
  11. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/pause_reason.py +0 -0
  12. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/workflow_execution.py +0 -0
  13. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/workflow_node_execution.py +0 -0
  14. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/entities/workflow_start_reason.py +0 -0
  15. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/enums.py +0 -0
  16. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/errors.py +0 -0
  17. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/__init__.py +0 -0
  18. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/constants.py +0 -0
  19. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/enums.py +0 -0
  20. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/file_factory.py +0 -0
  21. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/file_manager.py +0 -0
  22. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/helpers.py +0 -0
  23. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/models.py +0 -0
  24. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/protocols.py +0 -0
  25. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/runtime.py +0 -0
  26. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/file/tool_file_parser.py +0 -0
  27. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph/__init__.py +0 -0
  28. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph/edge.py +0 -0
  29. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph/graph.py +0 -0
  30. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph/graph_template.py +0 -0
  31. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph/validation.py +0 -0
  32. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/__init__.py +0 -0
  33. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/_engine_utils.py +0 -0
  34. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_channels/README.md +0 -0
  35. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_channels/__init__.py +0 -0
  36. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_channels/in_memory_channel.py +0 -0
  37. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_channels/protocol.py +0 -0
  38. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_channels/redis_channel.py +0 -0
  39. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_processing/__init__.py +0 -0
  40. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_processing/command_handlers.py +0 -0
  41. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/command_processing/command_processor.py +0 -0
  42. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/config.py +0 -0
  43. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/domain/__init__.py +0 -0
  44. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/domain/graph_execution.py +0 -0
  45. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/domain/node_execution.py +0 -0
  46. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/entities/__init__.py +0 -0
  47. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/entities/commands.py +0 -0
  48. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/error_handler.py +0 -0
  49. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/event_management/__init__.py +0 -0
  50. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/event_management/event_handlers.py +0 -0
  51. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/event_management/event_manager.py +0 -0
  52. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/graph_engine.py +0 -0
  53. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/graph_state_manager.py +0 -0
  54. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/graph_traversal/__init__.py +0 -0
  55. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/graph_traversal/edge_processor.py +0 -0
  56. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/graph_traversal/skip_propagator.py +0 -0
  57. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/layers/README.md +0 -0
  58. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/layers/__init__.py +0 -0
  59. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/layers/base.py +0 -0
  60. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/layers/debug_logging.py +0 -0
  61. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/layers/execution_limits.py +0 -0
  62. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/manager.py +0 -0
  63. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/orchestration/__init__.py +0 -0
  64. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/orchestration/dispatcher.py +0 -0
  65. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/orchestration/execution_coordinator.py +0 -0
  66. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/ready_queue/__init__.py +0 -0
  67. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/ready_queue/factory.py +0 -0
  68. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/ready_queue/in_memory.py +0 -0
  69. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/ready_queue/protocol.py +0 -0
  70. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/response_coordinator/__init__.py +0 -0
  71. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/response_coordinator/coordinator.py +0 -0
  72. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/response_coordinator/path.py +0 -0
  73. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/response_coordinator/session.py +0 -0
  74. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/worker.py +0 -0
  75. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/worker_management/__init__.py +0 -0
  76. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_engine/worker_management/worker_pool.py +0 -0
  77. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/__init__.py +0 -0
  78. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/agent.py +0 -0
  79. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/base.py +0 -0
  80. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/graph.py +0 -0
  81. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/human_input.py +0 -0
  82. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/iteration.py +0 -0
  83. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/loop.py +0 -0
  84. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/graph_events/node.py +0 -0
  85. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/http/__init__.py +0 -0
  86. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/http/client.py +0 -0
  87. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/http/protocols.py +0 -0
  88. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/http/response.py +0 -0
  89. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/http/runtime.py +0 -0
  90. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/README.md +0 -0
  91. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/README_CN.md +0 -0
  92. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/__init__.py +0 -0
  93. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/callbacks/__init__.py +0 -0
  94. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/callbacks/base_callback.py +0 -0
  95. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/callbacks/logging_callback.py +0 -0
  96. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/__init__.py +0 -0
  97. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/common_entities.py +0 -0
  98. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/defaults.py +0 -0
  99. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/llm_entities.py +0 -0
  100. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/message_entities.py +0 -0
  101. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/model_entities.py +0 -0
  102. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/provider_entities.py +0 -0
  103. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/rerank_entities.py +0 -0
  104. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/entities/text_embedding_entities.py +0 -0
  105. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/errors/__init__.py +0 -0
  106. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/errors/invoke.py +0 -0
  107. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/errors/validate.py +0 -0
  108. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/memory/__init__.py +0 -0
  109. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/memory/prompt_message_memory.py +0 -0
  110. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/__init__.py +0 -0
  111. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/_position.yaml +0 -0
  112. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/__init__.py +0 -0
  113. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/ai_model.py +0 -0
  114. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/large_language_model.py +0 -0
  115. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/moderation_model.py +0 -0
  116. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/rerank_model.py +0 -0
  117. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/speech2text_model.py +0 -0
  118. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/text_embedding_model.py +0 -0
  119. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/tokenizers/__init__.py +0 -0
  120. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/tokenizers/gpt2_tokenizer.py +0 -0
  121. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/base/tts_model.py +0 -0
  122. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/model_providers/model_provider_factory.py +0 -0
  123. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/runtime.py +0 -0
  124. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/schema_validators/__init__.py +0 -0
  125. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/schema_validators/common_validator.py +0 -0
  126. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/schema_validators/model_credential_schema_validator.py +0 -0
  127. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/schema_validators/provider_credential_schema_validator.py +0 -0
  128. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/slim/__init__.py +0 -0
  129. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/slim/config.py +0 -0
  130. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/slim/package_loader.py +0 -0
  131. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/slim/prepared_llm.py +0 -0
  132. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/slim/runtime.py +0 -0
  133. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/utils/__init__.py +0 -0
  134. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/model_runtime/utils/encoders.py +0 -0
  135. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/node_events/__init__.py +0 -0
  136. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/node_events/agent.py +0 -0
  137. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/node_events/base.py +0 -0
  138. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/node_events/iteration.py +0 -0
  139. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/node_events/loop.py +0 -0
  140. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/node_events/node.py +0 -0
  141. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/__init__.py +0 -0
  142. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/answer/__init__.py +0 -0
  143. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/answer/answer_node.py +0 -0
  144. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/answer/entities.py +0 -0
  145. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/base/__init__.py +0 -0
  146. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/base/entities.py +0 -0
  147. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/base/node.py +0 -0
  148. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/base/template.py +0 -0
  149. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/base/usage_tracking_mixin.py +0 -0
  150. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/base/variable_template_parser.py +0 -0
  151. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/code/__init__.py +0 -0
  152. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/code/code_node.py +0 -0
  153. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/code/entities.py +0 -0
  154. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/code/exc.py +0 -0
  155. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/code/limits.py +0 -0
  156. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/document_extractor/__init__.py +0 -0
  157. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/document_extractor/entities.py +0 -0
  158. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/document_extractor/exc.py +0 -0
  159. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/document_extractor/node.py +0 -0
  160. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/end/__init__.py +0 -0
  161. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/end/end_node.py +0 -0
  162. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/end/entities.py +0 -0
  163. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/http_request/__init__.py +0 -0
  164. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/http_request/config.py +0 -0
  165. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/http_request/entities.py +0 -0
  166. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/http_request/exc.py +0 -0
  167. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/http_request/executor.py +0 -0
  168. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/http_request/node.py +0 -0
  169. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/human_input/__init__.py +0 -0
  170. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/human_input/entities.py +0 -0
  171. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/human_input/enums.py +0 -0
  172. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/human_input/human_input_node.py +0 -0
  173. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/if_else/__init__.py +0 -0
  174. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/if_else/entities.py +0 -0
  175. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/if_else/if_else_node.py +0 -0
  176. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/iteration/__init__.py +0 -0
  177. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/iteration/entities.py +0 -0
  178. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/iteration/exc.py +0 -0
  179. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/iteration/iteration_node.py +0 -0
  180. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/iteration/iteration_start_node.py +0 -0
  181. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/list_operator/__init__.py +0 -0
  182. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/list_operator/entities.py +0 -0
  183. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/list_operator/exc.py +0 -0
  184. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/list_operator/node.py +0 -0
  185. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/__init__.py +0 -0
  186. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/entities.py +0 -0
  187. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/exc.py +0 -0
  188. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/file_saver.py +0 -0
  189. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/llm_utils.py +0 -0
  190. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/node.py +0 -0
  191. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/protocols.py +0 -0
  192. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/llm/runtime_protocols.py +0 -0
  193. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/loop/__init__.py +0 -0
  194. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/loop/entities.py +0 -0
  195. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/loop/loop_end_node.py +0 -0
  196. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/loop/loop_node.py +0 -0
  197. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/loop/loop_start_node.py +0 -0
  198. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/parameter_extractor/__init__.py +0 -0
  199. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/parameter_extractor/entities.py +0 -0
  200. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/parameter_extractor/exc.py +0 -0
  201. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/parameter_extractor/parameter_extractor_node.py +0 -0
  202. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/parameter_extractor/prompts.py +0 -0
  203. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/protocols.py +0 -0
  204. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/question_classifier/__init__.py +0 -0
  205. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/question_classifier/entities.py +0 -0
  206. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/question_classifier/exc.py +0 -0
  207. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/question_classifier/question_classifier_node.py +0 -0
  208. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/question_classifier/template_prompts.py +0 -0
  209. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/runtime.py +0 -0
  210. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/start/__init__.py +0 -0
  211. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/start/entities.py +0 -0
  212. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/start/start_node.py +0 -0
  213. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/template_transform/__init__.py +0 -0
  214. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/template_transform/entities.py +0 -0
  215. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/template_transform/template_transform_node.py +0 -0
  216. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/tool/__init__.py +0 -0
  217. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/tool/entities.py +0 -0
  218. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/tool/exc.py +0 -0
  219. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/tool/tool_node.py +0 -0
  220. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/tool_runtime_entities.py +0 -0
  221. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_aggregator/__init__.py +0 -0
  222. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_aggregator/entities.py +0 -0
  223. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_aggregator/variable_aggregator_node.py +0 -0
  224. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/__init__.py +0 -0
  225. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/common/__init__.py +0 -0
  226. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/common/exc.py +0 -0
  227. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/common/helpers.py +0 -0
  228. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v1/__init__.py +0 -0
  229. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v1/node.py +0 -0
  230. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v1/node_data.py +0 -0
  231. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v2/__init__.py +0 -0
  232. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v2/entities.py +0 -0
  233. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v2/enums.py +0 -0
  234. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v2/exc.py +0 -0
  235. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v2/helpers.py +0 -0
  236. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/nodes/variable_assigner/v2/node.py +0 -0
  237. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/prompt_entities.py +0 -0
  238. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/protocols/__init__.py +0 -0
  239. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/py.typed +0 -0
  240. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/runtime/__init__.py +0 -0
  241. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/runtime/graph_runtime_state.py +0 -0
  242. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/runtime/graph_runtime_state_protocol.py +0 -0
  243. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/runtime/read_only_wrappers.py +0 -0
  244. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/runtime/variable_pool.py +0 -0
  245. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/template_rendering.py +0 -0
  246. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/utils/__init__.py +0 -0
  247. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/utils/condition/__init__.py +0 -0
  248. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/utils/condition/entities.py +0 -0
  249. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/utils/condition/processor.py +0 -0
  250. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/utils/json_in_md_parser.py +0 -0
  251. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variable_loader.py +0 -0
  252. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/__init__.py +0 -0
  253. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/consts.py +0 -0
  254. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/exc.py +0 -0
  255. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/factory.py +0 -0
  256. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/input_entities.py +0 -0
  257. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/segment_group.py +0 -0
  258. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/segments.py +0 -0
  259. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/types.py +0 -0
  260. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/utils.py +0 -0
  261. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/variables/variables.py +0 -0
  262. {graphon-0.2.0 → graphon-0.2.1}/src/graphon/workflow_type_encoder.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphon
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Graph execution engine for agentic AI workflows.
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = 'graphon'
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = 'Graph execution engine for agentic AI workflows.'
5
5
  readme = 'README.md'
6
6
  license = 'Apache-2.0'
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes