langgraph-runtime-inmem 0.32.0.dev20__tar.gz → 0.32.0.dev22__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 (18) hide show
  1. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/PKG-INFO +1 -1
  2. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/__init__.py +1 -1
  3. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/routes.py +22 -20
  4. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/.gitignore +0 -0
  5. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/Makefile +0 -0
  6. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/README.md +0 -0
  7. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/_persistence.py +0 -0
  8. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/checkpoint.py +0 -0
  9. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/database.py +0 -0
  10. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/inmem_stream.py +0 -0
  11. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/lifespan.py +0 -0
  12. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/metrics.py +0 -0
  13. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/ops.py +0 -0
  14. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/queue.py +0 -0
  15. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/retry.py +0 -0
  16. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/store.py +0 -0
  17. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/pyproject.toml +0 -0
  18. {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-runtime-inmem
3
- Version: 0.32.0.dev20
3
+ Version: 0.32.0.dev22
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
@@ -10,7 +10,7 @@ from langgraph_runtime_inmem import (
10
10
  store,
11
11
  )
12
12
 
13
- __version__ = "0.32.0.dev20"
13
+ __version__ = "0.32.0.dev22"
14
14
  __all__ = [
15
15
  "ops",
16
16
  "database",
@@ -386,26 +386,28 @@ def get_internal_routes():
386
386
 
387
387
  async def stream_deploy_logs(request: ApiRequest):
388
388
  """SSE stream of buffered deploy events.
389
-
390
- Each event carries a monotonic ``id``; clients can resume after a
391
- disconnect by passing it back via the standard ``Last-Event-ID``
392
- header (sent automatically by ``EventSource`` on auto-reconnect) or
393
- a ``last_event_id`` query parameter (for explicit resume on a fresh
394
- connection, since browsers don't expose a way to set the header on
395
- ``new EventSource``).
396
-
397
- Events on this stream:
398
-
399
- * ``log`` ``{message, level}``. ``level`` is one of ``log``, ``info``,
400
- ``warn``, ``note``, ``error``, ``status_change``, ``status_url``
401
- (CLI-side severity), letting the frontend color or icon lines.
402
- * ``step`` ``{event, step, message, ...}`` from the CLI.
403
- * ``result`` ``{event, status, deployment_id, message, url?, status_url?}``
404
- carrying the final outcome and dashboard/app URLs without a
405
- follow-up GET.
406
- * ``upload_progress`` ``{event, size_mb, pct}`` during source archive
407
- upload.
408
- * ``done`` / ``error`` terminal markers with ``{exit_code}``.
389
+ ---
390
+ summary: SSE stream of buffered deploy events.
391
+ description: |
392
+ Each event carries a monotonic ``id``; clients can resume after a
393
+ disconnect by passing it back via the standard ``Last-Event-ID``
394
+ header (sent automatically by ``EventSource`` on auto-reconnect) or
395
+ a ``last_event_id`` query parameter (for explicit resume on a fresh
396
+ connection, since browsers don't expose a way to set the header on
397
+ ``new EventSource``).
398
+
399
+ Events on this stream:
400
+
401
+ * ``log`` — ``{message, level}``. ``level`` is one of ``log``, ``info``,
402
+ ``warn``, ``note``, ``error``, ``status_change``, ``status_url``
403
+ (CLI-side severity), letting the frontend color or icon lines.
404
+ * ``step`` ``{event, step, message, ...}`` from the CLI.
405
+ * ``result`` — ``{event, status, deployment_id, message, url?, status_url?}``
406
+ carrying the final outcome and dashboard/app URLs without a
407
+ follow-up GET.
408
+ * ``upload_progress`` ``{event, size_mb, pct}`` during source archive
409
+ upload.
410
+ * ``done`` / ``error`` — terminal markers with ``{exit_code}``.
409
411
  """
410
412
  if err := _check_deploy_origin(request):
411
413
  return err