dialectical-framework 0.7.5__tar.gz → 1.0.0__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 (230) hide show
  1. {dialectical_framework-0.7.5 → dialectical_framework-1.0.0}/PKG-INFO +11 -7
  2. {dialectical_framework-0.7.5 → dialectical_framework-1.0.0}/README.md +3 -3
  3. {dialectical_framework-0.7.5 → dialectical_framework-1.0.0}/pyproject.toml +14 -13
  4. dialectical_framework-1.0.0/src/dialectical_framework/__init__.py +2 -0
  5. dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/skills/edit_perspective.py +653 -0
  6. dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/skills/expand_polarities.py +306 -0
  7. dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/skills/find_polarities.py +508 -0
  8. dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/skills/introduce_polarity.py +259 -0
  9. dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/skills/surface_theses.py +573 -0
  10. dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/tools/place_statement.py +21 -0
  11. dialectical_framework-1.0.0/src/dialectical_framework/agents/conversation_facilitator.py +285 -0
  12. dialectical_framework-1.0.0/src/dialectical_framework/agents/execution_report.py +364 -0
  13. dialectical_framework-1.0.0/src/dialectical_framework/agents/explorer/skills/build_wheels.py +383 -0
  14. dialectical_framework-1.0.0/src/dialectical_framework/agents/explorer/skills/explore_transformations.py +661 -0
  15. dialectical_framework-1.0.0/src/dialectical_framework/agents/explorer/tools/create_nexus.py +87 -0
  16. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/orchestrator.py +407 -0
  17. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/system_prompts.py +134 -0
  18. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/tools/__init__.py +0 -0
  19. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/tools/add_input.py +52 -0
  20. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/tools/inspect_node.py +308 -0
  21. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/tools/present_analysis.py +151 -0
  22. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/tools/query_graph.py +203 -0
  23. dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator/tools/reject.py +163 -0
  24. dialectical_framework-1.0.0/src/dialectical_framework/agents/reasonable_concern.py +60 -0
  25. dialectical_framework-1.0.0/src/dialectical_framework/agents/stream_events.py +74 -0
  26. dialectical_framework-1.0.0/src/dialectical_framework/concerns/__init__.py +0 -0
  27. dialectical_framework-1.0.0/src/dialectical_framework/concerns/ac_re_taxonomy.py +141 -0
  28. dialectical_framework-1.0.0/src/dialectical_framework/concerns/action_extraction.py +311 -0
  29. dialectical_framework-1.0.0/src/dialectical_framework/concerns/ai_dto/__init__.py +0 -0
  30. dialectical_framework-1.0.0/src/dialectical_framework/concerns/ai_dto/statement_dto.py +90 -0
  31. dialectical_framework-1.0.0/src/dialectical_framework/concerns/ai_dto/statements_deck_dto.py +99 -0
  32. dialectical_framework-1.0.0/src/dialectical_framework/concerns/antithesis_classification.py +543 -0
  33. dialectical_framework-1.0.0/src/dialectical_framework/concerns/antithesis_extraction.py +391 -0
  34. dialectical_framework-1.0.0/src/dialectical_framework/concerns/aspect_classification.py +315 -0
  35. dialectical_framework-1.0.0/src/dialectical_framework/concerns/aspect_generation.py +669 -0
  36. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/__init__.py +0 -0
  37. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_estimator.py +63 -0
  38. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_estimator_balanced.py +434 -0
  39. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_estimator_criteria.py +71 -0
  40. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_estimator_desirable.py +50 -0
  41. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_estimator_feasible.py +50 -0
  42. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_estimator_realistic.py +50 -0
  43. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/causality_normalizer.py +142 -0
  44. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality/estimator_resolver.py +95 -0
  45. dialectical_framework-1.0.0/src/dialectical_framework/concerns/causality_estimation.py +282 -0
  46. dialectical_framework-1.0.0/src/dialectical_framework/concerns/control_statements_check.py +254 -0
  47. dialectical_framework-1.0.0/src/dialectical_framework/concerns/diagonal_oppositions_check.py +266 -0
  48. dialectical_framework-1.0.0/src/dialectical_framework/concerns/display_text_edit.py +134 -0
  49. dialectical_framework-1.0.0/src/dialectical_framework/concerns/perspective_combination.py +511 -0
  50. dialectical_framework-1.0.0/src/dialectical_framework/concerns/perspective_validation.py +305 -0
  51. dialectical_framework-1.0.0/src/dialectical_framework/concerns/positive_ac_re_apex_derivation.py +366 -0
  52. dialectical_framework-1.0.0/src/dialectical_framework/concerns/statement_classification.py +596 -0
  53. dialectical_framework-1.0.0/src/dialectical_framework/concerns/statement_deduplication.py +464 -0
  54. dialectical_framework-1.0.0/src/dialectical_framework/concerns/statement_placement.py +128 -0
  55. dialectical_framework-1.0.0/src/dialectical_framework/concerns/synthesis_generation.py +227 -0
  56. dialectical_framework-1.0.0/src/dialectical_framework/concerns/thesis_extraction.py +317 -0
  57. dialectical_framework-1.0.0/src/dialectical_framework/concerns/transformation_audit.py +250 -0
  58. dialectical_framework-1.0.0/src/dialectical_framework/concerns/transformation_generation.py +759 -0
  59. dialectical_framework-1.0.0/src/dialectical_framework/dialectical_reasoning.py +243 -0
  60. dialectical_framework-1.0.0/src/dialectical_framework/enums/__init__.py +0 -0
  61. dialectical_framework-1.0.0/src/dialectical_framework/enums/causality_preset.py +13 -0
  62. dialectical_framework-1.0.0/src/dialectical_framework/enums/di.py +17 -0
  63. dialectical_framework-1.0.0/src/dialectical_framework/events/__init__.py +0 -0
  64. dialectical_framework-1.0.0/src/dialectical_framework/events/graph_event.py +16 -0
  65. dialectical_framework-1.0.0/src/dialectical_framework/events/graph_event_bus.py +55 -0
  66. dialectical_framework-1.0.0/src/dialectical_framework/exceptions/__init__.py +3 -0
  67. dialectical_framework-1.0.0/src/dialectical_framework/exceptions/node_errors.py +10 -0
  68. dialectical_framework-1.0.0/src/dialectical_framework/exceptions/resolver_errors.py +71 -0
  69. dialectical_framework-1.0.0/src/dialectical_framework/graph/__init__.py +0 -0
  70. dialectical_framework-1.0.0/src/dialectical_framework/graph/composite_input_resolver.py +127 -0
  71. dialectical_framework-1.0.0/src/dialectical_framework/graph/dialexity_input_resolver.py +198 -0
  72. dialectical_framework-1.0.0/src/dialectical_framework/graph/estimation_manager.py +201 -0
  73. dialectical_framework-1.0.0/src/dialectical_framework/graph/mixins/__init__.py +1 -0
  74. dialectical_framework-1.0.0/src/dialectical_framework/graph/mixins/incremental_build_mixin.py +154 -0
  75. dialectical_framework-1.0.0/src/dialectical_framework/graph/mixins/intent_mixin.py +32 -0
  76. dialectical_framework-1.0.0/src/dialectical_framework/graph/mixins/persistable_mixin.py +22 -0
  77. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/__init__.py +0 -0
  78. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/assessable_entity.py +85 -0
  79. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/base_node.py +319 -0
  80. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/case.py +162 -0
  81. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/cycle.py +271 -0
  82. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/estimation.py +355 -0
  83. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/ideas.py +132 -0
  84. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/input.py +236 -0
  85. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/nexus.py +128 -0
  86. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/perspective.py +903 -0
  87. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/polarity.py +325 -0
  88. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/rationale.py +322 -0
  89. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/statement.py +487 -0
  90. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/synthesis.py +413 -0
  91. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/transformation.py +598 -0
  92. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/transition.py +588 -0
  93. dialectical_framework-1.0.0/src/dialectical_framework/graph/nodes/wheel.py +1059 -0
  94. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationship_manager.py +1386 -0
  95. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/__init__.py +1 -0
  96. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/action_reflection_relationship.py +20 -0
  97. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/belongs_to_cycle_relationship.py +15 -0
  98. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/belongs_to_nexus_relationship.py +21 -0
  99. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/changed_to_relationship.py +23 -0
  100. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/contradiction_of_relationship.py +24 -0
  101. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/critiques_relationship.py +14 -0
  102. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/distilled_to_relationship.py +13 -0
  103. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/estimates_relationship.py +14 -0
  104. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/explains_relationship.py +14 -0
  105. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/has_input_relationship.py +13 -0
  106. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/has_statement_relationship.py +19 -0
  107. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/has_wheel_relationship.py +15 -0
  108. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/immutable_structure.py +109 -0
  109. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/is_source_of_relationship.py +13 -0
  110. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/is_target_of_relationship.py +13 -0
  111. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/negative_side_of_relationship.py +9 -0
  112. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/opposite_direction_relationship.py +20 -0
  113. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/opposite_of_relationship.py +20 -0
  114. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/polarity_relationship.py +156 -0
  115. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/positive_side_of_relationship.py +9 -0
  116. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/provides_relationship.py +14 -0
  117. dialectical_framework-1.0.0/src/dialectical_framework/graph/relationships/synthesis_of_relationship.py +14 -0
  118. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/__init__.py +0 -0
  119. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/case_repository.py +52 -0
  120. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/cycle_repository.py +172 -0
  121. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/input_repository.py +52 -0
  122. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/nexus_repository.py +87 -0
  123. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/node_repository.py +93 -0
  124. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/perspective_repository.py +198 -0
  125. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/polarity_repository.py +221 -0
  126. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/schema_repository.py +73 -0
  127. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/statement_repository.py +233 -0
  128. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/transformation_repository.py +355 -0
  129. dialectical_framework-1.0.0/src/dialectical_framework/graph/repositories/wheel_repository.py +205 -0
  130. dialectical_framework-1.0.0/src/dialectical_framework/graph/scope_context.py +98 -0
  131. dialectical_framework-1.0.0/src/dialectical_framework/graph/verbatim_input_resolver.py +130 -0
  132. dialectical_framework-1.0.0/src/dialectical_framework/graph/wheel_segment.py +402 -0
  133. dialectical_framework-1.0.0/src/dialectical_framework/graph/wheel_segment_polar_pair.py +406 -0
  134. dialectical_framework-1.0.0/src/dialectical_framework/protocols/__init__.py +0 -0
  135. {dialectical_framework-0.7.5 → dialectical_framework-1.0.0}/src/dialectical_framework/protocols/has_config.py +6 -5
  136. dialectical_framework-1.0.0/src/dialectical_framework/protocols/input_resolver.py +70 -0
  137. dialectical_framework-1.0.0/src/dialectical_framework/settings.py +92 -0
  138. dialectical_framework-1.0.0/src/dialectical_framework/utils/bedrock_provider.py +167 -0
  139. dialectical_framework-1.0.0/src/dialectical_framework/utils/dc_replace.py +82 -0
  140. dialectical_framework-1.0.0/src/dialectical_framework/utils/edge_context.py +54 -0
  141. dialectical_framework-1.0.0/src/dialectical_framework/utils/order_transitions.py +74 -0
  142. dialectical_framework-1.0.0/src/dialectical_framework/utils/sequence_generation.py +158 -0
  143. dialectical_framework-1.0.0/src/dialectical_framework/utils/use_brain.py +225 -0
  144. dialectical_framework-0.7.5/src/dialectical_framework/__init__.py +0 -42
  145. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/action_plan_dto.py +0 -11
  146. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/causal_cycle_assessment_dto.py +0 -16
  147. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/causal_cycle_dto.py +0 -16
  148. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/causal_cycles_deck_dto.py +0 -11
  149. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/constructive_convergence_transition_audit_dto.py +0 -9
  150. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/dialectical_component_dto.py +0 -16
  151. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/dialectical_components_deck_dto.py +0 -12
  152. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/dto_mapper.py +0 -103
  153. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/reciprocal_solution_dto.py +0 -24
  154. dialectical_framework-0.7.5/src/dialectical_framework/ai_dto/transition_summary_dto.py +0 -8
  155. dialectical_framework-0.7.5/src/dialectical_framework/analyst/consultant.py +0 -30
  156. dialectical_framework-0.7.5/src/dialectical_framework/analyst/decorator_action_reflection.py +0 -38
  157. dialectical_framework-0.7.5/src/dialectical_framework/analyst/decorator_discrete_spiral.py +0 -38
  158. dialectical_framework-0.7.5/src/dialectical_framework/analyst/decorator_discrete_spiral_audited.py +0 -17
  159. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/assessable_cycle.py +0 -134
  160. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/cycle.py +0 -131
  161. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/interpretation.py +0 -16
  162. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/rationale.py +0 -171
  163. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/spiral.py +0 -69
  164. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/transformation.py +0 -30
  165. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/transition.py +0 -134
  166. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/transition_cell_to_cell.py +0 -29
  167. dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain/transition_segment_to_segment.py +0 -16
  168. dialectical_framework-0.7.5/src/dialectical_framework/analyst/strategic_consultant.py +0 -32
  169. dialectical_framework-0.7.5/src/dialectical_framework/analyst/think_action_reflection.py +0 -228
  170. dialectical_framework-0.7.5/src/dialectical_framework/analyst/think_constructive_convergence.py +0 -200
  171. dialectical_framework-0.7.5/src/dialectical_framework/analyst/think_constructive_convergence_auditor.py +0 -114
  172. dialectical_framework-0.7.5/src/dialectical_framework/analyst/wheel_builder_transition_calculator.py +0 -159
  173. dialectical_framework-0.7.5/src/dialectical_framework/brain.py +0 -81
  174. dialectical_framework-0.7.5/src/dialectical_framework/dialectical_reasoning.py +0 -107
  175. dialectical_framework-0.7.5/src/dialectical_framework/enums/causality_type.py +0 -10
  176. dialectical_framework-0.7.5/src/dialectical_framework/enums/di.py +0 -11
  177. dialectical_framework-0.7.5/src/dialectical_framework/enums/dialectical_reasoning_mode.py +0 -9
  178. dialectical_framework-0.7.5/src/dialectical_framework/enums/predicate.py +0 -9
  179. dialectical_framework-0.7.5/src/dialectical_framework/protocols/assessable.py +0 -133
  180. dialectical_framework-0.7.5/src/dialectical_framework/protocols/causality_sequencer.py +0 -111
  181. dialectical_framework-0.7.5/src/dialectical_framework/protocols/content_fidelity_evaluator.py +0 -16
  182. dialectical_framework-0.7.5/src/dialectical_framework/protocols/has_brain.py +0 -18
  183. dialectical_framework-0.7.5/src/dialectical_framework/protocols/polarity_extractor.py +0 -97
  184. dialectical_framework-0.7.5/src/dialectical_framework/protocols/ratable.py +0 -147
  185. dialectical_framework-0.7.5/src/dialectical_framework/protocols/reloadable.py +0 -7
  186. dialectical_framework-0.7.5/src/dialectical_framework/protocols/thesis_extractor.py +0 -15
  187. dialectical_framework-0.7.5/src/dialectical_framework/settings.py +0 -95
  188. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/__init__.py +0 -1
  189. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/causality/causality_sequencer_balanced.py +0 -416
  190. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/causality/causality_sequencer_desirable.py +0 -55
  191. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/causality/causality_sequencer_feasible.py +0 -55
  192. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/causality/causality_sequencer_realistic.py +0 -56
  193. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/concepts/polarity_extractor_basic.py +0 -363
  194. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/concepts/thesis_extractor_basic.py +0 -150
  195. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/dialectical_analysis.py +0 -14
  196. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/dialectical_component.py +0 -105
  197. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/dialectical_components_deck.py +0 -48
  198. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/directed_graph.py +0 -419
  199. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/synthesis.py +0 -7
  200. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/wheel.py +0 -390
  201. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/wheel_segment.py +0 -164
  202. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain/wisdom_unit.py +0 -199
  203. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/polarity/polarity_reasoner.py +0 -701
  204. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/polarity/reason_fast.py +0 -137
  205. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/polarity/reason_fast_and_simple.py +0 -60
  206. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/polarity/reason_fast_polarized_conflict.py +0 -63
  207. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/reverse_engineer.py +0 -401
  208. dialectical_framework-0.7.5/src/dialectical_framework/synthesist/wheel_builder.py +0 -362
  209. dialectical_framework-0.7.5/src/dialectical_framework/utils/__init__.py +0 -1
  210. dialectical_framework-0.7.5/src/dialectical_framework/utils/dc_replace.py +0 -42
  211. dialectical_framework-0.7.5/src/dialectical_framework/utils/dw_report.py +0 -249
  212. dialectical_framework-0.7.5/src/dialectical_framework/utils/extend_tpl.py +0 -12
  213. dialectical_framework-0.7.5/src/dialectical_framework/utils/gm.py +0 -15
  214. dialectical_framework-0.7.5/src/dialectical_framework/utils/is_async.py +0 -13
  215. dialectical_framework-0.7.5/src/dialectical_framework/utils/pm.py +0 -27
  216. dialectical_framework-0.7.5/src/dialectical_framework/utils/use_brain.py +0 -91
  217. dialectical_framework-0.7.5/src/dialectical_framework/validator/__init__.py +0 -1
  218. dialectical_framework-0.7.5/src/dialectical_framework/validator/basic_checks.py +0 -75
  219. dialectical_framework-0.7.5/src/dialectical_framework/validator/check.py +0 -12
  220. {dialectical_framework-0.7.5 → dialectical_framework-1.0.0}/LICENSE +0 -0
  221. {dialectical_framework-0.7.5/src/dialectical_framework/ai_dto → dialectical_framework-1.0.0/src/dialectical_framework/agents}/__init__.py +0 -0
  222. {dialectical_framework-0.7.5/src/dialectical_framework/analyst/domain → dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst}/__init__.py +0 -0
  223. {dialectical_framework-0.7.5/src/dialectical_framework/enums → dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/skills}/__init__.py +0 -0
  224. {dialectical_framework-0.7.5/src/dialectical_framework/protocols → dialectical_framework-1.0.0/src/dialectical_framework/agents/analyst/tools}/__init__.py +0 -0
  225. {dialectical_framework-0.7.5/src/dialectical_framework/synthesist/causality → dialectical_framework-1.0.0/src/dialectical_framework/agents/explorer}/__init__.py +0 -0
  226. {dialectical_framework-0.7.5/src/dialectical_framework/synthesist/concepts → dialectical_framework-1.0.0/src/dialectical_framework/agents/explorer/skills}/__init__.py +0 -0
  227. {dialectical_framework-0.7.5/src/dialectical_framework/synthesist/domain → dialectical_framework-1.0.0/src/dialectical_framework/agents/explorer/tools}/__init__.py +0 -0
  228. {dialectical_framework-0.7.5/src/dialectical_framework/synthesist/polarity → dialectical_framework-1.0.0/src/dialectical_framework/agents/orchestrator}/__init__.py +0 -0
  229. {dialectical_framework-0.7.5/src/dialectical_framework/analyst → dialectical_framework-1.0.0/src/dialectical_framework/utils}/__init__.py +0 -0
  230. {dialectical_framework-0.7.5 → dialectical_framework-1.0.0}/src/dialectical_framework/utils/decompose_probability_uniformly.py +0 -0
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dialectical-framework
3
- Version: 0.7.5
3
+ Version: 1.0.0
4
4
  Summary: A dialectical framework for augmented intelligence. AI reasoning powered with dialectics supports humans in: system optimization (psychology, engineering, business, politics, etc.); dispute resolution (mediation, conflicts, negotiations, etc.); decision-making (dilemmas, challenging situations, win-win, etc.).
