langchain-agentx-python 0.7.6__tar.gz → 0.7.7__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 (514) hide show
  1. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/PKG-INFO +482 -482
  2. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/__init__.py +64 -64
  3. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/context.py +2 -2
  4. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/health/__init__.py +13 -3
  5. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/health/checks.py +18 -17
  6. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/benchmark_frozen_config.py +6 -6
  7. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/config/__init__.py +13 -1
  8. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/config/loop_config.py +14 -11
  9. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/graph/factory.py +14 -14
  10. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/prompt/session_context.py +3 -3
  11. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/runtime/context_factory.py +28 -15
  12. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/runtime/subagent_execution_paths.py +5 -4
  13. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/context.py +14 -7
  14. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/graph.py +3 -3
  15. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/orchestrator.py +3 -3
  16. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/instruction/loader.py +7 -7
  17. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/instruction/resolver.py +4 -4
  18. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/instruction/runtime.py +5 -5
  19. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/instruction/types.py +2 -2
  20. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/agent_memory.py +10 -10
  21. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/extractor.py +5 -5
  22. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/loader.py +4 -4
  23. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/paths.py +5 -5
  24. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/runtime.py +5 -5
  25. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/store.py +2 -2
  26. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/logging/logging_config.py +2 -2
  27. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/replay/store.py +2 -2
  28. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/sqlite_store.py +3 -3
  29. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/config.py +2 -2
  30. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/loader.py +2 -2
  31. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/agent_session.py +4 -4
  32. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/conversation_factory.py +8 -4
  33. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/conversation_session.py +6 -2
  34. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/factory.py +6 -5
  35. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/provider_factory.py +7 -7
  36. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/skill_prefetch/provider.py +4 -4
  37. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasklist/path_resolver.py +5 -5
  38. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasklist/store.py +7 -7
  39. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/ai_analysis/base.py +2 -2
  40. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/adapter.py +25 -11
  41. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/loader.py +11 -4
  42. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/loop_loader.py +5 -5
  43. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/models.py +1 -1
  44. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/policy.py +1 -1
  45. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/limits.py +25 -12
  46. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/loader.py +1 -1
  47. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/tool.py +5 -5
  48. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_create/tool.py +2 -2
  49. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_get/tool.py +2 -2
  50. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_list/tool.py +2 -2
  51. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_update/tool.py +2 -2
  52. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/base.py +11 -11
  53. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/node.py +8 -10
  54. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/patterns/chaining.py +5 -5
  55. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/patterns/evaluator_optimizer.py +3 -3
  56. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/patterns/orchestrator.py +3 -3
  57. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/patterns/parallelization.py +3 -3
  58. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/patterns/routing.py +3 -3
  59. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/__init__.py +10 -6
  60. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/capabilities.py +120 -16
  61. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/config.py +12 -7
  62. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/resolver.py +36 -23
  63. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx_python.egg-info/PKG-INFO +482 -482
  64. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx_python.egg-info/not-zip-safe +1 -1
  65. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/pyproject.toml +1 -1
  66. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/setup.cfg +4 -4
  67. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/LICENSE +0 -0
  68. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/README.md +0 -0
  69. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/__init__.py +0 -0
  70. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/builtin/__init__.py +0 -0
  71. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/builtin/clear.py +0 -0
  72. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/builtin/compact.py +0 -0
  73. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/builtin/memory.py +0 -0
  74. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/builtin/reload_plugins.py +0 -0
  75. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/dispatcher.py +0 -0
  76. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/registry.py +0 -0
  77. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/result.py +0 -0
  78. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/command/types.py +0 -0
  79. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/config/__init__.py +0 -0
  80. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/config/model_profiles.yaml +0 -0
  81. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/config/model_profiles.yaml.example +0 -0
  82. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/health/models.py +0 -0
  83. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/health/preflight.py +0 -0
  84. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/__init__.py +0 -0
  85. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/config/agent_config.py +0 -0
  86. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/config/model_context_resolver.py +0 -0
  87. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/config/runtime_settings.py +0 -0
  88. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/config/token_estimator.py +0 -0
  89. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/__init__.py +0 -0
  90. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/blocking_guard.py +0 -0
  91. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/compaction_service.py +0 -0
  92. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/message_utils.py +0 -0
  93. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/pipeline.py +0 -0
  94. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/settings.py +0 -0
  95. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/__init__.py +0 -0
  96. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/autocompact.py +0 -0
  97. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/base.py +0 -0
  98. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/collapse.py +0 -0
  99. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/microcompact.py +0 -0
  100. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/noop.py +0 -0
  101. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/snip.py +0 -0
  102. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/stages/tool_result_budget.py +0 -0
  103. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/context/types.py +0 -0
  104. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/exit/__init__.py +0 -0
  105. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/exit/exit_logic.py +0 -0
  106. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/exit/reason_codes.py +0 -0
  107. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/graph/__init__.py +0 -0
  108. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/graph/builtin_loop_control.py +0 -0
  109. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/graph/graph_edges.py +0 -0
  110. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/__init__.py +0 -0
  111. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/async_hook_runner.py +0 -0
  112. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/config.py +0 -0
  113. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/engine.py +0 -0
  114. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/executors/__init__.py +0 -0
  115. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/executors/agent.py +0 -0
  116. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/executors/command.py +0 -0
  117. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/executors/http.py +0 -0
  118. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/executors/prompt.py +0 -0
  119. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/graph_wiring.py +0 -0
  120. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/hook_projection.py +0 -0
  121. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/registry.py +0 -0
  122. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/trust.py +0 -0
  123. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/hook/types.py +0 -0
  124. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/injection/__init__.py +0 -0
  125. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/injection/dedup.py +0 -0
  126. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/loop_abort.py +0 -0
  127. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/__init__.py +0 -0
  128. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/model_node.py +0 -0
  129. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/model_nodes.py +0 -0
  130. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/orphan_tool_results.py +0 -0
  131. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/retrier.py +0 -0
  132. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/retry_bridge.py +0 -0
  133. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/retry_events.py +0 -0
  134. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/retry_policy.py +0 -0
  135. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/schema_and_format.py +0 -0
  136. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/tool_and_model_binding.py +0 -0
  137. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/tool_call_degradation_corrector.py +0 -0
  138. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/model/tool_transcript_guard.py +0 -0
  139. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/prompt/__init__.py +0 -0
  140. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/prompt/builder.py +0 -0
  141. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/prompt/builtin.py +0 -0
  142. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/prompt/compact.py +0 -0
  143. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/prompt/sections.py +0 -0
  144. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/runtime/__init__.py +0 -0
  145. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/runtime/context.py +0 -0
  146. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/__init__.py +0 -0
  147. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/async_runner.py +0 -0
  148. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/fork_worktree_notice.py +0 -0
  149. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/progress.py +0 -0
  150. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/prompt.py +0 -0
  151. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/runner.py +0 -0
  152. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/loop/subagent/transcript.py +0 -0
  153. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/__init__.py +0 -0
  154. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/instruction/__init__.py +0 -0
  155. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/instruction/sections.py +0 -0
  156. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/__init__.py +0 -0
  157. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/age.py +0 -0
  158. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/recall.py +0 -0
  159. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/scan.py +0 -0
  160. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/memdir/types.py +0 -0
  161. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/session/__init__.py +0 -0
  162. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/session/compact_bridge.py +0 -0
  163. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/session/prompts.py +0 -0
  164. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/memory/session/session_memory.py +0 -0
  165. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/__init__.py +0 -0
  166. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/__init__.py +0 -0
  167. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/__init__.py +0 -0
  168. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/base.py +0 -0
  169. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/compaction.py +0 -0
  170. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/degradation.py +0 -0
  171. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/exit_quality.py +0 -0
  172. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/session_memory.py +0 -0
  173. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/checkers/tool_behavior.py +0 -0
  174. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/retention_scheduler.py +0 -0
  175. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/service.py +0 -0
  176. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/evaluation/state.py +0 -0
  177. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/events/__init__.py +0 -0
  178. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/events/langchain_agentx_event_adapter.py +0 -0
  179. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/logging/__init__.py +0 -0
  180. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/logging/debug_burst.py +0 -0
  181. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/logging/logging_contract.py +0 -0
  182. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/replay/__init__.py +0 -0
  183. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/replay/cli.py +0 -0
  184. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/replay/service.py +0 -0
  185. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/replay/ui.py +0 -0
  186. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/__init__.py +0 -0
  187. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/collector.py +0 -0
  188. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/event_emitter.py +0 -0
  189. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/hook_event_emitter.py +0 -0
  190. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/models.py +0 -0
  191. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/trace_callback.py +0 -0
  192. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/observability/trace/trace_lifecycle_collector.py +0 -0
  193. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/__init__.py +0 -0
  194. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/builtin.py +0 -0
  195. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/manifest.py +0 -0
  196. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/registries.py +0 -0
  197. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/plugin/types.py +0 -0
  198. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/provider/__init__.py +0 -0
  199. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/provider/anthropic.py +0 -0
  200. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/provider/compatible_chat_openai.py +0 -0
  201. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/provider/env.py +0 -0
  202. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/provider/model_profile.py +0 -0
  203. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/provider/openai.py +0 -0
  204. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/__init__.py +0 -0
  205. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/conversation_recovery.py +0 -0
  206. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/session/protocol.py +0 -0
  207. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/__init__.py +0 -0
  208. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/core/__init__.py +0 -0
  209. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/core/ids.py +0 -0
  210. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/core/interfaces.py +0 -0
  211. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/core/notification_priority.py +0 -0
  212. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/core/types.py +0 -0
  213. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/__init__.py +0 -0
  214. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/loop_adapter.py +0 -0
  215. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/loop_integration.py +0 -0
  216. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/prefetch_providers.py +0 -0
  217. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/queued_command_provider.py +0 -0
  218. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/sqlite_queued_command_provider.py +0 -0
  219. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/integrations/tool_use_summary_provider.py +0 -0
  220. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/orchestrator/__init__.py +0 -0
  221. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/orchestrator/runtime.py +0 -0
  222. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/output/__init__.py +0 -0
  223. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/output/sink.py +0 -0
  224. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/policy/__init__.py +0 -0
  225. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/policy/withhold_visibility.py +0 -0
  226. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/queue/__init__.py +0 -0
  227. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/queue/in_memory.py +0 -0
  228. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/skill_prefetch/__init__.py +0 -0
  229. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/skill_prefetch/attachments.py +0 -0
  230. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/skill_prefetch/models.py +0 -0
  231. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/store/__init__.py +0 -0
  232. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/store/in_memory.py +0 -0
  233. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/store/sqlite_store.py +0 -0
  234. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasklist/__init__.py +0 -0
  235. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasklist/high_water_mark.py +0 -0
  236. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasklist/lock.py +0 -0
  237. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasklist/models.py +0 -0
  238. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/__init__.py +0 -0
  239. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/ai_analysis/__init__.py +0 -0
  240. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/ai_analysis/evaluation.py +0 -0
  241. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/ai_analysis/registry.py +0 -0
  242. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/ai_analysis/scheduler.py +0 -0
  243. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/base/__init__.py +0 -0
  244. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/base/contracts.py +0 -0
  245. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/custom/__init__.py +0 -0
  246. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/custom/executor.py +0 -0
  247. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/custom/notification.py +0 -0
  248. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/custom/semantics.py +0 -0
  249. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/custom/spec.py +0 -0
  250. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/dream_task/__init__.py +0 -0
  251. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/dream_task/executor.py +0 -0
  252. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/dream_task/notification.py +0 -0
  253. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/dream_task/semantics.py +0 -0
  254. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/dream_task/spec.py +0 -0
  255. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/dream_task/state.py +0 -0
  256. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/in_process_teammate/__init__.py +0 -0
  257. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/in_process_teammate/executor.py +0 -0
  258. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/in_process_teammate/notification.py +0 -0
  259. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/in_process_teammate/semantics.py +0 -0
  260. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/in_process_teammate/spec.py +0 -0
  261. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_agent/__init__.py +0 -0
  262. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_agent/executor.py +0 -0
  263. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_agent/notification.py +0 -0
  264. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_agent/runner.py +0 -0
  265. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_agent/semantics.py +0 -0
  266. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_agent/spec.py +0 -0
  267. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_bash/__init__.py +0 -0
  268. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_bash/executor.py +0 -0
  269. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_bash/notification.py +0 -0
  270. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_bash/semantics.py +0 -0
  271. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/local_bash/spec.py +0 -0
  272. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/remote_agent/__init__.py +0 -0
  273. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/remote_agent/backend.py +0 -0
  274. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/remote_agent/executor.py +0 -0
  275. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/remote_agent/notification.py +0 -0
  276. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/remote_agent/semantics.py +0 -0
  277. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/remote_agent/spec.py +0 -0
  278. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/trace_cleanup/__init__.py +0 -0
  279. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/trace_cleanup/bootstrap.py +0 -0
  280. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/trace_cleanup/executor.py +0 -0
  281. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/task_runtime/tasks/trace_cleanup/scheduler.py +0 -0
  282. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/__init__.py +0 -0
  283. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/__init__.py +0 -0
  284. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/allowlist.py +0 -0
  285. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/classifier/__init__.py +0 -0
  286. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/classifier/classifier.py +0 -0
  287. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/classifier/parser.py +0 -0
  288. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/classifier/prompt.py +0 -0
  289. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/classifier/schema.py +0 -0
  290. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/classifier/transcript.py +0 -0
  291. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/config.py +0 -0
  292. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/config_update.py +0 -0
  293. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/decision.py +0 -0
  294. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/events.py +0 -0
  295. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/factory.py +0 -0
  296. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/feedback.py +0 -0
  297. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/hook.py +0 -0
  298. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/rule_stripping.py +0 -0
  299. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/auto_mode/state.py +0 -0
  300. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/base.py +0 -0
  301. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/errors.py +0 -0
  302. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/failure_event_emitter.py +0 -0
  303. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/identical_call_cache.py +0 -0
  304. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/limits.py +0 -0
  305. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/messages.py +0 -0
  306. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/override.py +0 -0
  307. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/path_safety.py +0 -0
  308. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/permission_context.py +0 -0
  309. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/permission_decision.py +0 -0
  310. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/pipeline.py +0 -0
  311. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/policy_decorator.py +0 -0
  312. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/process_loader.py +0 -0
  313. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/__init__.py +0 -0
  314. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/_abort.py +0 -0
  315. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/cli_interactive.py +0 -0
  316. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/handler.py +0 -0
  317. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/headless.py +0 -0
  318. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/legacy_resolver_adapter.py +0 -0
  319. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/messages.py +0 -0
  320. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/race.py +0 -0
  321. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/session_mode.py +0 -0
  322. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/prompt/types.py +0 -0
  323. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/read_ignore_patterns.py +0 -0
  324. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/read_permission.py +0 -0
  325. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/registry.py +0 -0
  326. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/resolvers/__init__.py +0 -0
  327. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/resolvers/agent_session.py +0 -0
  328. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/resolvers/background.py +0 -0
  329. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/resolvers/base.py +0 -0
  330. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/resolvers/conversation.py +0 -0
  331. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/resolvers/workflow.py +0 -0
  332. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/session_store.py +0 -0
  333. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/shell_error.py +0 -0
  334. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/smoke_test_runtime.py +0 -0
  335. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/state_bridge.py +0 -0
  336. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tool_runtime/tool_message_status.py +0 -0
  337. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/__init__.py +0 -0
  338. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/__init__.py +0 -0
  339. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/backend.py +0 -0
  340. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/__init__.py +0 -0
  341. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/agentx_guide.py +0 -0
  342. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/explore.py +0 -0
  343. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/general.py +0 -0
  344. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/plan.py +0 -0
  345. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/statusline_setup.py +0 -0
  346. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/built_in/verification.py +0 -0
  347. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/builtin_subagent_loader.py +0 -0
  348. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/cwd_resolution.py +0 -0
  349. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/models.py +0 -0
  350. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/prompt.py +0 -0
  351. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/registry/__init__.py +0 -0
  352. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/registry/config.py +0 -0
  353. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/registry/registry.py +0 -0
  354. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/scope.py +0 -0
  355. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/agent/tool.py +0 -0
  356. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/__init__.py +0 -0
  357. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/constants.py +0 -0
  358. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/html_preview.py +0 -0
  359. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/models.py +0 -0
  360. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/prompt.py +0 -0
  361. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/tool.py +0 -0
  362. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ask_user_question/validators.py +0 -0
  363. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/__init__.py +0 -0
  364. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/ast_security.py +0 -0
  365. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/auto_mode_adapter.py +0 -0
  366. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/backend.py +0 -0
  367. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/bash_hardening.py +0 -0
  368. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/bash_runtime_contract.py +0 -0
  369. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/boundary_check.py +0 -0
  370. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/cwd_reporter.py +0 -0
  371. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/events.py +0 -0
  372. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/limits.py +0 -0
  373. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/mode_validation.py +0 -0
  374. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/models.py +0 -0
  375. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/observability.py +0 -0
  376. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/output_utils.py +0 -0
  377. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/path_security.py +0 -0
  378. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/prompt.py +0 -0
  379. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/read_only_validation.py +0 -0
  380. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/result_presenter.py +0 -0
  381. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/sandbox_decision.py +0 -0
  382. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/security.py +0 -0
  383. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/sed_edit_parser.py +0 -0
  384. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/sed_validation.py +0 -0
  385. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/semantics.py +0 -0
  386. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/session_manager.py +0 -0
  387. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/session_runtime.py +0 -0
  388. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/shell_locator.py +0 -0
  389. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/shell_quoting.py +0 -0
  390. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/task_runtime.py +0 -0
  391. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/tool.py +0 -0
  392. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/bash/windows_shell_quoting.py +0 -0
  393. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/__init__.py +0 -0
  394. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/backend.py +0 -0
  395. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/diff_generator.py +0 -0
  396. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/git_diff_generator.py +0 -0
  397. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/limits.py +0 -0
  398. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/models.py +0 -0
  399. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/prompt.py +0 -0
  400. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/quote_match.py +0 -0
  401. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/quote_normalizer.py +0 -0
  402. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/settings_validator.py +0 -0
  403. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/staleness.py +0 -0
  404. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/tool.py +0 -0
  405. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/edit/validator.py +0 -0
  406. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/__init__.py +0 -0
  407. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/models.py +0 -0
  408. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/pagination.py +0 -0
  409. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/prompt.py +0 -0
  410. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/rg_list_backend.py +0 -0
  411. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/rg_pattern.py +0 -0
  412. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/glob/tool.py +0 -0
  413. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/grep/__init__.py +0 -0
  414. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/grep/backend.py +0 -0
  415. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/grep/models.py +0 -0
  416. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/grep/prompt.py +0 -0
  417. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/grep/rg_subprocess_controller.py +0 -0
  418. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/grep/tool.py +0 -0
  419. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/read/__init__.py +0 -0
  420. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/read/backend.py +0 -0
  421. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/read/limits.py +0 -0
  422. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/read/models.py +0 -0
  423. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/read/prompt.py +0 -0
  424. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/read/tool.py +0 -0
  425. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/ripgrep_plugin_exclusions.py +0 -0
  426. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/__init__.py +0 -0
  427. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/argument_substitution.py +0 -0
  428. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/loader.py +0 -0
  429. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/models.py +0 -0
  430. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/policy.py +0 -0
  431. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/skill/prompt.py +0 -0
  432. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_create/__init__.py +0 -0
  433. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_create/hooks.py +0 -0
  434. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_create/limits.py +0 -0
  435. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_create/models.py +0 -0
  436. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_create/prompt.py +0 -0
  437. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_get/__init__.py +0 -0
  438. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_get/models.py +0 -0
  439. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_get/prompt.py +0 -0
  440. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_list/__init__.py +0 -0
  441. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_list/models.py +0 -0
  442. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_list/prompt.py +0 -0
  443. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_update/__init__.py +0 -0
  444. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_update/hooks.py +0 -0
  445. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_update/models.py +0 -0
  446. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/task_update/prompt.py +0 -0
  447. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/user_message/__init__.py +0 -0
  448. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/user_message/attachments.py +0 -0
  449. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/user_message/models.py +0 -0
  450. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/user_message/prompt.py +0 -0
  451. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/user_message/runtime_config.py +0 -0
  452. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/user_message/tool.py +0 -0
  453. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/__init__.py +0 -0
  454. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/backend.py +0 -0
  455. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/limits.py +0 -0
  456. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/loader.py +0 -0
  457. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/models.py +0 -0
  458. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/preapproved.py +0 -0
  459. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/prompt.py +0 -0
  460. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/summary.py +0 -0
  461. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/webfetch/tool.py +0 -0
  462. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/__init__.py +0 -0
  463. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/backend.py +0 -0
  464. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/events.py +0 -0
  465. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/limits.py +0 -0
  466. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/loader.py +0 -0
  467. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/models.py +0 -0
  468. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/prompt.py +0 -0
  469. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/websearch/tool.py +0 -0
  470. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/__init__.py +0 -0
  471. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/backend.py +0 -0
  472. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/limits.py +0 -0
  473. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/models.py +0 -0
  474. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/prompt.py +0 -0
  475. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/tool.py +0 -0
  476. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/tools/write/validator.py +0 -0
  477. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/__init__.py +0 -0
  478. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/cwd.py +0 -0
  479. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/host_platform.py +0 -0
  480. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/path_hierarchy.py +0 -0
  481. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/path_user_input.py +0 -0
  482. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/rg_executable.py +0 -0
  483. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/subprocess_text.py +0 -0
  484. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/temp_paths.py +0 -0
  485. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/unc_path.py +0 -0
  486. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/utils/win_reserved_paths.py +0 -0
  487. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/__init__.py +0 -0
  488. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/batch.py +0 -0
  489. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/dag.py +0 -0
  490. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/__init__.py +0 -0
  491. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/adapter.py +0 -0
  492. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/depth_resolver.py +0 -0
  493. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/handlers/__init__.py +0 -0
  494. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/handlers/parallel_handler.py +0 -0
  495. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/handlers/route_handler.py +0 -0
  496. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/handlers/stage_handler.py +0 -0
  497. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/stack.py +0 -0
  498. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/event_adapter/types.py +0 -0
  499. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/patterns/__init__.py +0 -0
  500. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/runtime.py +0 -0
  501. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workflow/state.py +0 -0
  502. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/boundary.py +0 -0
  503. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/errors.py +0 -0
  504. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/grant.py +0 -0
  505. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/l3_root_grant.py +0 -0
  506. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/path_key_normalizer.py +0 -0
  507. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/root_grant_manager.py +0 -0
  508. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/tool_boundary.py +0 -0
  509. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/validators.py +0 -0
  510. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx/workspace/view.py +0 -0
  511. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx_python.egg-info/SOURCES.txt +0 -0
  512. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx_python.egg-info/dependency_links.txt +0 -0
  513. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx_python.egg-info/requires.txt +0 -0
  514. {langchain-agentx-python-0.7.6 → langchain-agentx-python-0.7.7}/langchain_agentx_python.egg-info/top_level.txt +0 -0
