langgraph-runtime-inmem 0.18.1__py3-none-any.whl → 0.19.0__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 +2 -0
- {langgraph_runtime_inmem-0.18.1.dist-info → langgraph_runtime_inmem-0.19.0.dist-info}/METADATA +1 -1
- {langgraph_runtime_inmem-0.18.1.dist-info → langgraph_runtime_inmem-0.19.0.dist-info}/RECORD +5 -5
- {langgraph_runtime_inmem-0.18.1.dist-info → langgraph_runtime_inmem-0.19.0.dist-info}/WHEEL +0 -0
langgraph_runtime_inmem/ops.py
CHANGED
|
@@ -141,6 +141,7 @@ class Assistants(Authenticated):
|
|
|
141
141
|
conn: InMemConnectionProto,
|
|
142
142
|
*,
|
|
143
143
|
graph_id: str | None,
|
|
144
|
+
name: str | None,
|
|
144
145
|
metadata: MetadataInput,
|
|
145
146
|
limit: int,
|
|
146
147
|
offset: int,
|
|
@@ -164,6 +165,7 @@ class Assistants(Authenticated):
|
|
|
164
165
|
assistant
|
|
165
166
|
for assistant in assistants
|
|
166
167
|
if (not graph_id or assistant["graph_id"] == graph_id)
|
|
168
|
+
and (not name or name.lower() in assistant["name"].lower())
|
|
167
169
|
and (not metadata or is_jsonb_contained(assistant["metadata"], metadata))
|
|
168
170
|
and (not filters or _check_filter_match(assistant["metadata"], filters))
|
|
169
171
|
]
|
{langgraph_runtime_inmem-0.18.1.dist-info → langgraph_runtime_inmem-0.19.0.dist-info}/RECORD
RENAMED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
langgraph_runtime_inmem/__init__.py,sha256=
|
|
1
|
+
langgraph_runtime_inmem/__init__.py,sha256=0BIs1nkaj3_LrNv5Rn9zRPO-KeI1bc0YYx5ZxleIq8c,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=lDR4b-N4pALnMPPc61lpACce1Up-u5U9R5sO0hPTIAw,109276
|
|
8
8
|
langgraph_runtime_inmem/queue.py,sha256=17HBZrYaxJg_k4NoabToYD_J6cqVzyHpWIz3VzGg_14,9363
|
|
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.
|
|
12
|
-
langgraph_runtime_inmem-0.
|
|
13
|
-
langgraph_runtime_inmem-0.
|
|
11
|
+
langgraph_runtime_inmem-0.19.0.dist-info/METADATA,sha256=opTbJKPl-tNZseiVB7djNcdOCfoyPCesrjz3QFoB4Hs,570
|
|
12
|
+
langgraph_runtime_inmem-0.19.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
13
|
+
langgraph_runtime_inmem-0.19.0.dist-info/RECORD,,
|
|
File without changes
|