5
5
  License: MIT
6
- Keywords: dialectics,dialectical-reasoning,synthesis,thesis-antithesis,ai,artificial-intelligence,llm,reasoning-framework,philosophy,logic,argumentation,conflict-resolution,decision-making,critical-thinking,semantic-graph,mirascope,pydantic,wisdom-units,polarity-reasoning
6
+ Keywords: dialectics,dialectical-reasoning,synthesis,thesis-antithesis,ai,artificial-intelligence,llm,reasoning-framework,philosophy,logic,argumentation,conflict-resolution,decision-making,critical-thinking,semantic-graph,mirascope,pydantic,perspectives,polarity-reasoning
7
7
  Author: Evaldas Taroza
8
8
  Author-email: evaldas@dialexity.com
9
9
  Requires-Python: >=3.11,<4.0
@@ -27,9 +27,13 @@ Classifier: Topic :: Scientific/Engineering :: Human Machine Interfaces
27
27
  Classifier: Topic :: Sociology
28
28
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
29
  Classifier: Topic :: Text Processing :: Linguistic
30
+ Requires-Dist: boto3 (>=1.43.4,<2.0.0)
31
+ Requires-Dist: broadcaster (>=0.3.1,<0.4.0)
30
32
  Requires-Dist: dependency-injector (>=4.48.2,<5.0.0)
