sycommon-python-lib 0.2.7a27__py3-none-any.whl → 0.2.7a28__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.
- sycommon/agent/deep_agent.py +6 -5
- {sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/METADATA +6 -6
- {sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/RECORD +6 -6
- {sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/WHEEL +0 -0
- {sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/entry_points.txt +0 -0
- {sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/top_level.txt +0 -0
sycommon/agent/deep_agent.py
CHANGED
|
@@ -97,11 +97,12 @@ def _patch_agent_streaming(agent):
|
|
|
97
97
|
删除此函数及调用即可。
|
|
98
98
|
"""
|
|
99
99
|
# 已验证兼容的版本范围(超出仅警告, 不阻断 —— 闭包强校验是真正的安全网)
|
|
100
|
-
# 1.3.10/1.3.11 + langchain_core 1.4.8 经实测确认闭包结构兼容
|
|
101
|
-
#
|
|
102
|
-
#
|
|
103
|
-
# ainvoke + 不传 config,
|
|
104
|
-
|
|
100
|
+
# 1.3.10/1.3.11/1.3.12 + langchain_core 1.4.8/1.4.9 经实测确认闭包结构兼容
|
|
101
|
+
# (factory.py 在 1.3.11→1.3.12 字节级无变化: amodel_node freevars 含
|
|
102
|
+
# _execute_model_async, 内层 freevars 含 _get_bound_model/_handle_model_output),
|
|
103
|
+
# patch 正常生效。1.3.12 的 _execute_model_async 仍为 ainvoke + 不传 config,
|
|
104
|
+
# 官方未修复, 补丁仍需保留。
|
|
105
|
+
_VERIFIED = {"langchain": "1.3.12", "langchain_core": "1.4.9"}
|
|
105
106
|
try:
|
|
106
107
|
import langchain as _lc
|
|
107
108
|
import langchain_core as _lcc
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sycommon-python-lib
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7a28
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -14,10 +14,10 @@ Requires-Dist: elasticsearch==9.4.1
|
|
|
14
14
|
Requires-Dist: fastapi==0.139.0
|
|
15
15
|
Requires-Dist: jinja2==3.1.6
|
|
16
16
|
Requires-Dist: kafka-python==3.0.7
|
|
17
|
-
Requires-Dist: langchain==1.3.
|
|
18
|
-
Requires-Dist: langchain-core==1.4.
|
|
19
|
-
Requires-Dist: langchain-openai==1.3.
|
|
20
|
-
Requires-Dist: langfuse==4.13.
|
|
17
|
+
Requires-Dist: langchain==1.3.12
|
|
18
|
+
Requires-Dist: langchain-core==1.4.9
|
|
19
|
+
Requires-Dist: langchain-openai==1.3.4
|
|
20
|
+
Requires-Dist: langfuse==4.13.2
|
|
21
21
|
Requires-Dist: langgraph==1.2.8
|
|
22
22
|
Requires-Dist: langgraph-checkpoint-postgres==3.1.0
|
|
23
23
|
Requires-Dist: langgraph-checkpoint-redis==0.5.0
|
|
@@ -36,7 +36,7 @@ Requires-Dist: sentry-sdk[fastapi]==2.64.0
|
|
|
36
36
|
Requires-Dist: sqlalchemy[asyncio]==2.0.51
|
|
37
37
|
Requires-Dist: starlette[full]==1.3.1
|
|
38
38
|
Requires-Dist: tiktoken==0.13.0
|
|
39
|
-
Requires-Dist: uvicorn==0.
|
|
39
|
+
Requires-Dist: uvicorn==0.51.0
|
|
40
40
|
Requires-Dist: wecom-aibot-python-sdk==1.0.2
|
|
41
41
|
Requires-Dist: twine==6.2.0
|
|
42
42
|
Requires-Dist: minio==7.2.20
|
|
@@ -136,7 +136,7 @@ sycommon/services.py,sha256=iC73h5d5bpNqW2qjRUGODZFhUhcwvKVnKUFLKJlBSq0,25322
|
|
|
136
136
|
sycommon/agent/__init__.py,sha256=mxceAeUifQ-DKvWp7ZEJIFlmOCb5wpYHPGQw3rwEN8I,4378
|
|
137
137
|
sycommon/agent/agent_manager.py,sha256=UhhaekEumT7g4v_Z1UB4jTp13X0n8M8erYaQdkGGWkA,13620
|
|
138
138
|
sycommon/agent/chat_events.py,sha256=t7qWa6OrIWLfqtd1AnqaVP67QWkn1JxpCBTZYQpoLuM,14226
|
|
139
|
-
sycommon/agent/deep_agent.py,sha256=
|
|
139
|
+
sycommon/agent/deep_agent.py,sha256=XdKpBC5ik-GHU2PyZ4KOeSF3EB2-A-r0SmAV3XJN7lI,74799
|
|
140
140
|
sycommon/agent/multi_agent_team.py,sha256=RFXHB9q5j1_2B-MDZVRTcbXHdEpRIXpAhrm1yroUDYI,30460
|
|
141
141
|
sycommon/agent/summarization_utils.py,sha256=bqZRFqSekNGlv2mYQPaT_s2QNA5VDTKddi2Va_SkHWc,18376
|
|
142
142
|
sycommon/agent/acp/__init__.py,sha256=vQGMQYAA5-ZaejYmDZ4r4Fklqs17qH3cDXQ5pZlwj-0,1844
|
|
@@ -308,8 +308,8 @@ sycommon/tools/syemail.py,sha256=BDFhgf7WDOQeTcjxJEQdu0dQhnHFPO_p3eI0-Ni3LhQ,561
|
|
|
308
308
|
sycommon/tools/timing.py,sha256=OiiE7P07lRoMzX9kzb8sZU9cDb0zNnqIlY5pWqHcnkY,2064
|
|
309
309
|
sycommon/xxljob/__init__.py,sha256=7eoBlQxv-B39IfRSCY2bkqdGYs1QRe1umAWd88VMEEM,86
|
|
310
310
|
sycommon/xxljob/xxljob_service.py,sha256=1yifwIBNGsCIxLnQjHKiBlbsigc_zvPH-dMTZcNxe-Q,7649
|
|
311
|
-
sycommon_python_lib-0.2.
|
|
312
|
-
sycommon_python_lib-0.2.
|
|
313
|
-
sycommon_python_lib-0.2.
|
|
314
|
-
sycommon_python_lib-0.2.
|
|
315
|
-
sycommon_python_lib-0.2.
|
|
311
|
+
sycommon_python_lib-0.2.7a28.dist-info/METADATA,sha256=ZwQSR_5KtZWzfjtCNP0r4LmgCQ4rt0_MpssHyLnqMPM,7962
|
|
312
|
+
sycommon_python_lib-0.2.7a28.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
313
|
+
sycommon_python_lib-0.2.7a28.dist-info/entry_points.txt,sha256=gsR4SssKxDWjRU8ggidzNcdMXDPRSKRS7UaGyNP84Qg,92
|
|
314
|
+
sycommon_python_lib-0.2.7a28.dist-info/top_level.txt,sha256=RgphKrg7nJyZ7irJqbxFr-5H2LUYTvI7ivoWZH2hcD0,29
|
|
315
|
+
sycommon_python_lib-0.2.7a28.dist-info/RECORD,,
|
|
File without changes
|
{sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{sycommon_python_lib-0.2.7a27.dist-info → sycommon_python_lib-0.2.7a28.dist-info}/top_level.txt
RENAMED
|
File without changes
|