@@ -1,482 +1,482 @@
1
- Metadata-Version: 2.1
2
- Name: langchain-agentx-python
3
- Version: 0.7.6
4
- Summary: LangChain/LangGraph-based agent utilities for CodeBaseX.
5
- Author-email: GoodMood2008 <GoodMood2008@users.noreply.github.com>
6
- License: Apache License
7
- Version 2.0, January 2004
8
- http://www.apache.org/licenses/
9
-
10
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
-
12
- 1. Definitions.
13
-
14
- "License" shall mean the terms and conditions for use, reproduction,
15
- and distribution as defined by Sections 1 through 9 of this document.
16
-
17
- "Licensor" shall mean the copyright owner or entity authorized by
18
- the copyright owner that is granting the License.
19
-
20
- "Legal Entity" shall mean the union of the acting entity and all
21
- other entities that control, are controlled by, or are under common
22
- control with that entity. For the purposes of this definition,
23
- "control" means (i) the power, direct or indirect, to cause the
24
- direction or management of such entity, whether by contract or
25
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
- outstanding shares, or (iii) beneficial ownership of such entity.
27
-
28
- "You" (or "Your") shall mean an individual or Legal Entity
29
- exercising permissions granted by this License.
30
-
31
- "Source" form shall mean the preferred form for making modifications,
32
- including but not limited to software source code, documentation
33
- source, and configuration files.
34
-
35
- "Object" form shall mean any form resulting from mechanical
36
- transformation or translation of a Source form, including but
37
- not limited to compiled object code, generated documentation,
38
- and conversions to other media types.
39
-
40
- "Work" shall mean the work of authorship, whether in Source or
41
- Object form, made available under the License, as indicated by a
42
- copyright notice that is included in or attached to the work
43
- (an example is provided in the Appendix below).
44
-
45
- "Derivative Works" shall mean any work, whether in Source or Object
46
- form, that is based on (or derived from) the Work and for which the
47
- editorial revisions, annotations, elaborations, or other modifications
48
- represent, as a whole, an original work of authorship. For the purposes
49
- of this License, Derivative Works shall not include works that remain
50
- separable from, or merely link (or bind by name) to the interfaces of,
51
- the Work and Derivative Works thereof.
52
-
53
- "Contribution" shall mean any work of authorship, including
54
- the original version of the Work and any modifications or additions
55
- to that Work or Derivative Works thereof, that is intentionally
56
- submitted to Licensor for inclusion in the Work by the copyright owner
57
- or by an individual or Legal Entity authorized to submit on behalf of
58
- the copyright owner. For the purposes of this definition, "submitted"
59
- means any form of electronic, verbal, or written communication sent
60
- to the Licensor or its representatives, including but not limited to
61
- communication on electronic mailing lists, source code control systems,
62
- and issue tracking systems that are managed by, or on behalf of, the
63
- Licensor for the purpose of discussing and improving the Work, but
64
- excluding communication that is conspicuously marked or otherwise
65
- designated in writing by the copyright owner as "Not a Contribution."
66
-
67
- "Contributor" shall mean Licensor and any individual or Legal Entity
68
- on behalf of whom a Contribution has been received by Licensor and
69
- subsequently incorporated within the Work.
70
-
71
- 2. Grant of Copyright License. Subject to the terms and conditions of
72
- this License, each Contributor hereby grants to You a perpetual,
73
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
- copyright license to reproduce, prepare Derivative Works of,
75
- publicly display, publicly perform, sublicense, and distribute the
76
- Work and such Derivative Works in Source or Object form.
77
-
78
- 3. Grant of Patent License. Subject to the terms and conditions of
79
- this License, each Contributor hereby grants to You a perpetual,
80
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
- (except as stated in this section) patent license to make, have made,
82
- use, offer to sell, sell, import, and otherwise transfer the Work,
83
- where such license applies only to those patent claims licensable
84
- by such Contributor that are necessarily infringed by their
85
- Contribution(s) alone or by combination of their Contribution(s)
86
- with the Work to which such Contribution(s) was submitted. If You
87
- institute patent litigation against any entity (including a
88
- cross-claim or counterclaim in a lawsuit) alleging that the Work
89
- or a Contribution incorporated within the Work constitutes direct
90
- or contributory patent infringement, then any patent licenses
91
- granted to You under this License for that Work shall terminate
92
- as of the date such litigation is filed.
93
-
94
- 4. Redistribution. You may reproduce and distribute copies of the
95
- Work or Derivative Works thereof in any medium, with or without
96
- modifications, and in Source or Object form, provided that You
97
- meet the following conditions:
98
-
99
- (a) You must give any other recipients of the Work or
100
- Derivative Works a copy of this License; and
101
-
102
- (b) You must cause any modified files to carry prominent notices
103
- stating that You changed the files; and
104
-
105
- (c) You must retain, in the Source form of any Derivative Works
106
- that You distribute, all copyright, patent, trademark, and
107
- attribution notices from the Source form of the Work,
108
- excluding those notices that do not pertain to any part of
109
- the Derivative Works; and
110
-
111
- (d) If the Work includes a "NOTICE" text file as part of its
112
- distribution, then any Derivative Works that You distribute must
113
- include a readable copy of the attribution notices contained
114
- within such NOTICE file, excluding those notices that do not
115
- pertain to any part of the Derivative Works, in at least one
116
- of the following places: within a NOTICE text file distributed
117
- as part of the Derivative Works; within the Source form or
118
- documentation, if provided along with the Derivative Works; or,
119
- within a display generated by the Derivative Works, if and
120
- wherever such third-party notices normally appear. The contents
121
- of the NOTICE file are for informational purposes only and
122
- do not modify the License. You may add Your own attribution
123
- notices within Derivative Works that You distribute, alongside
124
- or as an addendum to the NOTICE text from the Work, provided
125
- that such additional attribution notices cannot be construed
126
- as modifying the License.
127
-
128
- You may add Your own copyright statement to Your modifications and
129
- may provide additional or different license terms and conditions
130
- for use, reproduction, or distribution of Your modifications, or
131
- for any such Derivative Works as a whole, provided Your use,
132
- reproduction, and distribution of the Work otherwise complies with
133
- the conditions stated in this License.
134
-
135
- 5. Submission of Contributions. Unless You explicitly state otherwise,
136
- any Contribution intentionally submitted for inclusion in the Work
137
- by You to the Licensor shall be under the terms and conditions of
138
- this License, without any additional terms or conditions.
139
- Notwithstanding the above, nothing herein shall supersede or modify
140
- the terms of any separate license agreement you may have executed
141
- with Licensor regarding such Contributions.
142
-
143
- 6. Trademarks. This License does not grant permission to use the trade
144
- names, trademarks, service marks, or product names of the Licensor,
145
- except as required for reasonable and customary use in describing the
146
- origin of the Work and reproducing the content of the NOTICE file.
147
-
148
- 7. Disclaimer of Warranty. Unless required by applicable law or
149
- agreed to in writing, Licensor provides the Work (and each
150
- Contributor provides its Contributions) on an "AS IS" BASIS,
151
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
- implied, including, without limitation, any warranties or conditions
153
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
- PARTICULAR PURPOSE. You are solely responsible for determining the
155
- appropriateness of using or redistributing the Work and assume any
156
- risks associated with Your exercise of permissions under this License.
157
-
158
- 8. Limitation of Liability. In no event and under no legal theory,
159
- whether in tort (including negligence), contract, or otherwise,
160
- unless required by applicable law (such as deliberate and grossly
161
- negligent acts) or agreed to in writing, shall any Contributor be
162
- liable to You for damages, including any direct, indirect, special,
163
- incidental, or consequential damages of any character arising as a
164
- result of this License or out of the use or inability to use the
165
- Work (including but not limited to damages for loss of goodwill,
166
- work stoppage, computer failure or malfunction, or any and all
167
- other commercial damages or losses), even if such Contributor
168
- has been advised of the possibility of such damages.
169
-
170
- 9. Accepting Warranty or Additional Liability. While redistributing
171
- the Work or Derivative Works thereof, You may choose to offer,
172
- and charge a fee for, acceptance of support, warranty, indemnity,
173
- or other liability obligations and/or rights consistent with this
174
- License. However, in accepting such obligations, You may act only
175
- on Your own behalf and on Your sole responsibility, not on behalf
176
- of any other Contributor, and only if You agree to indemnify,
177
- defend, and hold each Contributor harmless for any liability
178
- incurred by, or claims asserted against, such Contributor by reason
179
- of your accepting any such warranty or additional liability.
180
-
181
- END OF TERMS AND CONDITIONS
182
-
183
- APPENDIX: How to apply the Apache License to your work.
184
-
185
- To apply the Apache License to your work, attach the following
186
- boilerplate notice, with the fields enclosed by brackets "[]"
187
- replaced with your own identifying information. (Don't include
188
- the brackets!) The text should be enclosed in the appropriate
189
- comment syntax for the file format. We also recommend that a
190
- file or class name and description of purpose be included on the
191
- same "printed page" as the copyright notice for easier
192
- identification within third-party archives.
193
-
194
- Copyright [yyyy] [name of copyright owner]
195
-
196
- Licensed under the Apache License, Version 2.0 (the "License");
197
- you may not use this file except in compliance with the License.
198
- You may obtain a copy of the License at
199
-
200
- http://www.apache.org/licenses/LICENSE-2.0
201
-
202
- Unless required by applicable law or agreed to in writing, software
203
- distributed under the License is distributed on an "AS IS" BASIS,
204
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
- See the License for the specific language governing permissions and
206
- limitations under the License.
207
-
208
- Project-URL: Homepage, https://github.com/GoodMood2008/langchain_agentx_python
209
- Project-URL: Source, https://github.com/GoodMood2008/langchain_agentx_python
210
- Project-URL: Bug Tracker, https://github.com/GoodMood2008/langchain_agentx_python/issues
211
- Classifier: Programming Language :: Python :: 3
212
- Classifier: Programming Language :: Python :: 3 :: Only
213
- Classifier: Programming Language :: Python :: 3.11
214
- Classifier: License :: OSI Approved :: Apache Software License
215
- Classifier: Operating System :: OS Independent
216
- Requires-Python: >=3.11
217
- Description-Content-Type: text/markdown
218
- Provides-Extra: dev
219
- License-File: LICENSE
220
-
221
- # langchain-agentx-python
222
-
223
- `langchain-agentx-python` 是一组基于 LangChain / LangGraph 的”代码智能体”工具函数,帮助你在自己的项目里快速集成:
224
-
225
- - OpenCode 风格的 LangGraph Agent(代码理解、重构、分析)
226
- - 上下文感知中间件、性能监控等基础设施
227
- - 完整的工具运行时系统和权限管理
228
-
229
- ## 安装
230
-
231
- 发布到 PyPI 后,你可以直接通过 pip 安装:
232
-
233
- ```bash
234
- pip install langchain-agentx-python
235
- ```
236
-
237
- ## 快速上手
238
-
239
- ```python
240
- from langchain_agentx import create_loop_agent
241
-
242
- # 这里省略 LangChain / LangGraph 相关模型与工具配置
243
- agent = create_loop_agent(...)
244
- ```
245
-
246
- 具体的能力和使用方式可以参考源码中的 docstring 以及各模块下的 `README.md`。
247
-
248
- ## 发布新版本流程
249
-
250
- > **重要特性**:本项目的构建脚本会**自动排除所有测试文件**,生成纯净的生产包。当前有 140+ 个测试文件在构建时会被自动过滤,确保发布的包轻量、干净。
251
- >
252
- > 以下命令默认在项目根目录并已激活 Python 虚拟环境。
253
-
254
- ### 📋 发布前检查清单
255
-
256
- - [ ] 代码已提交到 Git 仓库
257
- - [ ] 版本号已更新(`pyproject.toml`)
258
- - [ ] 工作区干净(`git status` 检查)
259
- - [ ] 已安装构建工具(首次需要)
260
-
261
- ### 🚀 快速发布(推荐使用专用构建脚本)
262
-
263
- #### Step 1: 准备版本号
264
-
265
- 编辑 `pyproject.toml`,修改版本号:
266
-
267
- ```toml
268
- [project]
269
- name = "langchain-agentx-python"
270
- version = "0.1.0" # 当前版本为 0.1,发布建议改为 0.1.0
271
- ```
272
-
273
- #### Step 2: 提交代码更改
274
-
275
- ```bash
276
- # 检查状态
277
- git status
278
-
279
- # 提交所有更改
280
- git add .
281
- git commit -m "release: prepare for version 0.1.0"
282
- git push
283
- ```
284
-
285
- #### Step 3: 使用专用构建脚本生成纯净包
286
-
287
- ```bash
288
- # 使用项目专用构建脚本(自动排除测试文件)
289
- bash script/build-wheel.sh
290
- ```
291
-
292
- **构建脚本特性**:
293
- - ✅ 自动排除 140+ 个测试文件
294
- - ✅ 排除 `__pycache__`、`.pytest_cache` 等
295
- - ✅ 验证 wheel 包内容安全性
296
- - ✅ 生成到 `_build/dist/` 目录
297
-
298
- 构建成功后会看到:
299
-
300
- ```
301
- == Wheel content check (no test_* files) ==
302
- wheel: langchain_agentx_python-0.1.0-py3-none-any.whl
303
- py files: 456
304
- bad test-like files: 0
305
- wheel check ok
306
- ```
307
-
308
- #### Step 4: 验证构建产物
309
-
310
- ```bash
311
- # 查看生成的文件
312
- ls -lh _build/dist/
313
-
314
- # 应该看到:
315
- # langchain_agentx_python-0.1.0-py3-none-any.whl
316
- ```
317
-
318
- #### Step 5: 本地测试安装(推荐)
319
-
320
- ```bash
321
- # 创建临时测试环境
322
- python -m venv test_env
323
- source test_env/bin/activate # Linux/macOS
324
- # 或 test_env\Scripts\activate # Windows
325
-
326
- # 安装构建的包
327
- python -m pip install _build/dist/*.whl
328
-
329
- # 验证导入
330
- python -c "from langchain_agentx import create_loop_agent; print('SDK 安装成功')"
331
-
332
- # 清理测试环境
333
- deactivate
334
- rm -rf test_env
335
- ```
336
-
337
- #### Step 6: 发布到 PyPI
338
-
339
- **首次发布需要配置 PyPI 凭证**:
340
-
341
- 1. 注册 PyPI 账号:https://pypi.org/account/register/
342
- 2. 启用双重认证(2FA)
343
- 3. 生成 API Token:https://pypi.org/manage/account/token/
344
- 4. 创建 `~/.pypirc` 配置文件:
345
-
346
- ```bash
347
- cat > ~/.pypirc <<'EOF'
348
- [distutils]
349
- index-servers =
350
- pypi
351
- testpypi
352
-
353
- [pypi]
354
- username = __token__
355
- password = pypi-xxxx你的API_TOKENxxxx
356
-
357
- [testpypi]
358
- username = __token__
359
- password = pypi-xxxx你的TestPyPI_TOKENxxxx
360
- EOF
361
- ```
362
-
363
- **发布到 TestPyPI(推荐先测试)**:
364
-
365
- ```bash
366
- # 上传到测试仓库
367
- python -m twine upload --repository testpypi _build/dist/*
368
-
369
- # 测试安装
370
- python -m pip install --index-url https://test.pypi.org/simple/ langchain-agentx-python==0.1.0
371
- ```
372
-
373
- **发布到正式 PyPI**:
374
-
375
- ```bash
376
- # 上传到正式仓库
377
- python -m twine upload _build/dist/*
378
-
379
- # 验证发布
380
- python -m pip install langchain-agentx-python==0.1.0
381
- ```
382
-
383
- #### Step 7: 打标签并推送(可选但推荐)
384
-
385
- ```bash
386
- # 创建版本标签
387
- git tag v0.1.0
388
-
389
- # 推送标签到远程
390
- git push --tags
391
- ```
392
-
393
- ### 📦 备用方法:使用标准构建工具
394
-
395
- 如果专用构建脚本不可用,可以使用标准方法:
396
-
397
- ```bash
398
- # 安装构建工具
399
- python -m pip install -U build twine
400
-
401
- # 清理旧构建
402
- rm -rf dist/ build/ *.egg-info
403
-
404
- # 构建分发包
405
- python -m build
406
-
407
- # 查看产物
408
- ls -lh dist/
409
-
410
- # 发布
411
- python -m twine upload dist/*
412
- ```
413
-
414
- ### ⚠️ 注意事项
415
-
416
- 1. **版本号格式**:建议使用语义化版本,如 `0.1.0`、`0.2.0` 等
417
- 2. **测试文件排除**:专用构建脚本会自动排除所有测试文件,标准方法需要手动配置
418
- 3. **PyPI 名称**:包名在 PyPI 上显示为 `langchain-agentx-python`
419
- 4. **版本冲突**:如果版本号已存在,上传会失败,需要更新版本号
420
-
421
- ### 🔄 下次发布
422
-
423
- 下次发布时,只需重复上述步骤:
424
-
425
- 1. 更新 `pyproject.toml` 版本号
426
- 2. 提交代码:`git commit && git push`
427
- 3. 构建包:`bash script/build-wheel.sh`
428
- 4. 发布:`python -m twine upload _build/dist/*`
429
- 5. 打标签:`git tag && git push --tags`
430
-
431
- ## 核心功能
432
-
433
- ### Agent Loop 系统
434
- - OpenCode 风格的 LangGraph Agent 实现
435
- - finish_reason 驱动的主动退出机制
436
- - 完全兼容 LangChain 生态
437
-
438
- ### 工具运行时系统
439
- - 跨平台工具执行(Bash、Glob、Grep、Read 等)
440
- - 权限管理和安全控制
441
- - 工具状态隔离和会话管理
442
-
443
- ### 中间件和钩子系统
444
- - 上下文感知的中间件
445
- - before/after 钩子系统
446
- - 性能监控和事件追踪
447
-
448
- ### 配置和工作空间管理
449
- - 统一的工作空间配置
450
- - Agent Home 目录管理
451
- - 跨平台路径处理
452
-
453
- ## 文档
454
-
455
- - **工程指南**:`CLAUDE.md`
456
- - **架构文档**:`docs/architecture/`
457
- - **设计文档**:`docs/design-docs/`
458
- - **开发指南**:`docs/guides/`
459
-
460
- ## 开发
461
-
462
- ### 运行测试
463
-
464
- ```bash
465
- # 安装开发依赖
466
- pip install -e “.[dev]”
467
-
468
- # 运行测试
469
- pytest langchain_agentx/
470
- ```
471
-
472
- ### 代码规范
473
-
474
- 所有代码遵循项目编码规范:`docs/guides/coding-style-guide.html`
475
-
476
- ## 贡献
477
-
478
- 欢迎提交 Issue 和 Pull Request!
479
-
480
- ## 许可证
481
-
482
- Apache License 2.0
1
+ Metadata-Version: 2.1
2
+ Name: langchain-agentx-python
3
+ Version: 0.7.7
4
+ Summary: LangChain/LangGraph-based agent utilities for CodeBaseX.
5
+ Author-email: GoodMood2008 <GoodMood2008@users.noreply.github.com>
6
+ License: Apache License
7
+ Version 2.0, January 2004
8
+ http://www.apache.org/licenses/
9
+
10
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
+
12
+ 1. Definitions.
13
+
14
+ "License" shall mean the terms and conditions for use, reproduction,
15
+ and distribution as defined by Sections 1 through 9 of this document.
16
+
17
+ "Licensor" shall mean the copyright owner or entity authorized by
18
+ the copyright owner that is granting the License.
19
+
20
+ "Legal Entity" shall mean the union of the acting entity and all
21
+ other entities that control, are controlled by, or are under common
22
+ control with that entity. For the purposes of this definition,
23
+ "control" means (i) the power, direct or indirect, to cause the
24
+ direction or management of such entity, whether by contract or
25
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
+ outstanding shares, or (iii) beneficial ownership of such entity.
27
+
28
+ "You" (or "Your") shall mean an individual or Legal Entity
29
+ exercising permissions granted by this License.
30
+
31
+ "Source" form shall mean the preferred form for making modifications,
32
+ including but not limited to software source code, documentation
33
+ source, and configuration files.
34
+
35
+ "Object" form shall mean any form resulting from mechanical
36
+ transformation or translation of a Source form, including but
37
+ not limited to compiled object code, generated documentation,
38
+ and conversions to other media types.
39
+
40
+ "Work" shall mean the work of authorship, whether in Source or
41
+ Object form, made available under the License, as indicated by a
42
+ copyright notice that is included in or attached to the work
43
+ (an example is provided in the Appendix below).
44
+
45
+ "Derivative Works" shall mean any work, whether in Source or Object
46
+ form, that is based on (or derived from) the Work and for which the
47
+ editorial revisions, annotations, elaborations, or other modifications
48
+ represent, as a whole, an original work of authorship. For the purposes
49
+ of this License, Derivative Works shall not include works that remain
50
+ separable from, or merely link (or bind by name) to the interfaces of,
51
+ the Work and Derivative Works thereof.
52
+
53
+ "Contribution" shall mean any work of authorship, including
54
+ the original version of the Work and any modifications or additions
55
+ to that Work or Derivative Works thereof, that is intentionally
56
+ submitted to Licensor for inclusion in the Work by the copyright owner
57
+ or by an individual or Legal Entity authorized to submit on behalf of
58
+ the copyright owner. For the purposes of this definition, "submitted"
59
+ means any form of electronic, verbal, or written communication sent
60
+ to the Licensor or its representatives, including but not limited to
61
+ communication on electronic mailing lists, source code control systems,
62
+ and issue tracking systems that are managed by, or on behalf of, the
63
+ Licensor for the purpose of discussing and improving the Work, but
64
+ excluding communication that is conspicuously marked or otherwise
65
+ designated in writing by the copyright owner as "Not a Contribution."
66
+
67
+ "Contributor" shall mean Licensor and any individual or Legal Entity
68
+ on behalf of whom a Contribution has been received by Licensor and
69
+ subsequently incorporated within the Work.
70
+
71
+ 2. Grant of Copyright License. Subject to the terms and conditions of
72
+ this License, each Contributor hereby grants to You a perpetual,
73
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
+ copyright license to reproduce, prepare Derivative Works of,
75
+ publicly display, publicly perform, sublicense, and distribute the
76
+ Work and such Derivative Works in Source or Object form.
77
+
78
+ 3. Grant of Patent License. Subject to the terms and conditions of
79
+ this License, each Contributor hereby grants to You a perpetual,
80
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
+ (except as stated in this section) patent license to make, have made,
82
+ use, offer to sell, sell, import, and otherwise transfer the Work,
83
+ where such license applies only to those patent claims licensable
84
+ by such Contributor that are necessarily infringed by their
85
+ Contribution(s) alone or by combination of their Contribution(s)
86
+ with the Work to which such Contribution(s) was submitted. If You
87
+ institute patent litigation against any entity (including a
88
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
89
+ or a Contribution incorporated within the Work constitutes direct
90
+ or contributory patent infringement, then any patent licenses
91
+ granted to You under this License for that Work shall terminate
92
+ as of the date such litigation is filed.
93
+
94
+ 4. Redistribution. You may reproduce and distribute copies of the
95
+ Work or Derivative Works thereof in any medium, with or without
96
+ modifications, and in Source or Object form, provided that You
97
+ meet the following conditions:
98
+
99
+ (a) You must give any other recipients of the Work or
100
+ Derivative Works a copy of this License; and
101
+
102
+ (b) You must cause any modified files to carry prominent notices
103
+ stating that You changed the files; and
104
+
105
+ (c) You must retain, in the Source form of any Derivative Works
106
+ that You distribute, all copyright, patent, trademark, and
107
+ attribution notices from the Source form of the Work,
108
+ excluding those notices that do not pertain to any part of
109
+ the Derivative Works; and
110
+
111
+ (d) If the Work includes a "NOTICE" text file as part of its
112
+ distribution, then any Derivative Works that You distribute must
113
+ include a readable copy of the attribution notices contained
114
+ within such NOTICE file, excluding those notices that do not
115
+ pertain to any part of the Derivative Works, in at least one
116
+ of the following places: within a NOTICE text file distributed
117
+ as part of the Derivative Works; within the Source form or
118
+ documentation, if provided along with the Derivative Works; or,
119
+ within a display generated by the Derivative Works, if and
120
+ wherever such third-party notices normally appear. The contents
121
+ of the NOTICE file are for informational purposes only and
122
+ do not modify the License. You may add Your own attribution
123
+ notices within Derivative Works that You distribute, alongside
124
+ or as an addendum to the NOTICE text from the Work, provided
125
+ that such additional attribution notices cannot be construed
126
+ as modifying the License.
127
+
128
+ You may add Your own copyright statement to Your modifications and
129
+ may provide additional or different license terms and conditions
130
+ for use, reproduction, or distribution of Your modifications, or
131
+ for any such Derivative Works as a whole, provided Your use,
132
+ reproduction, and distribution of the Work otherwise complies with
133
+ the conditions stated in this License.
134
+
135
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
136
+ any Contribution intentionally submitted for inclusion in the Work
137
+ by You to the Licensor shall be under the terms and conditions of
138
+ this License, without any additional terms or conditions.
139
+ Notwithstanding the above, nothing herein shall supersede or modify
140
+ the terms of any separate license agreement you may have executed
141
+ with Licensor regarding such Contributions.
142
+
143
+ 6. Trademarks. This License does not grant permission to use the trade
144
+ names, trademarks, service marks, or product names of the Licensor,
145
+ except as required for reasonable and customary use in describing the
146
+ origin of the Work and reproducing the content of the NOTICE file.
147
+
148
+ 7. Disclaimer of Warranty. Unless required by applicable law or
149
+ agreed to in writing, Licensor provides the Work (and each
150
+ Contributor provides its Contributions) on an "AS IS" BASIS,
151
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
+ implied, including, without limitation, any warranties or conditions
153
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
+ PARTICULAR PURPOSE. You are solely responsible for determining the
155
+ appropriateness of using or redistributing the Work and assume any
156
+ risks associated with Your exercise of permissions under this License.
157
+
158
+ 8. Limitation of Liability. In no event and under no legal theory,
159
+ whether in tort (including negligence), contract, or otherwise,
160
+ unless required by applicable law (such as deliberate and grossly
161
+ negligent acts) or agreed to in writing, shall any Contributor be
162
+ liable to You for damages, including any direct, indirect, special,
163
+ incidental, or consequential damages of any character arising as a
164
+ result of this License or out of the use or inability to use the
165
+ Work (including but not limited to damages for loss of goodwill,
166
+ work stoppage, computer failure or malfunction, or any and all
167
+ other commercial damages or losses), even if such Contributor
168
+ has been advised of the possibility of such damages.
169
+
170
+ 9. Accepting Warranty or Additional Liability. While redistributing
171
+ the Work or Derivative Works thereof, You may choose to offer,
172
+ and charge a fee for, acceptance of support, warranty, indemnity,
173
+ or other liability obligations and/or rights consistent with this
174
+ License. However, in accepting such obligations, You may act only
175
+ on Your own behalf and on Your sole responsibility, not on behalf
176
+ of any other Contributor, and only if You agree to indemnify,
177
+ defend, and hold each Contributor harmless for any liability
178
+ incurred by, or claims asserted against, such Contributor by reason
179
+ of your accepting any such warranty or additional liability.
180
+
181
+ END OF TERMS AND CONDITIONS
182
+
183
+ APPENDIX: How to apply the Apache License to your work.
184
+
185
+ To apply the Apache License to your work, attach the following
186
+ boilerplate notice, with the fields enclosed by brackets "[]"
187
+ replaced with your own identifying information. (Don't include
188
+ the brackets!) The text should be enclosed in the appropriate
189
+ comment syntax for the file format. We also recommend that a
190
+ file or class name and description of purpose be included on the
191
+ same "printed page" as the copyright notice for easier
192
+ identification within third-party archives.
193
+
194
+ Copyright [yyyy] [name of copyright owner]
195
+
196
+ Licensed under the Apache License, Version 2.0 (the "License");
197
+ you may not use this file except in compliance with the License.
198
+ You may obtain a copy of the License at
199
+
200
+ http://www.apache.org/licenses/LICENSE-2.0
201
+
202
+ Unless required by applicable law or agreed to in writing, software
203
+ distributed under the License is distributed on an "AS IS" BASIS,
204
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
+ See the License for the specific language governing permissions and
206
+ limitations under the License.
207
+
208
+ Project-URL: Homepage, https://github.com/GoodMood2008/langchain_agentx_python
209
+ Project-URL: Source, https://github.com/GoodMood2008/langchain_agentx_python
210
+ Project-URL: Bug Tracker, https://github.com/GoodMood2008/langchain_agentx_python/issues
211
+ Classifier: Programming Language :: Python :: 3
212
+ Classifier: Programming Language :: Python :: 3 :: Only
213
+ Classifier: Programming Language :: Python :: 3.11
214
+ Classifier: License :: OSI Approved :: Apache Software License
215
+ Classifier: Operating System :: OS Independent
216
+ Requires-Python: >=3.11
217
+ Description-Content-Type: text/markdown
218
+ Provides-Extra: dev
219
+ License-File: LICENSE
220
+
221
+ # langchain-agentx-python
222
+
223
+ `langchain-agentx-python` 是一组基于 LangChain / LangGraph 的”代码智能体”工具函数,帮助你在自己的项目里快速集成:
224
+
225
+ - OpenCode 风格的 LangGraph Agent(代码理解、重构、分析)
226
+ - 上下文感知中间件、性能监控等基础设施
227
+ - 完整的工具运行时系统和权限管理
228
+
229
+ ## 安装
230
+
231
+ 发布到 PyPI 后,你可以直接通过 pip 安装:
232
+
233
+ ```bash
234
+ pip install langchain-agentx-python
235
+ ```
236
+
237
+ ## 快速上手
238
+
239
+ ```python
240
+ from langchain_agentx import create_loop_agent
241
+
242
+ # 这里省略 LangChain / LangGraph 相关模型与工具配置
243
+ agent = create_loop_agent(...)
244
+ ```
245
+
246
+ 具体的能力和使用方式可以参考源码中的 docstring 以及各模块下的 `README.md`。
247
+
248
+ ## 发布新版本流程
249
+
250
+ > **重要特性**:本项目的构建脚本会**自动排除所有测试文件**,生成纯净的生产包。当前有 140+ 个测试文件在构建时会被自动过滤,确保发布的包轻量、干净。
251
+ >
252
+ > 以下命令默认在项目根目录并已激活 Python 虚拟环境。
253
+
254
+ ### 📋 发布前检查清单
255
+
256
+ - [ ] 代码已提交到 Git 仓库
257
+ - [ ] 版本号已更新(`pyproject.toml`)
258
+ - [ ] 工作区干净(`git status` 检查)
259
+ - [ ] 已安装构建工具(首次需要)
260
+
261
+ ### 🚀 快速发布(推荐使用专用构建脚本)
262
+
263
+ #### Step 1: 准备版本号
264
+
265
+ 编辑 `pyproject.toml`,修改版本号:
266
+
267
+ ```toml
268
+ [project]
269
+ name = "langchain-agentx-python"
270
+ version = "0.1.0" # 当前版本为 0.1,发布建议改为 0.1.0
271
+ ```
272
+
273
+ #### Step 2: 提交代码更改
274
+
275
+ ```bash
276
+ # 检查状态
277
+ git status
278
+
279
+ # 提交所有更改
280
+ git add .
281
+ git commit -m "release: prepare for version 0.1.0"
282
+ git push
283
+ ```
284
+
285
+ #### Step 3: 使用专用构建脚本生成纯净包
286
+
287
+ ```bash
288
+ # 使用项目专用构建脚本(自动排除测试文件)
289
+ bash script/build-wheel.sh
290
+ ```
291
+
292
+ **构建脚本特性**:
293
+ - ✅ 自动排除 140+ 个测试文件
294
+ - ✅ 排除 `__pycache__`、`.pytest_cache` 等
295
+ - ✅ 验证 wheel 包内容安全性
296
+ - ✅ 生成到 `_build/dist/` 目录
297
+
298
+ 构建成功后会看到:
299
+
300
+ ```
301
+ == Wheel content check (no test_* files) ==
302
+ wheel: langchain_agentx_python-0.1.0-py3-none-any.whl
303
+ py files: 456
304
+ bad test-like files: 0
305
+ wheel check ok
306
+ ```
307
+
308
+ #### Step 4: 验证构建产物
309
+
310
+ ```bash
311
+ # 查看生成的文件
312
+ ls -lh _build/dist/
313
+
314
+ # 应该看到:
315
+ # langchain_agentx_python-0.1.0-py3-none-any.whl
316
+ ```
317
+
318
+ #### Step 5: 本地测试安装(推荐)
319
+
320
+ ```bash
321
+ # 创建临时测试环境
322
+ python -m venv test_env
323
+ source test_env/bin/activate # Linux/macOS
324
+ # 或 test_env\Scripts\activate # Windows
325
+
326
+ # 安装构建的包
327
+ python -m pip install _build/dist/*.whl
328
+
329
+ # 验证导入
330
+ python -c "from langchain_agentx import create_loop_agent; print('SDK 安装成功')"
331
+
332
+ # 清理测试环境
333
+ deactivate
334
+ rm -rf test_env
335
+ ```
336
+
337
+ #### Step 6: 发布到 PyPI
338
+
339
+ **首次发布需要配置 PyPI 凭证**:
340
+
341
+ 1. 注册 PyPI 账号:https://pypi.org/account/register/
342
+ 2. 启用双重认证(2FA)
343
+ 3. 生成 API Token:https://pypi.org/manage/account/token/
344
+ 4. 创建 `~/.pypirc` 配置文件:
345
+
346
+ ```bash
347
+ cat > ~/.pypirc <<'EOF'
348
+ [distutils]
349
+ index-servers =
350
+ pypi
351
+ testpypi
352
+
353
+ [pypi]
354
+ username = __token__
355
+ password = pypi-xxxx你的API_TOKENxxxx
356
+
357
+ [testpypi]
358
+ username = __token__
359
+ password = pypi-xxxx你的TestPyPI_TOKENxxxx
360
+ EOF
361
+ ```
362
+
363
+ **发布到 TestPyPI(推荐先测试)**:
364
+
365
+ ```bash
366
+ # 上传到测试仓库
367
+ python -m twine upload --repository testpypi _build/dist/*
368
+
369
+ # 测试安装
370
+ python -m pip install --index-url https://test.pypi.org/simple/ langchain-agentx-python==0.1.0
371
+ ```
372
+
373
+ **发布到正式 PyPI**:
374
+
375
+ ```bash
376
+ # 上传到正式仓库
377
+ python -m twine upload _build/dist/*
378
+
379
+ # 验证发布
380
+ python -m pip install langchain-agentx-python==0.1.0
381
+ ```
382
+
383
+ #### Step 7: 打标签并推送(可选但推荐)
384
+
385
+ ```bash
386
+ # 创建版本标签
387
+ git tag v0.1.0
388
+
389
+ # 推送标签到远程
390
+ git push --tags
391
+ ```
392
+
393
+ ### 📦 备用方法:使用标准构建工具
394
+
395
+ 如果专用构建脚本不可用,可以使用标准方法:
396
+
397
+ ```bash
398
+ # 安装构建工具
399
+ python -m pip install -U build twine
400
+
401
+ # 清理旧构建
402
+ rm -rf dist/ build/ *.egg-info
403
+
404
+ # 构建分发包
405
+ python -m build
406
+
407
+ # 查看产物
408
+ ls -lh dist/
409
+
410
+ # 发布
411
+ python -m twine upload dist/*
412
+ ```
413
+
414
+ ### ⚠️ 注意事项
415
+
416
+ 1. **版本号格式**:建议使用语义化版本,如 `0.1.0`、`0.2.0` 等
417
+ 2. **测试文件排除**:专用构建脚本会自动排除所有测试文件,标准方法需要手动配置
418
+ 3. **PyPI 名称**:包名在 PyPI 上显示为 `langchain-agentx-python`
419
+ 4. **版本冲突**:如果版本号已存在,上传会失败,需要更新版本号
420
+
421
+ ### 🔄 下次发布
422
+
423
+ 下次发布时,只需重复上述步骤:
424
+
425
+ 1. 更新 `pyproject.toml` 版本号
426
+ 2. 提交代码:`git commit && git push`
427
+ 3. 构建包:`bash script/build-wheel.sh`
428
+ 4. 发布:`python -m twine upload _build/dist/*`
429
+ 5. 打标签:`git tag && git push --tags`
430
+
431
+ ## 核心功能
432
+
433
+ ### Agent Loop 系统
434
+ - OpenCode 风格的 LangGraph Agent 实现
435
+ - finish_reason 驱动的主动退出机制
436
+ - 完全兼容 LangChain 生态
437
+
438
+ ### 工具运行时系统
439
+ - 跨平台工具执行(Bash、Glob、Grep、Read 等)
440
+ - 权限管理和安全控制
441
+ - 工具状态隔离和会话管理
442
+
443
+ ### 中间件和钩子系统
444
+ - 上下文感知的中间件
445
+ - before/after 钩子系统
446
+ - 性能监控和事件追踪
447
+
448
+ ### 配置和工作空间管理
449
+ - 统一的工作空间配置
450
+ - Agent Home 目录管理
451
+ - 跨平台路径处理
452
+
453
+ ## 文档
454
+
455
+ - **工程指南**:`CLAUDE.md`
456
+ - **架构文档**:`docs/architecture/`
457
+ - **设计文档**:`docs/design-docs/`
458
+ - **开发指南**:`docs/guides/`
459
+
460
+ ## 开发
461
+
462
+ ### 运行测试
463
+
464
+ ```bash
465
+ # 安装开发依赖
466
+ pip install -e “.[dev]”
467
+
468
+ # 运行测试
469
+ pytest langchain_agentx/
470
+ ```
471
+
472
+ ### 代码规范
473
+
474
+ 所有代码遵循项目编码规范:`docs/guides/coding-style-guide.html`
475
+
476
+ ## 贡献
477
+
478
+ 欢迎提交 Issue 和 Pull Request!
479
+
480
+ ## 许可证
481
+
482
+ Apache License 2.0