31
- Requires-Dist: mirascope[anthropic,azure,bedrock,langfuse,litellm,openai,tenacity] (>=1.25.6,<2.0.0)
32
- Requires-Dist: python-dotenv (>=1.1.1,<2.0.0)
33
+ Requires-Dist: gqlalchemy (>=1.8.0,<2.0.0)
34
+ Requires-Dist: langfuse (>=4.5.1,<5.0.0)
35
+ Requires-Dist: mirascope[anthropic,openai,ops] (>=2.4.0,<3.0.0)
36
+ Requires-Dist: python-dotenv (>=1.2.1,<2.0.0)
33
37
  Requires-Dist: tabulate (>=0.9.0,<0.10.0)
34
38
  Project-URL: Homepage, https://github.com/dialexity/dialectical-framework
35
39
  Project-URL: Repository, https://github.com/dialexity/dialectical-framework
@@ -94,14 +98,14 @@ At the core of the dialectical framework is a dialectical wheel. It is a fancy s
94
98
  The main architectural parts are:
95
99
  - Wheel
96
100
  - Wheel Segment
97
- - Wisdom Unit
101
+ - Perspective
98
102
  - Dialectical Component
99
103
  - Transition
100
104
 
101
105
 
102
106
  **Wheel** is composed of segments. Think of a dialectical wheel as a pizza, a segment is a slice of pizza. In the simplest case it represents some thesis (a statement, a concept, an action, a thought, an idea, etc.). A thesis can have positive and negative things related to it. Hence, a segment of a wheel is composed of these dialectical components: a thesis (T), positive side of that thesis (T+) and a negative side of that thesis (T-). In more detailed wheels, a segment could have more than 3 layers.
