langgraph-runtime-inmem 0.17.0__py3-none-any.whl → 0.17.1__py3-none-any.whl
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/__init__.py +1 -1
- langgraph_runtime_inmem/ops.py +5 -0
- {langgraph_runtime_inmem-0.17.0.dist-info → langgraph_runtime_inmem-0.17.1.dist-info}/METADATA +1 -1
- {langgraph_runtime_inmem-0.17.0.dist-info → langgraph_runtime_inmem-0.17.1.dist-info}/RECORD +5 -5
- {langgraph_runtime_inmem-0.17.0.dist-info → langgraph_runtime_inmem-0.17.1.dist-info}/WHEEL +0 -0
langgraph_runtime_inmem/ops.py
CHANGED
|
@@ -248,6 +248,8 @@ class Assistants(Authenticated):
|
|
|
248
248
|
description: str | None = None,
|
|
249
249
|
) -> AsyncIterator[Assistant]:
|
|
250
250
|
"""Insert an assistant."""
|
|
251
|
+
from langgraph_api.graph import GRAPHS
|
|
252
|
+
|
|
251
253
|
assistant_id = _ensure_uuid(assistant_id)
|
|
252
254
|
metadata = metadata if metadata is not None else {}
|
|
253
255
|
filters = await Assistants.handle_event(
|
|
@@ -269,6 +271,9 @@ class Assistants(Authenticated):
|
|
|
269
271
|
detail="Cannot specify both configurable and context. Prefer setting context alone. Context was introduced in LangGraph 0.6.0 and is the long term planned replacement for configurable.",
|
|
270
272
|
)
|
|
271
273
|
|
|
274
|
+
if graph_id not in GRAPHS:
|
|
275
|
+
raise HTTPException(status_code=404, detail=f"Graph {graph_id} not found")
|
|
276
|
+
|
|
272
277
|
# Keep config and context up to date with one another
|
|
273
278
|
if config.get("configurable"):
|
|
274
279
|
context = config["configurable"]
|
{langgraph_runtime_inmem-0.17.0.dist-info → langgraph_runtime_inmem-0.17.1.dist-info}/RECORD
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
langgraph_runtime_inmem/__init__.py,sha256=
|
|
1
|
+
langgraph_runtime_inmem/__init__.py,sha256=xWciGBAIjNSLumyTQszfz9Bq-MYAzM9BGJ1nYR8feao,311
|
|
2
2
|
langgraph_runtime_inmem/checkpoint.py,sha256=nc1G8DqVdIu-ibjKTqXfbPfMbAsKjPObKqegrSzo6Po,4432
|
|
3
3
|
langgraph_runtime_inmem/database.py,sha256=g2XYa5KN-T8MbDeFH9sfUApDG62Wp4BACumVnDtxYhI,6403
|
|
4
4
|
langgraph_runtime_inmem/inmem_stream.py,sha256=PFLWbsxU8RqbT5mYJgNk6v5q6TWJRIY1hkZWhJF8nkI,9094
|
|
5
5
|
langgraph_runtime_inmem/lifespan.py,sha256=fCoYcN_h0cxmj6-muC-f0csPdSpyepZuGRD1yBrq4XM,4755
|
|
6
6
|
langgraph_runtime_inmem/metrics.py,sha256=_YiSkLnhQvHpMktk38SZo0abyL-5GihfVAtBo0-lFIc,403
|
|
7
|
-
langgraph_runtime_inmem/ops.py,sha256=
|
|
7
|
+
langgraph_runtime_inmem/ops.py,sha256=T-q2OxrK_Uw7NL9ac-B8VeZg_G-fcpBGNDtvcCBzLrs,108207
|
|
8
8
|
langgraph_runtime_inmem/queue.py,sha256=yV781CDjlsKNvkJ3puHyiHNnJpIIdB1G_gTY9dg6mys,9994
|
|
9
9
|
langgraph_runtime_inmem/retry.py,sha256=XmldOP4e_H5s264CagJRVnQMDFcEJR_dldVR1Hm5XvM,763
|
|
10
10
|
langgraph_runtime_inmem/store.py,sha256=rTfL1JJvd-j4xjTrL8qDcynaWF6gUJ9-GDVwH0NBD_I,3506
|
|
11
|
-
langgraph_runtime_inmem-0.17.
|
|
12
|
-
langgraph_runtime_inmem-0.17.
|
|
13
|
-
langgraph_runtime_inmem-0.17.
|
|
11
|
+
langgraph_runtime_inmem-0.17.1.dist-info/METADATA,sha256=pn-tX9xWNJbxajNmU5bD-RTwer6Mg4wCLEIlNKXWe8E,570
|
|
12
|
+
langgraph_runtime_inmem-0.17.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
13
|
+
langgraph_runtime_inmem-0.17.1.dist-info/RECORD,,
|
|
File without changes
|