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.
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/PKG-INFO +1 -1
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/__init__.py +1 -1
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/routes.py +22 -20
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/.gitignore +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/Makefile +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/README.md +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/_persistence.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/checkpoint.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/database.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/inmem_stream.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/lifespan.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/metrics.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/ops.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/queue.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/retry.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/langgraph_runtime_inmem/store.py +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/pyproject.toml +0 -0
- {langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/uv.lock +0 -0
|
@@ -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
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langgraph_runtime_inmem-0.32.0.dev20 → langgraph_runtime_inmem-0.32.0.dev22}/pyproject.toml
RENAMED
|
File without changes
|
|
File without changes
|