103
107
 
104
- If we take two opposite segments, we get the basic (and the most important) structure: **Wisdom Unit** (half-wheel, verified by diagonal constraints: control statements). It's composed of:
108
+ If we take two opposite segments, we get the basic (and the most important) structure: **Perspective** (half-wheel, verified by diagonal constraints: control statements). It's composed of:
105
109
 
106
110
  | Dialectical Component | Description |
107
111
  |-----------------------|----------------------------------|
@@ -114,7 +118,7 @@ If we take two opposite segments, we get the basic (and the most important) stru
114
118
 
115
119
  In a Wheel, segments next to each other are related. We wrap that relationship into a **Transition**. Practically, a Transition is a recipe for how to go from one segment to another in a way that we approach synthesis. Essentially, it shows how the negative side of a given thesis (Tn-) converts into the positive side of the following thesis (T(n+1)+). If we were to look at a wheel as a sliced pizza, the lines that separate the slices would be Transitions.
116
120
 
117
- If we derive Transitions in a Wheel with only 2 segments (aka half-wheel), they are symmetrical and represent a special kind of Wisdom Unit, we call it Action (Ac) and Reflection (Re). As any Wisdom Unit, Action and Reflection must be verified by diagonal constraints as well.
121
+ If we derive Transitions in a Wheel with only 2 segments (aka half-wheel), they are symmetrical and represent a special kind of Perspective, we call it Action (Ac) and Reflection (Re). As any Perspective, Action and Reflection must be verified by diagonal constraints as well.
118
122
 
