langgraph-runtime-inmem 0.21.0__tar.gz → 0.21.1__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 (16) hide show
  1. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/PKG-INFO +1 -1
  2. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/__init__.py +1 -1
  3. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/ops.py +4 -0
  4. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/.gitignore +0 -0
  5. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/Makefile +0 -0
  6. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/README.md +0 -0
  7. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/checkpoint.py +0 -0
  8. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/database.py +0 -0
  9. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/inmem_stream.py +0 -0
  10. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/lifespan.py +0 -0
  11. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/metrics.py +0 -0
  12. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/queue.py +0 -0
  13. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/retry.py +0 -0
  14. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/langgraph_runtime_inmem/store.py +0 -0
  15. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/pyproject.toml +0 -0
  16. {langgraph_runtime_inmem-0.21.0 → langgraph_runtime_inmem-0.21.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-runtime-inmem
3
- Version: 0.21.0
3
+ Version: 0.21.1
4
4
  Summary: Inmem implementation for the LangGraph API server.
5
5
  Author-email: Will Fu-Hinthorn <will@langchain.dev>
6
6
  License: Elastic-2.0
@@ -9,7 +9,7 @@ from langgraph_runtime_inmem import (
9
9
  store,
10
10
  )
11
11
 
12
- __version__ = "0.21.0"
12
+ __version__ = "0.21.1"
13
13
  __all__ = [
14
14
  "ops",
15
15
  "database",
@@ -1437,6 +1437,7 @@ class Threads(Authenticated):
1437
1437
  thread_config,
1438
1438
  checkpointer=checkpointer,
1439
1439
  store=(await get_store()),
1440
+ is_for_execution=False,
1440
1441
  ) as graph:
1441
1442
  result = await graph.aget_state(config, subgraphs=subgraphs)
1442
1443
  if (
@@ -1532,6 +1533,7 @@ class Threads(Authenticated):
1532
1533
  thread_config,
1533
1534
  checkpointer=checkpointer,
1534
1535
  store=(await get_store()),
1536
+ is_for_execution=False,
1535
1537
  ) as graph:
1536
1538
  update_config = config.copy()
1537
1539
  update_config["configurable"] = {
@@ -1634,6 +1636,7 @@ class Threads(Authenticated):
1634
1636
  thread_config,
1635
1637
  checkpointer=Checkpointer(),
1636
1638
  store=(await get_store()),
1639
+ is_for_execution=False,
1637
1640
  ) as graph:
1638
1641
  next_config = await graph.abulk_update_state(
1639
1642
  config,
@@ -1734,6 +1737,7 @@ class Threads(Authenticated):
1734
1737
  Checkpointer, conn, unpack_hook=_msgpack_ext_hook_to_json
1735
1738
  ),
1736
1739
  store=(await get_store()),
1740
+ is_for_execution=False,
1737
1741
  ) as graph:
1738
1742
  # Convert before parameter if it's a string
1739
1743
  before_param = (