amsdal_langgraph 0.1.0__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/PKG-INFO +2 -2
- amsdal_langgraph-0.2.0/amsdal_langgraph/__about__.py +1 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/app.py +2 -2
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/checkpoint.py +4 -4
- amsdal_langgraph-0.2.0/change-logs.md +10 -0
- amsdal_langgraph-0.2.0/latest-changelogs.md +3 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/pyproject.toml +1 -1
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/uv.lock +1311 -1176
- amsdal_langgraph-0.1.0/amsdal_langgraph/__about__.py +0 -1
- amsdal_langgraph-0.1.0/change-logs.md +0 -5
- amsdal_langgraph-0.1.0/latest-changelogs.md +0 -5
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/.amsdal/.environment +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/.amsdal-cli +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/.github/workflows/ci.yml +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/.github/workflows/release.yml +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/.github/workflows/tag_check.yml +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/.gitignore +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/README.md +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/Third-Party Materials - AMSDAL Dependencies - License Notices.md +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/__init__.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/migrations/0000_initial.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/models/__init__.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/models/checkpoint.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/models/checkpoint_writes.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/py.typed +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/amsdal_langgraph/utils.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/config.yml +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/license_check.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/tests/conftest.py +0 -0
- {amsdal_langgraph-0.1.0 → amsdal_langgraph-0.2.0}/tests/test_checkpoint.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: amsdal_langgraph
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: amsdal_langgraph plugin for AMSDAL Framework
|
|
5
5
|
Requires-Python: >=3.11
|
|
6
|
-
Requires-Dist: amsdal[cli]>=0.
|
|
6
|
+
Requires-Dist: amsdal[cli]>=0.6.0
|
|
7
7
|
Requires-Dist: langgraph>=0.6.8
|
|
8
8
|
Provides-Extra: openai
|
|
9
9
|
Requires-Dist: langchain[openai]; extra == 'openai'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.2.0'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
from amsdal.contrib.app_config import AppConfig
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
class
|
|
4
|
+
class AmsdalLangGraphAppConfig(AppConfig):
|
|
5
5
|
name = 'amsdal_langgraph'
|
|
6
6
|
verbose_name = 'AMSDAL Workflow Plugin'
|
|
7
7
|
|
|
8
|
-
def
|
|
8
|
+
def on_setup(self) -> None: ...
|
|
@@ -518,9 +518,9 @@ class AmsdalCheckpointSaver(BaseCheckpointSaver[str]):
|
|
|
518
518
|
.count()
|
|
519
519
|
.aexecute()
|
|
520
520
|
):
|
|
521
|
-
await checkpoint_obj.asave()
|
|
521
|
+
await checkpoint_obj.asave()
|
|
522
522
|
else:
|
|
523
|
-
await checkpoint_obj.asave(force_insert=True)
|
|
523
|
+
await checkpoint_obj.asave(force_insert=True)
|
|
524
524
|
|
|
525
525
|
return {
|
|
526
526
|
'configurable': {
|
|
@@ -572,9 +572,9 @@ class AmsdalCheckpointSaver(BaseCheckpointSaver[str]):
|
|
|
572
572
|
.aexecute()
|
|
573
573
|
):
|
|
574
574
|
if _replace:
|
|
575
|
-
await write_obj.asave()
|
|
575
|
+
await write_obj.asave()
|
|
576
576
|
else:
|
|
577
|
-
await write_obj.asave(force_insert=True)
|
|
577
|
+
await write_obj.asave(force_insert=True)
|
|
578
578
|
|
|
579
579
|
async def adelete_thread(self, thread_id: str) -> None:
|
|
580
580
|
"""Delete a thread asynchronously.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
## [v0.2.0](https://pypi.org/project/amsdal_langgraph/0.2.0/) - 2026-02-06
|
|
2
|
+
|
|
3
|
+
- Upgrade to amsdal v0.6.0
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
## [v0.1.0](https://pypi.org/project/amsdal_langgraph/0.1.0/) - 2025-10-15
|
|
7
|
+
|
|
8
|
+
### LangGraph checkpoint saver
|
|
9
|
+
|
|
10
|
+
- Implemented AmsdalCheckpointSaver
|