119
123
  ## Prototyping & App Ideas
120
124
 
@@ -57,14 +57,14 @@ At the core of the dialectical framework is a dialectical wheel. It is a fancy s
57
57
  The main architectural parts are:
58
58
  - Wheel
59
59
  - Wheel Segment
60
- - Wisdom Unit
60
+ - Perspective
61
61
  - Dialectical Component
62
62
  - Transition
63
63
 
64
64
 
65
65
  **Wheel** is composed of segments. Think of a dialectical wheel as a pizza, a segment is a slice of pizza. In the simplest case it represents some thesis (a statement, a concept, an action, a thought, an idea, etc.). A thesis can have positive and negative things related to it. Hence, a segment of a wheel is composed of these dialectical components: a thesis (T), positive side of that thesis (T+) and a negative side of that thesis (T-). In more detailed wheels, a segment could have more than 3 layers.
66
66
 
67
- If we take two opposite segments, we get the basic (and the most important) structure: **Wisdom Unit** (half-wheel, verified by diagonal constraints: control statements). It's composed of:
67
+ If we take two opposite segments, we get the basic (and the most important) structure: **Perspective** (half-wheel, verified by diagonal constraints: control statements). It's composed of:
68
68
 
69
69
  | Dialectical Component | Description |
70
70
  |-----------------------|----------------------------------|
