langchain-agentx-python 2.3.1__py3-none-any.whl → 2.3.2__py3-none-any.whl
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.
- langchain_agentx/__init__.py +1 -1
- langchain_agentx/loop/graph/factory.py +3 -1
- {langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/METADATA +11 -23
- {langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/RECORD +7 -7
- {langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/LICENSE +0 -0
- {langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/WHEEL +0 -0
- {langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/top_level.txt +0 -0
langchain_agentx/__init__.py
CHANGED
|
@@ -759,7 +759,9 @@ class LoopGraphBuilder:
|
|
|
759
759
|
if tool.name in self._loop_loader.registry._tools:
|
|
760
760
|
existing = self._loop_loader.registry.get(tool.name)
|
|
761
761
|
if existing is not tool:
|
|
762
|
-
|
|
762
|
+
# 宿主与 register_default_tools 同名不同实例:保留默认。
|
|
763
|
+
# debug:CLI 镜像全量默认工具时属常态,勿打 stderr(S-4 仍可 caplog)。
|
|
764
|
+
logger.debug(
|
|
763
765
|
"Host loader tool %r not merged into loop; "
|
|
764
766
|
"register_default_tools already registered %r (S-4)",
|
|
765
767
|
tool.name,
|
{langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langchain-agentx-python
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: LangChain/LangGraph-based agent utilities for CodeBaseX.
|
|
5
5
|
Author-email: GoodMood2008 <GoodMood2008@users.noreply.github.com>
|
|
6
6
|
License: Apache License
|
|
@@ -216,34 +216,22 @@ Classifier: Operating System :: OS Independent
|
|
|
216
216
|
Requires-Python: >=3.11
|
|
217
217
|
Description-Content-Type: text/markdown
|
|
218
218
|
License-File: LICENSE
|
|
219
|
-
Requires-Dist: langgraph<1.3.0,>=1.2.
|
|
219
|
+
Requires-Dist: langgraph<1.3.0,>=1.2.11
|
|
220
220
|
Requires-Dist: langgraph-prebuilt<1.2.0,>=1.1.0
|
|
221
|
-
Requires-Dist: langchain<2.0.0,>=1.
|
|
222
|
-
Requires-Dist: langchain-core<2.0.0,>=1.
|
|
223
|
-
Requires-Dist: langchain-text-splitters>=1.1.
|
|
224
|
-
Requires-Dist: langchain-anthropic<2.0.0,>=1.
|
|
225
|
-
Requires-Dist: langchain-google-genai<
|
|
226
|
-
Requires-Dist: langchain-
|
|
227
|
-
Requires-Dist:
|
|
228
|
-
Requires-Dist:
|
|
221
|
+
Requires-Dist: langchain<2.0.0,>=1.4.2
|
|
222
|
+
Requires-Dist: langchain-core<2.0.0,>=1.6.3
|
|
223
|
+
Requires-Dist: langchain-text-splitters>=1.1.2
|
|
224
|
+
Requires-Dist: langchain-anthropic<2.0.0,>=1.6.1
|
|
225
|
+
Requires-Dist: langchain-google-genai<4.4,>=4.3.7
|
|
226
|
+
Requires-Dist: langchain-openai>=1.6.2
|
|
227
|
+
Requires-Dist: openai<4.0.0,>=2.45.0
|
|
228
|
+
Requires-Dist: aiohttp>=3.14.3
|
|
229
229
|
Requires-Dist: tree-sitter==0.21.3
|
|
230
230
|
Requires-Dist: tree-sitter-languages>=1.10.2
|
|
231
|
-
Requires-Dist: networkx
|
|
232
|
-
Requires-Dist: matplotlib
|
|
233
|
-
Requires-Dist: graspologic
|
|
234
|
-
Requires-Dist: future
|
|
235
231
|
Requires-Dist: wcmatch
|
|
236
|
-
Requires-Dist:
|
|
237
|
-
Requires-Dist: tiktoken
|
|
238
|
-
Requires-Dist: google-genai<2.0.0,>=1.61.0
|
|
232
|
+
Requires-Dist: google-genai<2.0.0,>=1.65.0
|
|
239
233
|
Requires-Dist: google-auth<3.0.0,>=2.48.0
|
|
240
234
|
Requires-Dist: filetype==1.2.0
|
|
241
|
-
Requires-Dist: uvicorn[standard]
|
|
242
|
-
Requires-Dist: pycryptodome
|
|
243
|
-
Requires-Dist: chardet>=5.0.0
|
|
244
|
-
Requires-Dist: pandas
|
|
245
|
-
Requires-Dist: mcp>=1.19.0
|
|
246
|
-
Requires-Dist: fastapi
|
|
247
235
|
Requires-Dist: portalocker<4,>=2.8.2
|
|
248
236
|
Requires-Dist: filelock>=3.0
|
|
249
237
|
Requires-Dist: cachetools<7,>=5.3
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
langchain_agentx/__init__.py,sha256=
|
|
1
|
+
langchain_agentx/__init__.py,sha256=UYRKrpqJvIQs_odLFNlRSJVoGCAv6UA1VLWG64SQ0gE,1614
|
|
2
2
|
langchain_agentx/command/__init__.py,sha256=Ej260S5uFQcmEtGZQG_NH7BYjHoStrpBLtGUsBTxyZk,631
|
|
3
3
|
langchain_agentx/command/allowed_tools.py,sha256=TVA0VM8rm98H-QbLK_GRiX5RhEAZFxKawliMi4kk96A,3359
|
|
4
4
|
langchain_agentx/command/context.py,sha256=DIGOGPBw5UGDBm0WNNJlKx1h_9rCRmcdROv4DT61Qug,731
|
|
@@ -68,7 +68,7 @@ langchain_agentx/loop/exit/terminal.py,sha256=_DAZk-kS4Xd0nxMlayLo60-uj1Y5ozgBjL
|
|
|
68
68
|
langchain_agentx/loop/exit/withheld_error.py,sha256=LfX3j7Rgd9VoMzlz7GOs9TPuRe7RXr_Gxweyotx3tqQ,1846
|
|
69
69
|
langchain_agentx/loop/graph/__init__.py,sha256=9pUUqn7G87n3lV45iYIU24j0wcTHyCD--SSdtv3urh4,136
|
|
70
70
|
langchain_agentx/loop/graph/builtin_loop_control.py,sha256=31o4H6SDGC_vECSliXecuVEnzlD1ahlVZ5JzEpxYY04,9248
|
|
71
|
-
langchain_agentx/loop/graph/factory.py,sha256=
|
|
71
|
+
langchain_agentx/loop/graph/factory.py,sha256=BMNHUGqNhOhcqxtdsB0TeI5ZHqK_0QdDwb3K32LmhxA,104607
|
|
72
72
|
langchain_agentx/loop/graph/graph_edges.py,sha256=kW6Npx-nMIPzcaisCxVPkTwf5Y9GOKy1NWCNkJWeJBQ,47370
|
|
73
73
|
langchain_agentx/loop/graph/reactive_compact_node.py,sha256=633b5hTnR3BK8GBEKWhzOwGB0BQrVRKozNxDomWFjLo,8762
|
|
74
74
|
langchain_agentx/loop/graph/runtime_tools_node.py,sha256=wQkbc0ophyefpPZEc0q1vKoJOIdS4S6d6hSsrkdRLDk,7387
|
|
@@ -766,8 +766,8 @@ langchain_agentx/workspace/root_grant_manager.py,sha256=W3gy8HTevbERbXqIgRcjzOXO
|
|
|
766
766
|
langchain_agentx/workspace/tool_boundary.py,sha256=UDwX6swpSLsx9HNkYuuRRiV5o7ZZG_Bru2Yn0c5kNX8,5724
|
|
767
767
|
langchain_agentx/workspace/validators.py,sha256=tQt-6TOcL8Fw7Ig5ebA9S7vGWh1rby920eFW6x8Tk9E,1439
|
|
768
768
|
langchain_agentx/workspace/view.py,sha256=PGasqTaqhlD03SXXazHuw4RHfV681AIdlsYqL70pEjc,4774
|
|
769
|
-
langchain_agentx_python-2.3.
|
|
770
|
-
langchain_agentx_python-2.3.
|
|
771
|
-
langchain_agentx_python-2.3.
|
|
772
|
-
langchain_agentx_python-2.3.
|
|
773
|
-
langchain_agentx_python-2.3.
|
|
769
|
+
langchain_agentx_python-2.3.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
770
|
+
langchain_agentx_python-2.3.2.dist-info/METADATA,sha256=kIbTWeDzgAZS7u3vcxnCjP_NGMr1C6S3fUvdo_Ervw8,23942
|
|
771
|
+
langchain_agentx_python-2.3.2.dist-info/WHEEL,sha256=51RkbunBAw4BWsgaQWTpPhg4Diwp3c9P5iaLk67Hdtg,92
|
|
772
|
+
langchain_agentx_python-2.3.2.dist-info/top_level.txt,sha256=Ge284pniNt8xea0OLk2o9o32GqVpDhOYk20fwE-0xxA,17
|
|
773
|
+
langchain_agentx_python-2.3.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{langchain_agentx_python-2.3.1.dist-info → langchain_agentx_python-2.3.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|