amsdal_langgraph 0.1.1__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.
Files changed (30) hide show
  1. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/PKG-INFO +2 -2
  2. amsdal_langgraph-0.2.0/amsdal_langgraph/__about__.py +1 -0
  3. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/app.py +1 -1
  4. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/checkpoint.py +4 -4
  5. amsdal_langgraph-0.2.0/change-logs.md +10 -0
  6. amsdal_langgraph-0.2.0/latest-changelogs.md +3 -0
  7. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/pyproject.toml +1 -1
  8. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/uv.lock +1311 -1176
  9. amsdal_langgraph-0.1.1/amsdal_langgraph/__about__.py +0 -1
  10. amsdal_langgraph-0.1.1/change-logs.md +0 -5
  11. amsdal_langgraph-0.1.1/latest-changelogs.md +0 -5
  12. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/.amsdal/.environment +0 -0
  13. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/.amsdal-cli +0 -0
  14. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/.github/workflows/ci.yml +0 -0
  15. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/.github/workflows/release.yml +0 -0
  16. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/.github/workflows/tag_check.yml +0 -0
  17. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/.gitignore +0 -0
  18. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/README.md +0 -0
  19. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/Third-Party Materials - AMSDAL Dependencies - License Notices.md +0 -0
  20. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/__init__.py +0 -0
  21. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/migrations/0000_initial.py +0 -0
  22. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/models/__init__.py +0 -0
  23. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/models/checkpoint.py +0 -0
  24. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/models/checkpoint_writes.py +0 -0
  25. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/py.typed +0 -0
  26. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/amsdal_langgraph/utils.py +0 -0
  27. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/config.yml +0 -0
  28. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/license_check.py +0 -0
  29. {amsdal_langgraph-0.1.1 → amsdal_langgraph-0.2.0}/tests/conftest.py +0 -0
  30. {amsdal_langgraph-0.1.1 → 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.1.1
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.5.14
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'
@@ -5,4 +5,4 @@ class AmsdalLangGraphAppConfig(AppConfig):
5
5
  name = 'amsdal_langgraph'
6
6
  verbose_name = 'AMSDAL Workflow Plugin'
7
7
 
8
- def on_ready(self) -> None: ...
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() # type: ignore[misc]
521
+ await checkpoint_obj.asave()
522
522
  else:
523
- await checkpoint_obj.asave(force_insert=True) # type: ignore[misc]
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() # type: ignore[misc]
575
+ await write_obj.asave()
576
576
  else:
577
- await write_obj.asave(force_insert=True) # type: ignore[misc]
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
@@ -0,0 +1,3 @@
1
+ ## [v0.2.0](https://pypi.org/project/amsdal_langgraph/0.2.0/) - 2026-02-06
2
+
3
+ - Upgrade to amsdal v0.6.0
@@ -15,7 +15,7 @@ description = "amsdal_langgraph plugin for AMSDAL Framework"
15
15
  readme = "README.md"
16
16
  requires-python = ">=3.11"
17
17
  dependencies = [
18
- "amsdal[cli]>=0.5.14",
18
+ "amsdal[cli]>=0.6.0",
19
19
  "langgraph>=0.6.8",
20
20
  ]
21
21