@@ -77,7 +77,7 @@ If we take two opposite segments, we get the basic (and the most important) stru
77
77
 
78
78
  In a Wheel, segments next to each other are related. We wrap that relationship into a **Transition**. Practically, a Transition is a recipe for how to go from one segment to another in a way that we approach synthesis. Essentially, it shows how the negative side of a given thesis (Tn-) converts into the positive side of the following thesis (T(n+1)+). If we were to look at a wheel as a sliced pizza, the lines that separate the slices would be Transitions.
79
79
 
80
- If we derive Transitions in a Wheel with only 2 segments (aka half-wheel), they are symmetrical and represent a special kind of Wisdom Unit, we call it Action (Ac) and Reflection (Re). As any Wisdom Unit, Action and Reflection must be verified by diagonal constraints as well.
80
+ If we derive Transitions in a Wheel with only 2 segments (aka half-wheel), they are symmetrical and represent a special kind of Perspective, we call it Action (Ac) and Reflection (Re). As any Perspective, Action and Reflection must be verified by diagonal constraints as well.
81
81
 
82
82
  ## Prototyping & App Ideas
83
83
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "dialectical-framework"
3
- version = "0.7.5"
3
+ version = "1.0.0"
4
4
  description = "A dialectical framework for augmented intelligence. AI reasoning powered with dialectics supports humans in: system optimization (psychology, engineering, business, politics, etc.); dispute resolution (mediation, conflicts, negotiations, etc.); decision-making (dilemmas, challenging situations, win-win, etc.)."
