langchain-agentx-python 0.3.0__py3-none-any.whl → 0.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.
@@ -30,7 +30,7 @@ from concurrent.futures import Future
30
30
  from dataclasses import dataclass
31
31
  from typing import Any, Callable
32
32
 
33
- from langchain_core.messages import HumanMessage
33
+ from langchain_core.messages import AIMessage, HumanMessage
34
34
 
35
35
  from langchain_agentx.loop.subagent.context import (
36
36
  SubagentContext,
@@ -117,7 +117,7 @@ def _extract_final_content(messages: list[Any], allowed_tool_names: set[str] | N
117
117
  if msg.get("role") in ("assistant", "ai"):
118
118
  return str(msg.get("content", ""))
119
119
  else:
120
- if getattr(msg, "type", None) == "ai":
120
+ if isinstance(msg, AIMessage): # AIMessageChunk is a subclass
121
121
  content = getattr(msg, "content", "")
122
122
  if isinstance(content, str):
123
123
  return content
@@ -415,6 +415,41 @@ class LangGraphToLangchainAgentEventAdapter:
415
415
  return str(output[key])
416
416
  return str(output)
417
417
 
418
+ def _extract_compact_summary(self, data: Dict[str, Any]) -> Dict[str, Any]:
419
+ """从 compact node output 中提取摘要信息供 CLI 展示。
420
+
421
+ 提取字段:
422
+ - tokens_before/tokens_after/tokens_freed: token 统计
423
+ - autocompact_mode: autocompact 模式(llm/prune/prune_blocked_llm)
424
+ - folded_messages: 折叠的消息数量
425
+ - summary: LLM 生成的摘要文本(仅 LLM 模式下存在)
426
+ """
427
+ output = data.get("output") if isinstance(data, dict) else None
428
+ if not isinstance(output, dict):
429
+ return {}
430
+ meta = output.get("compaction_pipeline_meta")
431
+ result: Dict[str, Any] = {}
432
+ if isinstance(meta, dict):
433
+ result["tokens_before"] = meta.get("estimated_tokens_before")
434
+ result["tokens_after"] = meta.get("estimated_tokens_after")
435
+ result["tokens_freed"] = meta.get("tokens_freed_sum")
436
+ # 从 stages 中提取 autocompact mode
437
+ stages = meta.get("stages")
438
+ if isinstance(stages, list):
439
+ for s in stages:
440
+ if isinstance(s, dict) and s.get("name") == "autocompact":
441
+ extra = s.get("extra") or {}
442
+ result["autocompact_mode"] = extra.get("autocompact_mode")
443
+ result["folded_messages"] = extra.get("folded_messages")
444
+ # 提取 summary 文本(压缩后 messages[0] 的 content)
445
+ messages = output.get("messages")
446
+ if isinstance(messages, list) and messages:
447
+ first = messages[0]
448
+ content = getattr(first, "content", None)
449
+ if isinstance(content, str) and "Summary:" in content:
450
+ result["summary"] = content
451
+ return result
452
+
418
453
  async def _handle_chain_end(
419
454
  self, name: str, data: Dict[str, Any]
420
455
  ) -> AsyncGenerator[LangchainAgentEvent, None]:
@@ -462,9 +497,10 @@ class LangGraphToLangchainAgentEventAdapter:
462
497
  )
463
498
 
464
499
  if self.enable_compact_events and self._is_compact_node(name):
500
+ compact_data = self._extract_compact_summary(data)
465
501
  yield self._event(
466
502
  event_type=LangchainAgentEventType.COMPACT_END,
467
- data={},
503
+ data=compact_data,
468
504
  step_index=self.state.step_index or None,
469
505
  )
470
506
 
@@ -1,516 +1,516 @@
1
- Metadata-Version: 2.1
2
- Name: langchain-agentx-python
3
- Version: 0.3.0
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
- License-File: LICENSE
219
- Requires-Dist: langgraph<1.2.0,>=1.1.1
220
- Requires-Dist: langgraph-prebuilt<1.1.0,>=1.0.8
221
- Requires-Dist: langchain<2.0.0,>=1.2.10
222
- Requires-Dist: langchain-core<2.0.0,>=1.2.10
223
- Requires-Dist: langchain-text-splitters>=1.1.0
224
- Requires-Dist: langchain-anthropic<2.0.0,>=1.3.3
225
- Requires-Dist: langchain-google-genai<5.0.0,>=4.2.0
226
- Requires-Dist: langchain-community>=0.4.1
227
- Requires-Dist: langchain-openai>=1.1.3
228
- Requires-Dist: openai
229
- Requires-Dist: tree-sitter==0.21.3
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
- Requires-Dist: wcmatch
236
- Requires-Dist: faiss-cpu
237
- Requires-Dist: tiktoken
238
- Requires-Dist: google-genai==1.61.0
239
- Requires-Dist: google-auth==2.48.0
240
- 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
- Requires-Dist: portalocker<4,>=2.8.2
248
- Requires-Dist: pyyaml
249
- Requires-Dist: urllib3<3,>=1.26
250
- Requires-Dist: charset-normalizer<4,>=2
251
- Provides-Extra: dev
252
- Requires-Dist: pytest>=8; extra == "dev"
253
- Requires-Dist: pytest-asyncio>=0.24; extra == "dev"
254
-
255
- # langchain-agentx-python
256
-
257
- `langchain-agentx-python` 是一组基于 LangChain / LangGraph 的”代码智能体”工具函数,帮助你在自己的项目里快速集成:
258
-
259
- - OpenCode 风格的 LangGraph Agent(代码理解、重构、分析)
260
- - 上下文感知中间件、性能监控等基础设施
261
- - 完整的工具运行时系统和权限管理
262
-
263
- ## 安装
264
-
265
- 发布到 PyPI 后,你可以直接通过 pip 安装:
266
-
267
- ```bash
268
- pip install langchain-agentx-python
269
- ```
270
-
271
- ## 快速上手
272
-
273
- ```python
274
- from langchain_agentx import create_loop_agent
275
-
276
- # 这里省略 LangChain / LangGraph 相关模型与工具配置
277
- agent = create_loop_agent(...)
278
- ```
279
-
280
- 具体的能力和使用方式可以参考源码中的 docstring 以及各模块下的 `README.md`。
281
-
282
- ## 发布新版本流程
283
-
284
- > **重要特性**:本项目的构建脚本会**自动排除所有测试文件**,生成纯净的生产包。当前有 140+ 个测试文件在构建时会被自动过滤,确保发布的包轻量、干净。
285
- >
286
- > 以下命令默认在项目根目录并已激活 Python 虚拟环境。
287
-
288
- ### 📋 发布前检查清单
289
-
290
- - [ ] 代码已提交到 Git 仓库
291
- - [ ] 版本号已更新(`pyproject.toml`)
292
- - [ ] 工作区干净(`git status` 检查)
293
- - [ ] 已安装构建工具(首次需要)
294
-
295
- ### 🚀 快速发布(推荐使用专用构建脚本)
296
-
297
- #### Step 1: 准备版本号
298
-
299
- 编辑 `pyproject.toml`,修改版本号:
300
-
301
- ```toml
302
- [project]
303
- name = "langchain-agentx-python"
304
- version = "0.1.0" # 当前版本为 0.1,发布建议改为 0.1.0
305
- ```
306
-
307
- #### Step 2: 提交代码更改
308
-
309
- ```bash
310
- # 检查状态
311
- git status
312
-
313
- # 提交所有更改
314
- git add .
315
- git commit -m "release: prepare for version 0.1.0"
316
- git push
317
- ```
318
-
319
- #### Step 3: 使用专用构建脚本生成纯净包
320
-
321
- ```bash
322
- # 使用项目专用构建脚本(自动排除测试文件)
323
- bash script/build-wheel.sh
324
- ```
325
-
326
- **构建脚本特性**:
327
- - ✅ 自动排除 140+ 个测试文件
328
- - ✅ 排除 `__pycache__`、`.pytest_cache` 等
329
- - ✅ 验证 wheel 包内容安全性
330
- - ✅ 生成到 `_build/dist/` 目录
331
-
332
- 构建成功后会看到:
333
-
334
- ```
335
- == Wheel content check (no test_* files) ==
336
- wheel: langchain_agentx_python-0.1.0-py3-none-any.whl
337
- py files: 456
338
- bad test-like files: 0
339
- wheel check ok
340
- ```
341
-
342
- #### Step 4: 验证构建产物
343
-
344
- ```bash
345
- # 查看生成的文件
346
- ls -lh _build/dist/
347
-
348
- # 应该看到:
349
- # langchain_agentx_python-0.1.0-py3-none-any.whl
350
- ```
351
-
352
- #### Step 5: 本地测试安装(推荐)
353
-
354
- ```bash
355
- # 创建临时测试环境
356
- python -m venv test_env
357
- source test_env/bin/activate # Linux/macOS
358
- # 或 test_env\Scripts\activate # Windows
359
-
360
- # 安装构建的包
361
- python -m pip install _build/dist/*.whl
362
-
363
- # 验证导入
364
- python -c "from langchain_agentx import create_loop_agent; print('SDK 安装成功')"
365
-
366
- # 清理测试环境
367
- deactivate
368
- rm -rf test_env
369
- ```
370
-
371
- #### Step 6: 发布到 PyPI
372
-
373
- **首次发布需要配置 PyPI 凭证**:
374
-
375
- 1. 注册 PyPI 账号:https://pypi.org/account/register/
376
- 2. 启用双重认证(2FA)
377
- 3. 生成 API Token:https://pypi.org/manage/account/token/
378
- 4. 创建 `~/.pypirc` 配置文件:
379
-
380
- ```bash
381
- cat > ~/.pypirc <<'EOF'
382
- [distutils]
383
- index-servers =
384
- pypi
385
- testpypi
386
-
387
- [pypi]
388
- username = __token__
389
- password = pypi-xxxx你的API_TOKENxxxx
390
-
391
- [testpypi]
392
- username = __token__
393
- password = pypi-xxxx你的TestPyPI_TOKENxxxx
394
- EOF
395
- ```
396
-
397
- **发布到 TestPyPI(推荐先测试)**:
398
-
399
- ```bash
400
- # 上传到测试仓库
401
- python -m twine upload --repository testpypi _build/dist/*
402
-
403
- # 测试安装
404
- python -m pip install --index-url https://test.pypi.org/simple/ langchain-agentx-python==0.1.0
405
- ```
406
-
407
- **发布到正式 PyPI**:
408
-
409
- ```bash
410
- # 上传到正式仓库
411
- python -m twine upload _build/dist/*
412
-
413
- # 验证发布
414
- python -m pip install langchain-agentx-python==0.1.0
415
- ```
416
-
417
- #### Step 7: 打标签并推送(可选但推荐)
418
-
419
- ```bash
420
- # 创建版本标签
421
- git tag v0.1.0
422
-
423
- # 推送标签到远程
424
- git push --tags
425
- ```
426
-
427
- ### 📦 备用方法:使用标准构建工具
428
-
429
- 如果专用构建脚本不可用,可以使用标准方法:
430
-
431
- ```bash
432
- # 安装构建工具
433
- python -m pip install -U build twine
434
-
435
- # 清理旧构建
436
- rm -rf dist/ build/ *.egg-info
437
-
438
- # 构建分发包
439
- python -m build
440
-
441
- # 查看产物
442
- ls -lh dist/
443
-
444
- # 发布
445
- python -m twine upload dist/*
446
- ```
447
-
448
- ### ⚠️ 注意事项
449
-
450
- 1. **版本号格式**:建议使用语义化版本,如 `0.1.0`、`0.2.0` 等
451
- 2. **测试文件排除**:专用构建脚本会自动排除所有测试文件,标准方法需要手动配置
452
- 3. **PyPI 名称**:包名在 PyPI 上显示为 `langchain-agentx-python`
453
- 4. **版本冲突**:如果版本号已存在,上传会失败,需要更新版本号
454
-
455
- ### 🔄 下次发布
456
-
457
- 下次发布时,只需重复上述步骤:
458
-
459
- 1. 更新 `pyproject.toml` 版本号
460
- 2. 提交代码:`git commit && git push`
461
- 3. 构建包:`bash script/build-wheel.sh`
462
- 4. 发布:`python -m twine upload _build/dist/*`
463
- 5. 打标签:`git tag && git push --tags`
464
-
465
- ## 核心功能
466
-
467
- ### Agent Loop 系统
468
- - OpenCode 风格的 LangGraph Agent 实现
469
- - finish_reason 驱动的主动退出机制
470
- - 完全兼容 LangChain 生态
471
-
472
- ### 工具运行时系统
473
- - 跨平台工具执行(Bash、Glob、Grep、Read 等)
474
- - 权限管理和安全控制
475
- - 工具状态隔离和会话管理
476
-
477
- ### 中间件和钩子系统
478
- - 上下文感知的中间件
479
- - before/after 钩子系统
480
- - 性能监控和事件追踪
481
-
482
- ### 配置和工作空间管理
483
- - 统一的工作空间配置
484
- - Agent Home 目录管理
485
- - 跨平台路径处理
486
-
487
- ## 文档
488
-
489
- - **工程指南**:`CLAUDE.md`
490
- - **架构文档**:`docs/architecture/`
491
- - **设计文档**:`docs/design-docs/`
492
- - **开发指南**:`docs/guides/`
493
-
494
- ## 开发
495
-
496
- ### 运行测试
497
-
498
- ```bash
499
- # 安装开发依赖
500
- pip install -e “.[dev]”
501
-
502
- # 运行测试
503
- pytest langchain_agentx/
504
- ```
505
-
506
- ### 代码规范
507
-
508
- 所有代码遵循项目编码规范:`docs/guides/coding-style-guide.html`
509
-
510
- ## 贡献
511
-
512
- 欢迎提交 Issue 和 Pull Request!
513
-
514
- ## 许可证
515
-
516
- Apache License 2.0
1
+ Metadata-Version: 2.1
2
+ Name: langchain-agentx-python
3
+ Version: 0.3.2
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
+ License-File: LICENSE
219
+ Requires-Dist: langgraph<1.2.0,>=1.1.1
220
+ Requires-Dist: langgraph-prebuilt<1.1.0,>=1.0.8
221
+ Requires-Dist: langchain<2.0.0,>=1.2.10
222
+ Requires-Dist: langchain-core<2.0.0,>=1.2.10
223
+ Requires-Dist: langchain-text-splitters>=1.1.0
224
+ Requires-Dist: langchain-anthropic<2.0.0,>=1.3.3
225
+ Requires-Dist: langchain-google-genai<5.0.0,>=4.2.0
226
+ Requires-Dist: langchain-community>=0.4.1
227
+ Requires-Dist: langchain-openai>=1.1.3
228
+ Requires-Dist: openai
229
+ Requires-Dist: tree-sitter==0.21.3
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
+ Requires-Dist: wcmatch
236
+ Requires-Dist: faiss-cpu
237
+ Requires-Dist: tiktoken
238
+ Requires-Dist: google-genai==1.61.0
239
+ Requires-Dist: google-auth==2.48.0
240
+ 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
+ Requires-Dist: portalocker<4,>=2.8.2
248
+ Requires-Dist: pyyaml
249
+ Requires-Dist: urllib3<3,>=1.26
250
+ Requires-Dist: charset-normalizer<4,>=2
251
+ Provides-Extra: dev
252
+ Requires-Dist: pytest>=8; extra == "dev"
253
+ Requires-Dist: pytest-asyncio>=0.24; extra == "dev"
254
+
255
+ # langchain-agentx-python
256
+
257
+ `langchain-agentx-python` 是一组基于 LangChain / LangGraph 的”代码智能体”工具函数,帮助你在自己的项目里快速集成:
258
+
259
+ - OpenCode 风格的 LangGraph Agent(代码理解、重构、分析)
260
+ - 上下文感知中间件、性能监控等基础设施
261
+ - 完整的工具运行时系统和权限管理
262
+
263
+ ## 安装
264
+
265
+ 发布到 PyPI 后,你可以直接通过 pip 安装:
266
+
267
+ ```bash
268
+ pip install langchain-agentx-python
269
+ ```
270
+
271
+ ## 快速上手
272
+
273
+ ```python
274
+ from langchain_agentx import create_loop_agent
275
+
276
+ # 这里省略 LangChain / LangGraph 相关模型与工具配置
277
+ agent = create_loop_agent(...)
278
+ ```
279
+
280
+ 具体的能力和使用方式可以参考源码中的 docstring 以及各模块下的 `README.md`。
281
+
282
+ ## 发布新版本流程
283
+
284
+ > **重要特性**:本项目的构建脚本会**自动排除所有测试文件**,生成纯净的生产包。当前有 140+ 个测试文件在构建时会被自动过滤,确保发布的包轻量、干净。
285
+ >
286
+ > 以下命令默认在项目根目录并已激活 Python 虚拟环境。
287
+
288
+ ### 📋 发布前检查清单
289
+
290
+ - [ ] 代码已提交到 Git 仓库
291
+ - [ ] 版本号已更新(`pyproject.toml`)
292
+ - [ ] 工作区干净(`git status` 检查)
293
+ - [ ] 已安装构建工具(首次需要)
294
+
295
+ ### 🚀 快速发布(推荐使用专用构建脚本)
296
+
297
+ #### Step 1: 准备版本号
298
+
299
+ 编辑 `pyproject.toml`,修改版本号:
300
+
301
+ ```toml
302
+ [project]
303
+ name = "langchain-agentx-python"
304
+ version = "0.1.0" # 当前版本为 0.1,发布建议改为 0.1.0
305
+ ```
306
+
307
+ #### Step 2: 提交代码更改
308
+
309
+ ```bash
310
+ # 检查状态
311
+ git status
312
+
313
+ # 提交所有更改
314
+ git add .
315
+ git commit -m "release: prepare for version 0.1.0"
316
+ git push
317
+ ```
318
+
319
+ #### Step 3: 使用专用构建脚本生成纯净包
320
+
321
+ ```bash
322
+ # 使用项目专用构建脚本(自动排除测试文件)
323
+ bash script/build-wheel.sh
324
+ ```
325
+
326
+ **构建脚本特性**:
327
+ - ✅ 自动排除 140+ 个测试文件
328
+ - ✅ 排除 `__pycache__`、`.pytest_cache` 等
329
+ - ✅ 验证 wheel 包内容安全性
330
+ - ✅ 生成到 `_build/dist/` 目录
331
+
332
+ 构建成功后会看到:
333
+
334
+ ```
335
+ == Wheel content check (no test_* files) ==
336
+ wheel: langchain_agentx_python-0.1.0-py3-none-any.whl
337
+ py files: 456
338
+ bad test-like files: 0
339
+ wheel check ok
340
+ ```
341
+
342
+ #### Step 4: 验证构建产物
343
+
344
+ ```bash
345
+ # 查看生成的文件
346
+ ls -lh _build/dist/
347
+
348
+ # 应该看到:
349
+ # langchain_agentx_python-0.1.0-py3-none-any.whl
350
+ ```
351
+
352
+ #### Step 5: 本地测试安装(推荐)
353
+
354
+ ```bash
355
+ # 创建临时测试环境
356
+ python -m venv test_env
357
+ source test_env/bin/activate # Linux/macOS
358
+ # 或 test_env\Scripts\activate # Windows
359
+
360
+ # 安装构建的包
361
+ python -m pip install _build/dist/*.whl
362
+
363
+ # 验证导入
364
+ python -c "from langchain_agentx import create_loop_agent; print('SDK 安装成功')"
365
+
366
+ # 清理测试环境
367
+ deactivate
368
+ rm -rf test_env
369
+ ```
370
+
371
+ #### Step 6: 发布到 PyPI
372
+
373
+ **首次发布需要配置 PyPI 凭证**:
374
+
375
+ 1. 注册 PyPI 账号:https://pypi.org/account/register/
376
+ 2. 启用双重认证(2FA)
377
+ 3. 生成 API Token:https://pypi.org/manage/account/token/
378
+ 4. 创建 `~/.pypirc` 配置文件:
379
+
380
+ ```bash
381
+ cat > ~/.pypirc <<'EOF'
382
+ [distutils]
383
+ index-servers =
384
+ pypi
385
+ testpypi
386
+
387
+ [pypi]
388
+ username = __token__
389
+ password = pypi-xxxx你的API_TOKENxxxx
390
+
391
+ [testpypi]
392
+ username = __token__
393
+ password = pypi-xxxx你的TestPyPI_TOKENxxxx
394
+ EOF
395
+ ```
396
+
397
+ **发布到 TestPyPI(推荐先测试)**:
398
+
399
+ ```bash
400
+ # 上传到测试仓库
401
+ python -m twine upload --repository testpypi _build/dist/*
402
+
403
+ # 测试安装
404
+ python -m pip install --index-url https://test.pypi.org/simple/ langchain-agentx-python==0.1.0
405
+ ```
406
+
407
+ **发布到正式 PyPI**:
408
+
409
+ ```bash
410
+ # 上传到正式仓库
411
+ python -m twine upload _build/dist/*
412
+
413
+ # 验证发布
414
+ python -m pip install langchain-agentx-python==0.1.0
415
+ ```
416
+
417
+ #### Step 7: 打标签并推送(可选但推荐)
418
+
419
+ ```bash
420
+ # 创建版本标签
421
+ git tag v0.1.0
422
+
423
+ # 推送标签到远程
424
+ git push --tags
425
+ ```
426
+
427
+ ### 📦 备用方法:使用标准构建工具
428
+
429
+ 如果专用构建脚本不可用,可以使用标准方法:
430
+
431
+ ```bash
432
+ # 安装构建工具
433
+ python -m pip install -U build twine
434
+
435
+ # 清理旧构建
436
+ rm -rf dist/ build/ *.egg-info
437
+
438
+ # 构建分发包
439
+ python -m build
440
+
441
+ # 查看产物
442
+ ls -lh dist/
443
+
444
+ # 发布
445
+ python -m twine upload dist/*
446
+ ```
447
+
448
+ ### ⚠️ 注意事项
449
+
450
+ 1. **版本号格式**:建议使用语义化版本,如 `0.1.0`、`0.2.0` 等
451
+ 2. **测试文件排除**:专用构建脚本会自动排除所有测试文件,标准方法需要手动配置
452
+ 3. **PyPI 名称**:包名在 PyPI 上显示为 `langchain-agentx-python`
453
+ 4. **版本冲突**:如果版本号已存在,上传会失败,需要更新版本号
454
+
455
+ ### 🔄 下次发布
456
+
457
+ 下次发布时,只需重复上述步骤:
458
+
459
+ 1. 更新 `pyproject.toml` 版本号
460
+ 2. 提交代码:`git commit && git push`
461
+ 3. 构建包:`bash script/build-wheel.sh`
462
+ 4. 发布:`python -m twine upload _build/dist/*`
463
+ 5. 打标签:`git tag && git push --tags`
464
+
465
+ ## 核心功能
466
+
467
+ ### Agent Loop 系统
468
+ - OpenCode 风格的 LangGraph Agent 实现
469
+ - finish_reason 驱动的主动退出机制
470
+ - 完全兼容 LangChain 生态
471
+
472
+ ### 工具运行时系统
473
+ - 跨平台工具执行(Bash、Glob、Grep、Read 等)
474
+ - 权限管理和安全控制
475
+ - 工具状态隔离和会话管理
476
+
477
+ ### 中间件和钩子系统
478
+ - 上下文感知的中间件
479
+ - before/after 钩子系统
480
+ - 性能监控和事件追踪
481
+
482
+ ### 配置和工作空间管理
483
+ - 统一的工作空间配置
484
+ - Agent Home 目录管理
485
+ - 跨平台路径处理
486
+
487
+ ## 文档
488
+
489
+ - **工程指南**:`CLAUDE.md`
490
+ - **架构文档**:`docs/architecture/`
491
+ - **设计文档**:`docs/design-docs/`
492
+ - **开发指南**:`docs/guides/`
493
+
494
+ ## 开发
495
+
496
+ ### 运行测试
497
+
498
+ ```bash
499
+ # 安装开发依赖
500
+ pip install -e “.[dev]”
501
+
502
+ # 运行测试
503
+ pytest langchain_agentx/
504
+ ```
505
+
506
+ ### 代码规范
507
+
508
+ 所有代码遵循项目编码规范:`docs/guides/coding-style-guide.html`
509
+
510
+ ## 贡献
511
+
512
+ 欢迎提交 Issue 和 Pull Request!
513
+
514
+ ## 许可证
515
+
516
+ Apache License 2.0
@@ -88,7 +88,7 @@ langchain_agentx/loop/subagent/graph.py,sha256=fBBLWwLcLGakaucRG2pFuoMTePtdZMuES
88
88
  langchain_agentx/loop/subagent/orchestrator.py,sha256=bdv0bPGEqKOerMe34TyIT6W8-eenXSdh9SHiqith2c8,14954
89
89
  langchain_agentx/loop/subagent/progress.py,sha256=Kjags7CFEFWSv1f1uY3kpWbft_wsvWQe0blkHIqO8jM,918
90
90
  langchain_agentx/loop/subagent/prompt.py,sha256=p7RgzibNfEJdfX8nBnZGEwQLa3_EgOn4E56T9MBRIEc,1722
91
- langchain_agentx/loop/subagent/runner.py,sha256=gwgL5HMSES7akbOQzzF4ux4bNf7tC8UTG7SvIYBxUMA,17892
91
+ langchain_agentx/loop/subagent/runner.py,sha256=xqu-EQjdkZQkeQIJ3vUZDu1ik2d_nES9r9lsgy3kJvU,17927
92
92
  langchain_agentx/loop/subagent/transcript.py,sha256=AAefHKjI0BFQwMmj0CMR6StaDtK8y9cVSxdpmf34EDI,6103
93
93
  langchain_agentx/memory/__init__.py,sha256=Vd2ykwjYHSKWo6Tfx0CC6GJI54LBn2K1RRVo4IoDz3Q,49
94
94
  langchain_agentx/memory/instruction/__init__.py,sha256=ucQQMDX9B1h_FbsnX5D9fd-UwIrMdaCLl6Z03TOAkfQ,292
@@ -125,7 +125,7 @@ langchain_agentx/observability/evaluation/checkers/exit_quality.py,sha256=kcV2VY
125
125
  langchain_agentx/observability/evaluation/checkers/session_memory.py,sha256=jYDdIDUAhYktggsymkBADBunrSbxdC66veM-tZt3a3s,1579
126
126
  langchain_agentx/observability/evaluation/checkers/tool_behavior.py,sha256=o1nH8SeE9145H7ej4naahRcmgw_9st21dY1W3IQa2sg,2097
127
127
  langchain_agentx/observability/events/__init__.py,sha256=C978cIX0qelNLpLCzgqYwv5RHRq49DIcv8daqevu5Nc,356
128
- langchain_agentx/observability/events/langchain_agentx_event_adapter.py,sha256=DS1wG_Zzo824I2bJyj6GxQSjfqQbdL1-T26Jbn_9z_s,32936
128
+ langchain_agentx/observability/events/langchain_agentx_event_adapter.py,sha256=8OfnThpnMP82ZFeRQAI1guwhAwdInGmZHLRypSaIoJk,34786
129
129
  langchain_agentx/observability/logging/__init__.py,sha256=mDtPOxYZZFx8ezQCSwnmnfrdVi305DeJFzThwHBtnrY,508
130
130
  langchain_agentx/observability/logging/debug_burst.py,sha256=kLqdVcvsmP_y7-RcsiEqNZT15E7coDqS5UFP6Mc0vUY,3035
131
131
  langchain_agentx/observability/logging/logging_config.py,sha256=yRyKmnydJtzy1wFcyfD2tOmYBFYJsdXTuVkXR2Kr-r8,5652
@@ -444,8 +444,8 @@ langchain_agentx/workspace/config.py,sha256=K2XaAvlkBr5aA2mgH5zNxfAZg-LGmwwDVNcE
444
444
  langchain_agentx/workspace/path_key_normalizer.py,sha256=ICk9uGiiNFH-zaXJG3_vx91uOpgWmgOPIjJoSYevKOc,1113
445
445
  langchain_agentx/workspace/resolver.py,sha256=9-wRLLIC7KJCqu9i8nAL-gJ9lIWsTPOpjnZnZEGLunk,6281
446
446
  langchain_agentx/workspace/validators.py,sha256=tQt-6TOcL8Fw7Ig5ebA9S7vGWh1rby920eFW6x8Tk9E,1439
447
- langchain_agentx_python-0.3.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
448
- langchain_agentx_python-0.3.0.dist-info/METADATA,sha256=95aQuucSigmLmWm6WXkaNIN3qtP_2iad6f1NMSo71Tg,21348
449
- langchain_agentx_python-0.3.0.dist-info/WHEEL,sha256=51RkbunBAw4BWsgaQWTpPhg4Diwp3c9P5iaLk67Hdtg,92
450
- langchain_agentx_python-0.3.0.dist-info/top_level.txt,sha256=Ge284pniNt8xea0OLk2o9o32GqVpDhOYk20fwE-0xxA,17
451
- langchain_agentx_python-0.3.0.dist-info/RECORD,,
447
+ langchain_agentx_python-0.3.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
448
+ langchain_agentx_python-0.3.2.dist-info/METADATA,sha256=TVN9m4gC_J5zfoi0NF5H_UcBWpMPHls6q9Om8wJdzkU,20832
449
+ langchain_agentx_python-0.3.2.dist-info/WHEEL,sha256=51RkbunBAw4BWsgaQWTpPhg4Diwp3c9P5iaLk67Hdtg,92
450
+ langchain_agentx_python-0.3.2.dist-info/top_level.txt,sha256=Ge284pniNt8xea0OLk2o9o32GqVpDhOYk20fwE-0xxA,17
451
+ langchain_agentx_python-0.3.2.dist-info/RECORD,,