5
5
  authors = ["Evaldas Taroza <evaldas@dialexity.com>"]
6
6
  readme = "README.md"
@@ -12,7 +12,7 @@ keywords = [
12
12
  "ai", "artificial-intelligence", "llm", "reasoning-framework",
13
13
  "philosophy", "logic", "argumentation", "conflict-resolution",
14
14
  "decision-making", "critical-thinking", "semantic-graph",
15
- "mirascope", "pydantic", "wisdom-units", "polarity-reasoning"
15
+ "mirascope", "pydantic", "perspectives", "polarity-reasoning"
16
16
  ]
17
17
  classifiers = [
18
18
  "Development Status :: 4 - Beta",
@@ -40,25 +40,24 @@ classifiers = [
40
40
  include = "dialectical_framework"
41
41
  from = "src"
42
42
 
43
-
44
-
45
43
  [tool.poetry.dependencies]
46
44
  python = "^3.11"
47
45
  mirascope = {extras = [
48
- "azure",
49
46
  "openai",
50
47
  "anthropic",
51
- "litellm",
52
- "bedrock",
53
- "langfuse",
54
- "tenacity"
55
- ], version = "^1.25.6"}
56
- python-dotenv = "^1.1.1"
48
+ "ops"
49
+ ], version = "^2.4.0"}
50
+ python-dotenv = "^1.2.1"
57
51
  tabulate = "^0.9.0"
58
52
  dependency-injector = "^4.48.2"
53
+ gqlalchemy = "^1.8.0"
54
+ langfuse = "^4.5.1"
55
+ boto3 = "^1.43.4"
56
+ broadcaster = "^0.3.1"
59
57
 
60
58
  [tool.poetry.group.dev.dependencies]
61
59
  pytest = "^8.4.1"
60
+ ipykernel = "^7.2.0"
62
61
  black = "^25.1.0"
63
62
  isort = "^6.0.1"
64
63
  #flake8 = "^7.1.2"
@@ -72,9 +71,11 @@ build-backend = "poetry.core.masonry.api"
72
71
  [tool.pytest.ini_options]
73
72
  asyncio_mode = "auto"
74
73
  asyncio_default_fixture_loop_scope = "function"
74
+ markers = [
75
+ "llm: tests that exercise LLM code paths (mocked by default, real with --real-llm)",
76
+ "real_llm: tests that require a real LLM endpoint (skipped unless --real-llm)",
77
+ ]
75
78
  filterwarnings = [
76
- "ignore::DeprecationWarning:mirascope.*",
77
- "ignore::UserWarning:mirascope.*",
78
79
  "ignore::DeprecationWarning:pydantic._internal._config",
79
80
  "ignore::DeprecationWarning:httpx._models",
80
81
  "ignore::UserWarning:pydantic.main"
@@ -0,0 +1,2 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Graph-native models are imported directly from dialectical_framework.graph.*