langgraph-api 0.4.48__py3-none-any.whl → 0.5.6__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.

Potentially problematic release.


This version of langgraph-api might be problematic. Click here for more details.

Files changed (33) hide show
  1. langgraph_api/__init__.py +1 -1
  2. langgraph_api/api/assistants.py +65 -61
  3. langgraph_api/api/meta.py +6 -0
  4. langgraph_api/api/threads.py +1 -1
  5. langgraph_api/auth/custom.py +29 -24
  6. langgraph_api/config.py +56 -1
  7. langgraph_api/graph.py +1 -1
  8. langgraph_api/{grpc_ops → grpc}/client.py +91 -0
  9. langgraph_api/grpc/config_conversion.py +225 -0
  10. langgraph_api/grpc/generated/core_api_pb2.py +275 -0
  11. langgraph_api/{grpc_ops → grpc}/generated/core_api_pb2.pyi +20 -31
  12. langgraph_api/{grpc_ops → grpc}/generated/core_api_pb2_grpc.py +2 -2
  13. langgraph_api/grpc/generated/engine_common_pb2.py +190 -0
  14. langgraph_api/grpc/generated/engine_common_pb2.pyi +634 -0
  15. langgraph_api/grpc/generated/engine_common_pb2_grpc.py +24 -0
  16. langgraph_api/{grpc_ops → grpc}/ops.py +75 -217
  17. langgraph_api/js/package.json +5 -5
  18. langgraph_api/js/src/graph.mts +20 -0
  19. langgraph_api/js/yarn.lock +137 -187
  20. langgraph_api/queue_entrypoint.py +2 -2
  21. langgraph_api/route.py +14 -4
  22. langgraph_api/schema.py +2 -2
  23. langgraph_api/self_hosted_metrics.py +48 -2
  24. langgraph_api/serde.py +58 -14
  25. langgraph_api/worker.py +1 -1
  26. {langgraph_api-0.4.48.dist-info → langgraph_api-0.5.6.dist-info}/METADATA +5 -5
  27. {langgraph_api-0.4.48.dist-info → langgraph_api-0.5.6.dist-info}/RECORD +32 -28
  28. langgraph_api/grpc_ops/generated/core_api_pb2.py +0 -276
  29. /langgraph_api/{grpc_ops → grpc}/__init__.py +0 -0
  30. /langgraph_api/{grpc_ops → grpc}/generated/__init__.py +0 -0
  31. {langgraph_api-0.4.48.dist-info → langgraph_api-0.5.6.dist-info}/WHEEL +0 -0
  32. {langgraph_api-0.4.48.dist-info → langgraph_api-0.5.6.dist-info}/entry_points.txt +0 -0
  33. {langgraph_api-0.4.48.dist-info → langgraph_api-0.5.6.dist-info}/licenses/LICENSE +0 -0
langgraph_api/serde.py CHANGED
@@ -3,7 +3,7 @@ import re
3
3
  import uuid
4
4
  from base64 import b64encode
5
5
  from collections import deque
6
- from collections.abc import Mapping
6
+ from collections.abc import Callable, Mapping
7
7
  from datetime import timedelta, timezone
8
8
  from decimal import Decimal
9
9
  from ipaddress import (
@@ -16,7 +16,7 @@ from ipaddress import (
16
16
  )
17
17
  from pathlib import Path
18
18
  from re import Pattern
19
- from typing import Any, NamedTuple, cast
19
+ from typing import Any, Literal, NamedTuple, cast
20
20
  from zoneinfo import ZoneInfo
21
21
 
22
22
  import cloudpickle
@@ -113,16 +113,24 @@ _option = orjson.OPT_SERIALIZE_NUMPY | orjson.OPT_NON_STR_KEYS
113
113
  _SURROGATE_RE = re.compile(r"[\ud800-\udfff]")
114
114
 
115
115
 
116
- def _strip_surr(s: str) -> str:
117
- return s if _SURROGATE_RE.search(s) is None else _SURROGATE_RE.sub("", s)
116
+ def _replace_surr(s: str) -> str:
117
+ return s if _SURROGATE_RE.search(s) is None else _SURROGATE_RE.sub("?", s)
118
118
 
119
119
 
120
120
  def _sanitise(o: Any) -> Any:
121
121
  if isinstance(o, str):
122
- return _strip_surr(o)
122
+ return _replace_surr(o)
123
123
  if isinstance(o, Mapping):
124
124
  return {_sanitise(k): _sanitise(v) for k, v in o.items()}
125
125
  if isinstance(o, list | tuple | set):
126
+ if (
127
+ isinstance(o, tuple)
128
+ and hasattr(o, "_asdict")
129
+ and callable(o._asdict)
130
+ and hasattr(o, "_fields")
131
+ and isinstance(o._fields, tuple)
132
+ ): # named tuple
133
+ return {f: _sanitise(ov) for f, ov in zip(o._fields, o, strict=True)}
126
134
  ctor = list if isinstance(o, list) else type(o)
127
135
  return ctor(_sanitise(x) for x in o)
128
136
  return o
@@ -158,18 +166,46 @@ async def ajson_loads(content: bytes | Fragment) -> Any:
158
166
 
159
167
 
160
168
  class Serializer(JsonPlusSerializer):
169
+ def __init__(
170
+ self,
171
+ __unpack_ext_hook__: Callable[[int, bytes], Any] | None = None,
172
+ pickle_fallback: bool | None = None,
173
+ ):
174
+ from langgraph_api.config import SERDE
175
+
176
+ allowed_json_modules: list[tuple[str, ...]] | Literal[True] | None = None
177
+ if SERDE and "allowed_json_modules" in SERDE:
178
+ allowed_ = SERDE["allowed_json_modules"]
179
+ if allowed_ is True:
180
+ allowed_json_modules = True
181
+ elif allowed_ is None:
182
+ allowed_json_modules = None
183
+ else:
184
+ allowed_json_modules = [tuple(x) for x in allowed_]
185
+ if pickle_fallback is None:
186
+ if SERDE and "pickle_fallback" in SERDE:
187
+ pickle_fallback = SERDE["pickle_fallback"]
188
+ else:
189
+ pickle_fallback = True
190
+
191
+ super().__init__(
192
+ allowed_json_modules=allowed_json_modules,
193
+ __unpack_ext_hook__=__unpack_ext_hook__,
194
+ )
195
+ self.pickle_fallback = pickle_fallback
196
+
161
197
  def dumps_typed(self, obj: Any) -> tuple[str, bytes]:
162
198
  try:
163
199
  return super().dumps_typed(obj)
164
200
  except TypeError:
165
201
  return "pickle", cloudpickle.dumps(obj)
166
202
 
167
- def dumps(self, obj: Any) -> bytes:
168
- # See comment above (in json_dumpb)
169
- return super().dumps(obj).replace(rb"\\u0000", b"").replace(rb"\u0000", b"")
170
-
171
203
  def loads_typed(self, data: tuple[str, bytes]) -> Any:
172
204
  if data[0] == "pickle":
205
+ if not self.pickle_fallback:
206
+ raise ValueError(
207
+ "Pickle fallback is disabled. Cannot deserialize pickled object."
208
+ )
173
209
  try:
174
210
  return cloudpickle.loads(data[1])
175
211
  except Exception as e:
@@ -177,8 +213,16 @@ class Serializer(JsonPlusSerializer):
177
213
  "Failed to unpickle object, replacing w None", exc_info=e
178
214
  )
179
215
  return None
180
- return super().loads_typed(data)
181
-
182
-
183
- mpack_keys = {"method", "value"}
184
- SERIALIZER = Serializer()
216
+ try:
217
+ return super().loads_typed(data)
218
+ except Exception:
219
+ if data[0] == "json":
220
+ logger.exception(
221
+ "Heads up! There was a deserialization error of an item stored using 'json'-type serialization."
222
+ ' For security reasons, starting in langgraph-api version 0.5.0, we no longer serialize objects using the "json" type.'
223
+ " If you would like to retain the ability to deserialize old checkpoints saved in this format, "
224
+ 'please set the "allowed_json_modules" option in your langgraph.json configuration to add the'
225
+ " necessary module and type paths to an allow-list to be deserialized. You can alkso retain the"
226
+ ' ability to insecurely deserialize custom types by setting it to "true".'
227
+ )
228
+ raise
langgraph_api/worker.py CHANGED
@@ -269,7 +269,7 @@ async def worker(
269
269
  elif isinstance(exception, TimeoutError):
270
270
  status = "timeout"
271
271
  await logger.awarning(
272
- "Background run timed out",
272
+ "Background run timed out. To increase the timeout, set the BG_JOB_TIMEOUT_SECS environment variable (integer, defaults to 3600).",
273
273
  **log_info,
274
274
  )
275
275
  if not temporary:
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-api
3
- Version: 0.4.48
4
- Author-email: Nuno Campos <nuno@langchain.dev>, Will Fu-Hinthorn <will@langchain.dev>
3
+ Version: 0.5.6
4
+ Author-email: Will Fu-Hinthorn <will@langchain.dev>, Josh Rogers <josh@langchain.dev>, Parker Rule <parker@langchain.dev>
5
5
  License: Elastic-2.0
6
6
  License-File: LICENSE
7
7
  Requires-Python: >=3.11
@@ -12,10 +12,10 @@ Requires-Dist: grpcio<2.0.0,>=1.75.0
12
12
  Requires-Dist: httpx>=0.25.0
13
13
  Requires-Dist: jsonschema-rs<0.30,>=0.20.0
14
14
  Requires-Dist: langchain-core>=0.3.64
15
- Requires-Dist: langgraph-checkpoint>=2.0.23
16
- Requires-Dist: langgraph-runtime-inmem<0.15.0,>=0.14.0
15
+ Requires-Dist: langgraph-checkpoint<4,>=3.0.1
16
+ Requires-Dist: langgraph-runtime-inmem<0.18.0,>=0.17.0
17
17
  Requires-Dist: langgraph-sdk>=0.2.0
18
- Requires-Dist: langgraph>=0.4.0
18
+ Requires-Dist: langgraph<2,>=0.4.10
19
19
  Requires-Dist: langsmith>=0.3.45
20
20
  Requires-Dist: opentelemetry-api>=1.37.0
21
21
  Requires-Dist: opentelemetry-exporter-otlp-proto-http>=1.37.0
@@ -1,26 +1,26 @@
1
- langgraph_api/__init__.py,sha256=w0y38C_CURQVpRIfkitkwViZZChCbN89DFUhKKh3PA8,23
1
+ langgraph_api/__init__.py,sha256=CMH34Gt1AqO7z_TqRj94XwohGoVCf8aes0djkqm45mk,22
2
2
  langgraph_api/asgi_transport.py,sha256=XtiLOu4WWsd-xizagBLzT5xUkxc9ZG9YqwvETBPjBFE,5161
3
3
  langgraph_api/asyncio.py,sha256=FEEkLm_N-15cbElo4vQ309MkDKBZuRqAYV8VJ1DocNw,9860
4
4
  langgraph_api/cli.py,sha256=aEI2pfztEEziIwUk2imiLkNVK1LapMp_3dxvcar1org,18341
5
5
  langgraph_api/command.py,sha256=Bh-rvuTLwdHCqFWryCjB1M8oWxPBwRBUjMNj_04KPxM,852
6
- langgraph_api/config.py,sha256=79efOb8cBNNT1geUfVsUPJFycjUBXnIxWwMkMsbl36A,15292
6
+ langgraph_api/config.py,sha256=eWt3GhpW2CX7BIrensQCYGVXa-vXgVXiwWTd1hmJuqU,17144
7
7
  langgraph_api/cron_scheduler.py,sha256=25wYzEQrhPEivZrAPYOmzLPDOQa-aFogU37mTXc9TJk,2566
8
8
  langgraph_api/errors.py,sha256=zlnl3xXIwVG0oGNKKpXf1an9Rn_SBDHSyhe53hU6aLw,1858
9
9
  langgraph_api/executor_entrypoint.py,sha256=CaX813ygtf9CpOaBkfkQXJAHjFtmlScCkrOvTDmu4Aw,750
10
10
  langgraph_api/feature_flags.py,sha256=taZRhukeBV8r62EmEo92rxfBwYhIw56-P_UvSzQLzt8,576
11
- langgraph_api/graph.py,sha256=YDNncFFnjOjX_ylHDVY3Z4Ehj62zyHFJPaiRCkLAZus,25285
11
+ langgraph_api/graph.py,sha256=e5_LHHxwJf5QuVgPv2POsrGAcSS4swHdVxz4IBV5p-c,25281
12
12
  langgraph_api/http.py,sha256=fyK-H-0UfNy_BzuVW3aWWGvhRavmGAVMkDwDArryJ_4,5659
13
13
  langgraph_api/http_metrics.py,sha256=vw3UT9uj9qgxQ_DwJq77HGZqh6LHSjyxylWhqkf2jAw,5095
14
14
  langgraph_api/http_metrics_utils.py,sha256=sjxF7SYGTzY0Wz_G0dzatsYNnWr31S6ujej4JmBG2yo,866
15
15
  langgraph_api/logging.py,sha256=o5iVARqtFYKIcRrK2nk1ymcKEiVYKd_dHmhXLF2khFI,6090
16
16
  langgraph_api/metadata.py,sha256=Ah5x5TB8O1VAypzDa1UTrsptS1hjy9z-PuNF8WYl3VM,8597
17
17
  langgraph_api/patch.py,sha256=J0MmcfpZG15SUVaVcI0Z4x_c0-0rbbT7Pwh9fDAQOpA,1566
18
- langgraph_api/queue_entrypoint.py,sha256=z3ZUBl3CpnMm0KFPqCuGvSohPAmYQbhAdyRizSJSClM,8481
19
- langgraph_api/route.py,sha256=EBhELuJ1He-ZYcAnR5YTImcIeDtWthDae5CHELBxPkM,5056
20
- langgraph_api/schema.py,sha256=spZ_XPT4AMJfw2YatsdnMZZLzgB9Sm3YR8n0SlgGdJ8,8480
18
+ langgraph_api/queue_entrypoint.py,sha256=VtelUvo_WB1GplliLCetHeTjLC8DCVYQkqIhI8pL2fo,8485
19
+ langgraph_api/route.py,sha256=wh2vMKksTpXJRQ_rLLrFXBSlG608fSMJguZATSWu0Y8,5593
20
+ langgraph_api/schema.py,sha256=vqCw9OE6cerlEK1WH1xxtHfhi-unLH4Z8Z8G0S_wCb0,8512
21
21
  langgraph_api/self_hosted_logs.py,sha256=9ljOz3KH3O1SwsD7eTKnreyJ80NbeR7nj7SuxBlrmCc,4422
22
- langgraph_api/self_hosted_metrics.py,sha256=3FFezxjU0Vs-bsH39f4Dcwn7fporTLHV9REQ3UQ315A,14004
23
- langgraph_api/serde.py,sha256=Jkww6ixP5o2YZmnXtM7ihuAYC6YSuNDNPvE-8ILoqVo,5499
22
+ langgraph_api/self_hosted_metrics.py,sha256=u1HstgccqJbtUEwTle-89CS9T2rbHv86lA0OBknxnNQ,15760
23
+ langgraph_api/serde.py,sha256=iFq_7CI7OHvUdVKx19MxJvYeorAqaDBRSu8KvzywnVY,7663
24
24
  langgraph_api/server.py,sha256=PExNHgem0tY_KkRFiFzj8m8Np6TrP4M0XJsEw6O2SAU,10112
25
25
  langgraph_api/sse.py,sha256=SLdtZmTdh5D8fbWrQjuY9HYLd2dg8Rmi6ZMmFMVc2iE,4204
26
26
  langgraph_api/state.py,sha256=AjkLbUQakIwK7oGzJ8oqubazRsXxG3vDMnRa0s0mzDM,4716
@@ -30,32 +30,36 @@ langgraph_api/thread_ttl.py,sha256=KyHnvD0e1p1cV4Z_ZvKNVzDztuI2RBCUsUO2V7GlOSw,1
30
30
  langgraph_api/traceblock.py,sha256=Qq5CUdefnMDaRDnyvBSWGBClEj-f3oO7NbH6fedxOSE,630
31
31
  langgraph_api/validation.py,sha256=-ZJy-HY3Qs6dJ4J67m1eDhIF0oA-P57VrsUXl0Vy-Bc,5381
32
32
  langgraph_api/webhook.py,sha256=SvSM1rdnNtiH4q3JQYmAqJUk2Sable5xAcwOLuRhtlo,1723
33
- langgraph_api/worker.py,sha256=HHgf590xElF7v02lgn0lG0iK2v2sENMjdx7TVFCvYXY,15399
33
+ langgraph_api/worker.py,sha256=DAEFhnlSV_2N91JiSd6QmnDCEKe5gYXc7s6v3sa3RTA,15503
34
34
  langgraph_api/api/__init__.py,sha256=wrnxz_204b2Vhv4-N0WpiPf-ZpDDlmIQkbh-TiXPnOo,5997
35
35
  langgraph_api/api/a2a.py,sha256=HIHZkLnIcM1u1FJti-L2NH-h1I9BZ_d-QW9z3gFonn8,53995
36
- langgraph_api/api/assistants.py,sha256=tRJse7Gr2BTeTZPljL05UvGkFiULpA-6hy03nBx9PF4,18177
36
+ langgraph_api/api/assistants.py,sha256=4JRZGImv1hnuQu26RdH1GTkU_UV169xjGSSKCmv67fY,17977
37
37
  langgraph_api/api/mcp.py,sha256=qe10ZRMN3f-Hli-9TI8nbQyWvMeBb72YB1PZVbyqBQw,14418
38
- langgraph_api/api/meta.py,sha256=_jG61UKs0J_alsCDgIwCAx1rX5pYuUwKrmOEpWnzR1I,4817
38
+ langgraph_api/api/meta.py,sha256=EMT2wzn4O45GmG8J3uI3e0ef20Kaio3k2TRwzKTM5IE,5610
39
39
  langgraph_api/api/openapi.py,sha256=If-z1ckXt-Yu5bwQytK1LWyX_T7G46UtLfixgEP8hwc,11959
40
40
  langgraph_api/api/runs.py,sha256=keHlFu1iy-l1IICJHc6AKrSUoQA-LZi6FYsja7la9Xw,25436
41
41
  langgraph_api/api/store.py,sha256=xGcPFx4v-VxlK6HRU9uCjzCQ0v66cvc3o_PB5_g7n0Q,5550
42
- langgraph_api/api/threads.py,sha256=TjnEWDvcyXMFsJXqzKNeEoRdfd5qG44-ves7clWSiA4,13120
42
+ langgraph_api/api/threads.py,sha256=16YkaHN_bZ131lenPFNqtKswTiXXg-IpP0AHp0_zHzc,13116
43
43
  langgraph_api/api/ui.py,sha256=_genglTUy5BMHlL0lkQypX524yFv6Z5fraIvnrxp7yE,2639
44
44
  langgraph_api/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- langgraph_api/auth/custom.py,sha256=psETw_GpLWClBbd_ESVPRLUz9GLQ0_XNsuUDSVbtZy0,22522
45
+ langgraph_api/auth/custom.py,sha256=JzKS1x3iNqSyL9rC1QeaMycP3d04zuXsTdVbXM668uw,22849
46
46
  langgraph_api/auth/middleware.py,sha256=jDA4t41DUoAArEY_PNoXesIUBJ0nGhh85QzRdn5EPD0,1916
47
47
  langgraph_api/auth/noop.py,sha256=Bk6Nf3p8D_iMVy_OyfPlyiJp_aEwzL-sHrbxoXpCbac,586
48
48
  langgraph_api/auth/studio_user.py,sha256=fojJpexdIZYI1w3awiqOLSwMUiK_M_3p4mlfQI0o-BE,454
49
49
  langgraph_api/auth/langsmith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
50
  langgraph_api/auth/langsmith/backend.py,sha256=JVf8-q1IvB5EeiLJge3cOtPvDg6qHzK_4cR-R8hPXXQ,3753
51
51
  langgraph_api/auth/langsmith/client.py,sha256=79kwCVeHU64nsHsxWipfZhf44lM6vfs2nlfTxlJF6LU,4142
52
- langgraph_api/grpc_ops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
- langgraph_api/grpc_ops/client.py,sha256=usSA1ZObwFzspgh3VYvhwRv9ZEOErcOzVc25JrsvYQU,2920
54
- langgraph_api/grpc_ops/ops.py,sha256=OHU1ikDMKJXRSTU7zWDXorEuB6o9czLErijh3mhDYh0,37867
55
- langgraph_api/grpc_ops/generated/__init__.py,sha256=dRiB_iGscPKdMpuLp9ueLwAmIfRaNjNXC64ABtb4cg8,135
56
- langgraph_api/grpc_ops/generated/core_api_pb2.py,sha256=l209i8cIazfs-zPTlt2jUg_og82oiDT4QMQCYAhU0P4,42262
57
- langgraph_api/grpc_ops/generated/core_api_pb2.pyi,sha256=6fnrjKRdN1-jJfHagLHhdlVog1cLkLoAc9fvTBzeFdM,49429
58
- langgraph_api/grpc_ops/generated/core_api_pb2_grpc.py,sha256=K_bHjM6BDzqIc1N8lc1SaxRLGFp1GUTpSiQEr5-70Oo,52466
52
+ langgraph_api/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ langgraph_api/grpc/client.py,sha256=Qr07JVaJrMr3jWQKFHngyC3gqsj-VNLzahbnpj1vDO8,5753
54
+ langgraph_api/grpc/config_conversion.py,sha256=IYQdA6atMFNyMXMpCnYrTUkT4Er4YdrS-LOSw8qgVcg,7560
55
+ langgraph_api/grpc/ops.py,sha256=7_Pp__lq3bpBU2McMtg7-Pv6881igvHfCys4Eg48YDc,32922
56
+ langgraph_api/grpc/generated/__init__.py,sha256=dRiB_iGscPKdMpuLp9ueLwAmIfRaNjNXC64ABtb4cg8,135
57
+ langgraph_api/grpc/generated/core_api_pb2.py,sha256=3NwuQd9_BvXE8sfoDR7iUwWs8V4QChGugbeVL7h9pGk,42064
58
+ langgraph_api/grpc/generated/core_api_pb2.pyi,sha256=nNg9_t8N6dvfUJ-l45vUPxgGpN1AcUZTUYJoqFP-7Tg,49507
59
+ langgraph_api/grpc/generated/core_api_pb2_grpc.py,sha256=Qav2DuCMUSmR8nP4-fVtUBbY0Vc42jqjCs3L4LdIl-0,52467
60
+ langgraph_api/grpc/generated/engine_common_pb2.py,sha256=NlwfuIO7nz27hfN1Oba-7k8GVoJX8VqM7-Jlk3j4oNE,24531
61
+ langgraph_api/grpc/generated/engine_common_pb2.pyi,sha256=bsJumLkaYk3rtOwv5U7j4qquldd8zKONt5ew9x9MBgs,32805
62
+ langgraph_api/grpc/generated/engine_common_pb2_grpc.py,sha256=ChVXQ2OvT6i5OsWWvS-Cn2ldyXDbaPP1LwWmZfU3ya8,894
59
63
  langgraph_api/js/.gitignore,sha256=l5yI6G_V6F1600I1IjiUKn87f4uYIrBAYU1MOyBBhg4,59
60
64
  langgraph_api/js/.prettierrc,sha256=0es3ovvyNIqIw81rPQsdt1zCQcOdBqyR_DMbFE4Ifms,19
61
65
  langgraph_api/js/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -65,15 +69,15 @@ langgraph_api/js/client.http.mts,sha256=FeVM53vduTPCyMPaYs__kmB3iWcz0k0om811DG0J
65
69
  langgraph_api/js/client.mts,sha256=8T5wp_114c2wGPfktY77StTnejhYL3ZWBmLwaUvp5XU,32333
66
70
  langgraph_api/js/errors.py,sha256=Cm1TKWlUCwZReDC5AQ6SgNIVGD27Qov2xcgHyf8-GXo,361
67
71
  langgraph_api/js/global.d.ts,sha256=j4GhgtQSZ5_cHzjSPcHgMJ8tfBThxrH-pUOrrJGteOU,196
68
- langgraph_api/js/package.json,sha256=besBq5s3c370nNWhHXy8ZxD0X350Xbzx4FNUDxhG-Pk,1330
72
+ langgraph_api/js/package.json,sha256=V0QYOBlL7oHw2XOefDsoTJ8F1f6ApSQc-sU0JKixpf8,1330
69
73
  langgraph_api/js/remote.py,sha256=gBk273R7esmXg8aR6InxasNFc5E6Qju2bv2DhmmGJyU,38676
70
74
  langgraph_api/js/schema.py,sha256=M4fLtr50O1jck8H1hm_0W4cZOGYGdkrB7riLyCes4oY,438
71
75
  langgraph_api/js/sse.py,sha256=hHkbncnYnXNIbHhAWneGWYkHp4UhhhGB7-MYtDrY264,4141
72
76
  langgraph_api/js/traceblock.mts,sha256=QtGSN5VpzmGqDfbArrGXkMiONY94pMQ5CgzetT_bKYg,761
73
77
  langgraph_api/js/tsconfig.json,sha256=imCYqVnqFpaBoZPx8k1nO4slHIWBFsSlmCYhO73cpBs,341
74
78
  langgraph_api/js/ui.py,sha256=l9regrvKIxLOjH5SIYE2nhr8QCKLK1Q_1pZgxdL71X4,2488
75
- langgraph_api/js/yarn.lock,sha256=eWe1iuI634accFo7tumAcG8I7gLrcYKe7OyX0TMfK_s,83943
76
- langgraph_api/js/src/graph.mts,sha256=9zTQNdtanI_CFnOwNRoamoCVHHQHGbNlbm91aRxDeOc,2675
79
+ langgraph_api/js/yarn.lock,sha256=rgbpcHxgQ9jk3SkPAJiDsYKJKUcZ8M-43jO25AKzNj0,81970
80
+ langgraph_api/js/src/graph.mts,sha256=etZd27NaoVevyitJ-LAUue0HeR7V3F2YNeSGwWHm13s,3417
77
81
  langgraph_api/js/src/load.hooks.mjs,sha256=xNVHq75W0Lk6MUKl1pQYrx-wtQ8_neiUyI6SO-k0ecM,2235
78
82
  langgraph_api/js/src/preload.mjs,sha256=8m3bYkf9iZLCQzKAYAdU8snxUwAG3dVLwGvAjfGfgIc,959
79
83
  langgraph_api/js/src/utils/files.mts,sha256=nU09Y8lN8SYsg0x2ffmbIW8LEDBl-SWkmxsoXunFU0M,219
@@ -110,8 +114,8 @@ langgraph_runtime/store.py,sha256=7mowndlsIroGHv3NpTSOZDJR0lCuaYMBoTnTrewjslw,11
110
114
  LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
111
115
  logging.json,sha256=3RNjSADZmDq38eHePMm1CbP6qZ71AmpBtLwCmKU9Zgo,379
112
116
  openapi.json,sha256=Oi2tU1b8PsXb-6XNHafQvcZv934vLNQhBNPYXr9e2nU,172620
113
- langgraph_api-0.4.48.dist-info/METADATA,sha256=UDqSGmsHJIXF0DrV_u8dFni__0-xszEswI232NY8l6M,4149
114
- langgraph_api-0.4.48.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
115
- langgraph_api-0.4.48.dist-info/entry_points.txt,sha256=hGedv8n7cgi41PypMfinwS_HfCwA7xJIfS0jAp8htV8,78
116
- langgraph_api-0.4.48.dist-info/licenses/LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
117
- langgraph_api-0.4.48.dist-info/RECORD,,
117
+ langgraph_api-0.5.6.dist-info/METADATA,sha256=nfAnUIWvt7D3GyDrgbUdxIexl7LuvrjbpaXFLmBZOEg,4190
118
+ langgraph_api-0.5.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
119
+ langgraph_api-0.5.6.dist-info/entry_points.txt,sha256=hGedv8n7cgi41PypMfinwS_HfCwA7xJIfS0jAp8htV8,78
120
+ langgraph_api-0.5.6.dist-info/licenses/LICENSE,sha256=ZPwVR73Biwm3sK6vR54djCrhaRiM4cAD2zvOQZV8Xis,3859
121
+ langgraph_api-0.5.6.dist-info/RECORD,,
@@ -1,276 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: core-api.proto
5
- # Protobuf Python Version: 6.31.1
6
- """Generated protocol buffer code."""
7
- from google.protobuf import descriptor as _descriptor
8
- from google.protobuf import descriptor_pool as _descriptor_pool
9
- from google.protobuf import runtime_version as _runtime_version
10
- from google.protobuf import symbol_database as _symbol_database
11
- from google.protobuf.internal import builder as _builder
12
- _runtime_version.ValidateProtobufRuntimeVersion(
13
- _runtime_version.Domain.PUBLIC,
14
- 6,
15
- 31,
16
- 1,
17
- '',
18
- 'core-api.proto'
19
- )
20
- # @@protoc_insertion_point(imports)
21
-
22
- _sym_db = _symbol_database.Default()
23
-
24
-
25
- from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
26
- from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
27
- from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
28
-
29
-
30
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0e\x63ore-api.proto\x12\x07\x63oreApi\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x16\n\x04Tags\x12\x0e\n\x06values\x18\x01 \x03(\t\"\xc8\x01\n\x06\x43onfig\x12 \n\x04tags\x18\x01 \x01(\x0b\x32\r.coreApi.TagsH\x00\x88\x01\x01\x12\x1c\n\x0frecursion_limit\x18\x02 \x01(\x04H\x01\x88\x01\x01\x12\x32\n\x0c\x63onfigurable\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x02\x88\x01\x01\x12\x12\n\x05\x65xtra\x18\x04 \x01(\x0cH\x03\x88\x01\x01\x42\x07\n\x05_tagsB\x12\n\x10_recursion_limitB\x0f\n\r_configurableB\x08\n\x06_extra\"\x1d\n\x0c\x45qAuthFilter\x12\r\n\x05match\x18\x01 \x01(\t\"=\n\x12\x43ontainsAuthFilter\x12\'\n\x07matches\x18\x01 \x03(\x0b\x32\x16.google.protobuf.Value\"l\n\nAuthFilter\x12#\n\x02\x65q\x18\x01 \x01(\x0b\x32\x15.coreApi.EqAuthFilterH\x00\x12/\n\x08\x63ontains\x18\x02 \x01(\x0b\x32\x1b.coreApi.ContainsAuthFilterH\x00\x42\x08\n\x06\x66ilter\"\x15\n\x04UUID\x12\r\n\x05value\x18\x01 \x01(\t\"\x1e\n\rCountResponse\x12\r\n\x05\x63ount\x18\x01 \x01(\x04\"\x85\x03\n\tAssistant\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12\x10\n\x08graph_id\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\x04\x12.\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12$\n\x06\x63onfig\x18\x06 \x01(\x0b\x32\x0f.coreApi.ConfigH\x00\x88\x01\x01\x12-\n\x07\x63ontext\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12.\n\x08metadata\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructH\x02\x88\x01\x01\x12\x0c\n\x04name\x18\t \x01(\t\x12\x18\n\x0b\x64\x65scription\x18\n \x01(\tH\x03\x88\x01\x01\x42\t\n\x07_configB\n\n\x08_contextB\x0b\n\t_metadataB\x0e\n\x0c_description\"\xdc\x02\n\x10\x41ssistantVersion\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12\x10\n\x08graph_id\x18\x02 \x01(\t\x12\x0f\n\x07version\x18\x03 \x01(\x04\x12.\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12$\n\x06\x63onfig\x18\x05 \x01(\x0b\x32\x0f.coreApi.ConfigH\x00\x88\x01\x01\x12-\n\x07\x63ontext\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12.\n\x08metadata\x18\x07 \x01(\x0b\x32\x17.google.protobuf.StructH\x02\x88\x01\x01\x12\x0c\n\x04name\x18\x08 \x01(\t\x12\x18\n\x0b\x64\x65scription\x18\t \x01(\tH\x03\x88\x01\x01\x42\t\n\x07_configB\n\n\x08_contextB\x0b\n\t_metadataB\x0e\n\x0c_description\"\xb4\x03\n\x16\x43reateAssistantRequest\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12\x10\n\x08graph_id\x18\x02 \x01(\t\x12=\n\x07\x66ilters\x18\x03 \x03(\x0b\x32,.coreApi.CreateAssistantRequest.FiltersEntry\x12.\n\tif_exists\x18\x04 \x01(\x0e\x32\x1b.coreApi.OnConflictBehavior\x12\x1f\n\x06\x63onfig\x18\x05 \x01(\x0b\x32\x0f.coreApi.Config\x12(\n\x07\x63ontext\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04name\x18\x07 \x01(\t\x12\x18\n\x0b\x64\x65scription\x18\x08 \x01(\tH\x00\x88\x01\x01\x12.\n\x08metadata\x18\t \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0e\n\x0c_descriptionB\x0b\n\t_metadata\"\xac\x01\n\x13GetAssistantRequest\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12:\n\x07\x66ilters\x18\x02 \x03(\x0b\x32).coreApi.GetAssistantRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"\xc3\x03\n\x15PatchAssistantRequest\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12<\n\x07\x66ilters\x18\x02 \x03(\x0b\x32+.coreApi.PatchAssistantRequest.FiltersEntry\x12\x15\n\x08graph_id\x18\x03 \x01(\tH\x00\x88\x01\x01\x12$\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\x0f.coreApi.ConfigH\x01\x88\x01\x01\x12-\n\x07\x63ontext\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructH\x02\x88\x01\x01\x12\x11\n\x04name\x18\x06 \x01(\tH\x03\x88\x01\x01\x12\x18\n\x0b\x64\x65scription\x18\x07 \x01(\tH\x04\x88\x01\x01\x12.\n\x08metadata\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructH\x05\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_graph_idB\t\n\x07_configB\n\n\x08_contextB\x07\n\x05_nameB\x0e\n\x0c_descriptionB\x0b\n\t_metadata\"\xb2\x01\n\x16\x44\x65leteAssistantRequest\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12=\n\x07\x66ilters\x18\x02 \x03(\x0b\x32,.coreApi.DeleteAssistantRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"1\n\x18\x44\x65leteAssistantsResponse\x12\x15\n\rassistant_ids\x18\x01 \x03(\t\"\xc9\x01\n\x19SetLatestAssistantRequest\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12\x0f\n\x07version\x18\x02 \x01(\x03\x12@\n\x07\x66ilters\x18\x03 \x03(\x0b\x32/.coreApi.SetLatestAssistantRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"\xc6\x03\n\x17SearchAssistantsRequest\x12>\n\x07\x66ilters\x18\x01 \x03(\x0b\x32-.coreApi.SearchAssistantsRequest.FiltersEntry\x12\x15\n\x08graph_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x12.\n\x08metadata\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12\x12\n\x05limit\x18\x04 \x01(\x04H\x02\x88\x01\x01\x12\x13\n\x06offset\x18\x05 \x01(\x04H\x03\x88\x01\x01\x12/\n\x07sort_by\x18\x06 \x01(\x0e\x32\x19.coreApi.AssistantsSortByH\x04\x88\x01\x01\x12+\n\nsort_order\x18\x07 \x01(\x0e\x32\x12.coreApi.SortOrderH\x05\x88\x01\x01\x12\x0e\n\x06select\x18\x08 \x03(\t\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_graph_idB\x0b\n\t_metadataB\x08\n\x06_limitB\t\n\x07_offsetB\n\n\x08_sort_byB\r\n\x0b_sort_order\"B\n\x18SearchAssistantsResponse\x12&\n\nassistants\x18\x01 \x03(\x0b\x32\x12.coreApi.Assistant\"\xb7\x02\n\x1bGetAssistantVersionsRequest\x12\x14\n\x0c\x61ssistant_id\x18\x01 \x01(\t\x12\x42\n\x07\x66ilters\x18\x02 \x03(\x0b\x32\x31.coreApi.GetAssistantVersionsRequest.FiltersEntry\x12.\n\x08metadata\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x88\x01\x01\x12\x12\n\x05limit\x18\x04 \x01(\x04H\x01\x88\x01\x01\x12\x13\n\x06offset\x18\x05 \x01(\x04H\x02\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_metadataB\x08\n\x06_limitB\t\n\x07_offset\"K\n\x1cGetAssistantVersionsResponse\x12+\n\x08versions\x18\x01 \x03(\x0b\x32\x19.coreApi.AssistantVersion\"\xfd\x01\n\x16\x43ountAssistantsRequest\x12=\n\x07\x66ilters\x18\x01 \x03(\x0b\x32,.coreApi.CountAssistantsRequest.FiltersEntry\x12\x15\n\x08graph_id\x18\x02 \x01(\tH\x00\x88\x01\x01\x12.\n\x08metadata\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_graph_idB\x0b\n\t_metadata\"i\n\x0fTruncateRequest\x12\x0c\n\x04runs\x18\x01 \x01(\x08\x12\x0f\n\x07threads\x18\x02 \x01(\x08\x12\x12\n\nassistants\x18\x03 \x01(\x08\x12\x14\n\x0c\x63heckpointer\x18\x04 \x01(\x08\x12\r\n\x05store\x18\x05 \x01(\x08\"\xbb\x01\n\x0fThreadTTLConfig\x12\x31\n\x08strategy\x18\x01 \x01(\x0e\x32\x1a.coreApi.ThreadTTLStrategyH\x00\x88\x01\x01\x12\x18\n\x0b\x64\x65\x66\x61ult_ttl\x18\x02 \x01(\x01H\x01\x88\x01\x01\x12#\n\x16sweep_interval_minutes\x18\x03 \x01(\x05H\x02\x88\x01\x01\x42\x0b\n\t_strategyB\x0e\n\x0c_default_ttlB\x19\n\x17_sweep_interval_minutes\"\x19\n\x08\x46ragment\x12\r\n\x05value\x18\x01 \x01(\x0c\"\xac\x01\n\x0e\x43heckpointTask\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\x05\x65rror\x18\x03 \x01(\tH\x00\x88\x01\x01\x12+\n\ninterrupts\x18\x04 \x03(\x0b\x32\x17.google.protobuf.Struct\x12+\n\x05state\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x42\x08\n\x06_errorB\x08\n\x06_state\"\xd6\x01\n\x12\x43heckpointMetadata\x12.\n\x06source\x18\x01 \x01(\x0e\x32\x19.coreApi.CheckpointSourceH\x00\x88\x01\x01\x12\x11\n\x04step\x18\x02 \x01(\x04H\x01\x88\x01\x01\x12\x39\n\x07parents\x18\x03 \x03(\x0b\x32(.coreApi.CheckpointMetadata.ParentsEntry\x1a.\n\x0cParentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\t\n\x07_sourceB\x07\n\x05_step\"\x91\x02\n\x11\x43heckpointPayload\x12$\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x0f.coreApi.ConfigH\x00\x88\x01\x01\x12-\n\x08metadata\x18\x02 \x01(\x0b\x32\x1b.coreApi.CheckpointMetadata\x12\'\n\x06values\x18\x03 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04next\x18\x04 \x03(\t\x12+\n\rparent_config\x18\x05 \x01(\x0b\x32\x0f.coreApi.ConfigH\x01\x88\x01\x01\x12&\n\x05tasks\x18\x06 \x03(\x0b\x32\x17.coreApi.CheckpointTaskB\t\n\x07_configB\x10\n\x0e_parent_config\"\x80\x01\n\tInterrupt\x12\x0f\n\x02id\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\r\n\x05value\x18\x02 \x01(\x0c\x12\x11\n\x04when\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x16\n\tresumable\x18\x04 \x01(\x08H\x02\x88\x01\x01\x12\n\n\x02ns\x18\x05 \x03(\tB\x05\n\x03_idB\x07\n\x05_whenB\x0c\n\n_resumable\"4\n\nInterrupts\x12&\n\ninterrupts\x18\x01 \x03(\x0b\x32\x12.coreApi.Interrupt\"\xbb\x03\n\x06Thread\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12.\n\ncreated_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12#\n\x08metadata\x18\x04 \x01(\x0b\x32\x11.coreApi.Fragment\x12!\n\x06\x63onfig\x18\x05 \x01(\x0b\x32\x11.coreApi.Fragment\x12%\n\x06status\x18\x06 \x01(\x0e\x32\x15.coreApi.ThreadStatus\x12!\n\x06values\x18\x07 \x01(\x0b\x32\x11.coreApi.Fragment\x12\x33\n\ninterrupts\x18\x08 \x03(\x0b\x32\x1f.coreApi.Thread.InterruptsEntry\x12 \n\x05\x65rror\x18\t \x01(\x0b\x32\x11.coreApi.Fragment\x1a\x46\n\x0fInterruptsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.Interrupts:\x02\x38\x01\"\xd9\x02\n\x13\x43reateThreadRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12:\n\x07\x66ilters\x18\x02 \x03(\x0b\x32).coreApi.CreateThreadRequest.FiltersEntry\x12.\n\tif_exists\x18\x03 \x01(\x0e\x32\x1b.coreApi.OnConflictBehavior\x12.\n\x08metadata\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x88\x01\x01\x12*\n\x03ttl\x18\x05 \x01(\x0b\x32\x18.coreApi.ThreadTTLConfigH\x01\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_metadataB\x06\n\x04_ttl\"\xb2\x01\n\x10GetThreadRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x37\n\x07\x66ilters\x18\x02 \x03(\x0b\x32&.coreApi.GetThreadRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"\xa7\x02\n\x12PatchThreadRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x39\n\x07\x66ilters\x18\x02 \x03(\x0b\x32(.coreApi.PatchThreadRequest.FiltersEntry\x12.\n\x08metadata\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x88\x01\x01\x12*\n\x03ttl\x18\x04 \x01(\x0b\x32\x18.coreApi.ThreadTTLConfigH\x01\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_metadataB\x06\n\x04_ttl\"\xb8\x01\n\x13\x44\x65leteThreadRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12:\n\x07\x66ilters\x18\x02 \x03(\x0b\x32).coreApi.DeleteThreadRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"\xb4\x01\n\x11\x43opyThreadRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x38\n\x07\x66ilters\x18\x02 \x03(\x0b\x32\'.coreApi.CopyThreadRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"\x89\x04\n\x14SearchThreadsRequest\x12;\n\x07\x66ilters\x18\x01 \x03(\x0b\x32*.coreApi.SearchThreadsRequest.FiltersEntry\x12.\n\x08metadata\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x88\x01\x01\x12,\n\x06values\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12*\n\x06status\x18\x04 \x01(\x0e\x32\x15.coreApi.ThreadStatusH\x02\x88\x01\x01\x12\x12\n\x05limit\x18\x05 \x01(\x04H\x03\x88\x01\x01\x12\x13\n\x06offset\x18\x06 \x01(\x04H\x04\x88\x01\x01\x12,\n\x07sort_by\x18\x07 \x01(\x0e\x32\x16.coreApi.ThreadsSortByH\x05\x88\x01\x01\x12+\n\nsort_order\x18\x08 \x01(\x0e\x32\x12.coreApi.SortOrderH\x06\x88\x01\x01\x12\x0e\n\x06select\x18\t \x03(\t\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_metadataB\t\n\x07_valuesB\t\n\x07_statusB\x08\n\x06_limitB\t\n\x07_offsetB\n\n\x08_sort_byB\r\n\x0b_sort_order\"9\n\x15SearchThreadsResponse\x12 \n\x07threads\x18\x01 \x03(\x0b\x32\x0f.coreApi.Thread\"\xc3\x02\n\x13\x43ountThreadsRequest\x12:\n\x07\x66ilters\x18\x01 \x03(\x0b\x32).coreApi.CountThreadsRequest.FiltersEntry\x12.\n\x08metadata\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructH\x00\x88\x01\x01\x12,\n\x06values\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12*\n\x06status\x18\x04 \x01(\x0e\x32\x15.coreApi.ThreadStatusH\x02\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0b\n\t_metadataB\t\n\x07_valuesB\t\n\x07_status\";\n\x17SweepThreadsTTLResponse\x12\x0f\n\x07\x65xpired\x18\x01 \x01(\x04\x12\x0f\n\x07\x64\x65leted\x18\x02 \x01(\x04\"J\n\x16SweepThreadsTTLRequest\x12\x12\n\nbatch_size\x18\x01 \x01(\x04\x12\x12\n\x05limit\x18\x02 \x01(\x04H\x00\x88\x01\x01\x42\x08\n\x06_limit\"\x94\x02\n\x16SetThreadStatusRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12%\n\x06status\x18\x02 \x01(\x0e\x32\x15.coreApi.ThreadStatus\x12\x33\n\ncheckpoint\x18\x03 \x01(\x0b\x32\x1a.coreApi.CheckpointPayloadH\x00\x88\x01\x01\x12/\n\texception\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12.\n\x0f\x65xpected_status\x18\x05 \x03(\x0e\x32\x15.coreApi.ThreadStatusB\r\n\x0b_checkpointB\x0c\n\n_exception\"\x87\x02\n\x1bSetThreadJointStatusRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x1d\n\x06run_id\x18\x02 \x01(\x0b\x32\r.coreApi.UUID\x12\x12\n\nrun_status\x18\x03 \x01(\t\x12\x10\n\x08graph_id\x18\x04 \x01(\t\x12\x33\n\ncheckpoint\x18\x05 \x01(\x0b\x32\x1a.coreApi.CheckpointPayloadH\x00\x88\x01\x01\x12/\n\texception\x18\x06 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x42\r\n\x0b_checkpointB\x0c\n\n_exception\"\xec\x01\n\x14JointRollbackRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x1d\n\x06run_id\x18\x02 \x01(\x0b\x32\r.coreApi.UUID\x12\x10\n\x08graph_id\x18\x03 \x01(\t\x12\x33\n\ncheckpoint\x18\x04 \x01(\x0b\x32\x1a.coreApi.CheckpointPayloadH\x00\x88\x01\x01\x12/\n\texception\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x42\r\n\x0b_checkpointB\x0c\n\n_exception\"\xcf\x04\n\tRunKwargs\x12$\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x0f.coreApi.ConfigH\x00\x88\x01\x01\x12-\n\x07\x63ontext\x18\x02 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12+\n\x05input\x18\x03 \x01(\x0b\x32\x17.google.protobuf.StructH\x02\x88\x01\x01\x12-\n\x07\x63ommand\x18\x04 \x01(\x0b\x32\x17.google.protobuf.StructH\x03\x88\x01\x01\x12(\n\x0bstream_mode\x18\x05 \x01(\x0e\x32\x13.coreApi.StreamMode\x12\x18\n\x10interrupt_before\x18\x06 \x03(\t\x12\x17\n\x0finterrupt_after\x18\x07 \x03(\t\x12\x14\n\x07webhook\x18\x08 \x01(\tH\x04\x88\x01\x01\x12\x15\n\rfeedback_keys\x18\t \x03(\t\x12\x16\n\ttemporary\x18\n \x01(\x08H\x05\x88\x01\x01\x12\x16\n\tsubgraphs\x18\x0b \x01(\x08H\x06\x88\x01\x01\x12\x16\n\tresumable\x18\x0c \x01(\x08H\x07\x88\x01\x01\x12\x1e\n\x11\x63heckpoint_during\x18\r \x01(\x08H\x08\x88\x01\x01\x12\x17\n\ndurability\x18\x0e \x01(\tH\t\x88\x01\x01\x42\t\n\x07_configB\n\n\x08_contextB\x08\n\x06_inputB\n\n\x08_commandB\n\n\x08_webhookB\x0c\n\n_temporaryB\x0c\n\n_subgraphsB\x0c\n\n_resumableB\x14\n\x12_checkpoint_duringB\r\n\x0b_durability\"\xf0\x02\n\x03Run\x12\x1d\n\x06run_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12 \n\tthread_id\x18\x02 \x01(\x0b\x32\r.coreApi.UUID\x12#\n\x0c\x61ssistant_id\x18\x03 \x01(\x0b\x32\r.coreApi.UUID\x12.\n\ncreated_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\"\n\x06status\x18\x06 \x01(\x0e\x32\x12.coreApi.RunStatus\x12#\n\x08metadata\x18\x07 \x01(\x0b\x32\x11.coreApi.Fragment\x12\"\n\x06kwargs\x18\x08 \x01(\x0b\x32\x12.coreApi.RunKwargs\x12\x36\n\x12multitask_strategy\x18\t \x01(\x0e\x32\x1a.coreApi.MultitaskStrategy\"\x8a\x01\n\nQueueStats\x12\x11\n\tn_pending\x18\x01 \x01(\x04\x12\x11\n\tn_running\x18\x02 \x01(\x04\x12\x19\n\x0cmax_age_secs\x18\x03 \x01(\x01H\x00\x88\x01\x01\x12\x19\n\x0cmed_age_secs\x18\x04 \x01(\x01H\x01\x88\x01\x01\x42\x0f\n\r_max_age_secsB\x0f\n\r_med_age_secs\"-\n\x0eNextRunRequest\x12\x0c\n\x04wait\x18\x01 \x01(\x08\x12\r\n\x05limit\x18\x02 \x01(\x04\"<\n\x0eRunWithAttempt\x12\x19\n\x03run\x18\x01 \x01(\x0b\x32\x0c.coreApi.Run\x12\x0f\n\x07\x61ttempt\x18\x02 \x01(\x04\"8\n\x0fNextRunResponse\x12%\n\x04runs\x18\x01 \x03(\x0b\x32\x17.coreApi.RunWithAttempt\"\xe9\x05\n\x10\x43reateRunRequest\x12#\n\x0c\x61ssistant_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\'\n\x06kwargs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x37\n\x07\x66ilters\x18\x03 \x03(\x0b\x32&.coreApi.CreateRunRequest.FiltersEntry\x12%\n\tthread_id\x18\x04 \x01(\x0b\x32\r.coreApi.UUIDH\x00\x88\x01\x01\x12\x14\n\x07user_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x12\"\n\x06run_id\x18\x06 \x01(\x0b\x32\r.coreApi.UUIDH\x02\x88\x01\x01\x12\'\n\x06status\x18\x07 \x01(\x0e\x32\x12.coreApi.RunStatusH\x03\x88\x01\x01\x12.\n\x08metadata\x18\x08 \x01(\x0b\x32\x17.google.protobuf.StructH\x04\x88\x01\x01\x12\'\n\x1aprevent_insert_if_inflight\x18\t \x01(\x08H\x05\x88\x01\x01\x12;\n\x12multitask_strategy\x18\n \x01(\x0e\x32\x1a.coreApi.MultitaskStrategyH\x06\x88\x01\x01\x12\x36\n\rif_not_exists\x18\x0b \x01(\x0e\x32\x1a.coreApi.CreateRunBehaviorH\x07\x88\x01\x01\x12\x1a\n\rafter_seconds\x18\x0c \x01(\x04H\x08\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x0c\n\n_thread_idB\n\n\x08_user_idB\t\n\x07_run_idB\t\n\x07_statusB\x0b\n\t_metadataB\x1d\n\x1b_prevent_insert_if_inflightB\x15\n\x13_multitask_strategyB\x10\n\x0e_if_not_existsB\x10\n\x0e_after_seconds\"\xcb\x01\n\rGetRunRequest\x12\x1d\n\x06run_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12 \n\tthread_id\x18\x02 \x01(\x0b\x32\r.coreApi.UUID\x12\x34\n\x07\x66ilters\x18\x03 \x03(\x0b\x32#.coreApi.GetRunRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"\xd1\x01\n\x10\x44\x65leteRunRequest\x12\x1d\n\x06run_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12 \n\tthread_id\x18\x02 \x01(\x0b\x32\r.coreApi.UUID\x12\x37\n\x07\x66ilters\x18\x03 \x03(\x0b\x32&.coreApi.DeleteRunRequest.FiltersEntry\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\"V\n\x12\x43\x61ncelRunIdsTarget\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x1e\n\x07run_ids\x18\x02 \x03(\x0b\x32\r.coreApi.UUID\">\n\x12\x43\x61ncelStatusTarget\x12(\n\x06status\x18\x01 \x01(\x0e\x32\x18.coreApi.CancelRunStatus\"\xb3\x02\n\x10\x43\x61ncelRunRequest\x12\x37\n\x07\x66ilters\x18\x01 \x03(\x0b\x32&.coreApi.CancelRunRequest.FiltersEntry\x12.\n\x07run_ids\x18\x02 \x01(\x0b\x32\x1b.coreApi.CancelRunIdsTargetH\x00\x12-\n\x06status\x18\x03 \x01(\x0b\x32\x1b.coreApi.CancelStatusTargetH\x00\x12-\n\x06\x61\x63tion\x18\x04 \x01(\x0e\x32\x18.coreApi.CancelRunActionH\x01\x88\x01\x01\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x08\n\x06targetB\t\n\x07_action\"\xb6\x02\n\x11SearchRunsRequest\x12 \n\tthread_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\x38\n\x07\x66ilters\x18\x02 \x03(\x0b\x32\'.coreApi.SearchRunsRequest.FiltersEntry\x12\x12\n\x05limit\x18\x03 \x01(\x04H\x00\x88\x01\x01\x12\x13\n\x06offset\x18\x04 \x01(\x04H\x01\x88\x01\x01\x12\'\n\x06status\x18\x05 \x01(\x0e\x32\x12.coreApi.RunStatusH\x02\x88\x01\x01\x12\x0e\n\x06select\x18\x06 \x03(\t\x1a\x43\n\x0c\x46iltersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.coreApi.AuthFilter:\x02\x38\x01\x42\x08\n\x06_limitB\t\n\x07_offsetB\t\n\x07_status\"0\n\x12SearchRunsResponse\x12\x1a\n\x04runs\x18\x01 \x03(\x0b\x32\x0c.coreApi.Run\"X\n\x13SetRunStatusRequest\x12\x1d\n\x06run_id\x18\x01 \x01(\x0b\x32\r.coreApi.UUID\x12\"\n\x06status\x18\x02 \x01(\x0e\x32\x12.coreApi.RunStatus\"3\n\x11SweepRunsResponse\x12\x1e\n\x07run_ids\x18\x01 \x03(\x0b\x32\r.coreApi.UUID*/\n\x12OnConflictBehavior\x12\t\n\x05RAISE\x10\x00\x12\x0e\n\nDO_NOTHING\x10\x01*\x1e\n\tSortOrder\x12\x08\n\x04\x44\x45SC\x10\x00\x12\x07\n\x03\x41SC\x10\x01*m\n\x10\x41ssistantsSortBy\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x10\n\x0c\x41SSISTANT_ID\x10\x01\x12\x0c\n\x08GRAPH_ID\x10\x02\x12\x08\n\x04NAME\x10\x03\x12\x0e\n\nCREATED_AT\x10\x04\x12\x0e\n\nUPDATED_AT\x10\x05*v\n\x0cThreadStatus\x12\x16\n\x12THREAD_STATUS_IDLE\x10\x00\x12\x16\n\x12THREAD_STATUS_BUSY\x10\x01\x12\x1d\n\x19THREAD_STATUS_INTERRUPTED\x10\x02\x12\x17\n\x13THREAD_STATUS_ERROR\x10\x03*3\n\x11ThreadTTLStrategy\x12\x1e\n\x1aTHREAD_TTL_STRATEGY_DELETE\x10\x00*\xa8\x01\n\x10\x43heckpointSource\x12!\n\x1d\x43HECKPOINT_SOURCE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x43HECKPOINT_SOURCE_INPUT\x10\x01\x12\x1a\n\x16\x43HECKPOINT_SOURCE_LOOP\x10\x02\x12\x1c\n\x18\x43HECKPOINT_SOURCE_UPDATE\x10\x03\x12\x1a\n\x16\x43HECKPOINT_SOURCE_FORK\x10\x04*\xab\x01\n\rThreadsSortBy\x12\x1f\n\x1bTHREADS_SORT_BY_UNSPECIFIED\x10\x00\x12\x1d\n\x19THREADS_SORT_BY_THREAD_ID\x10\x01\x12\x1e\n\x1aTHREADS_SORT_BY_CREATED_AT\x10\x02\x12\x1e\n\x1aTHREADS_SORT_BY_UPDATED_AT\x10\x03\x12\x1a\n\x16THREADS_SORT_BY_STATUS\x10\x04*\x9d\x01\n\tRunStatus\x12\x16\n\x12RUN_STATUS_PENDING\x10\x00\x12\x16\n\x12RUN_STATUS_RUNNING\x10\x01\x12\x14\n\x10RUN_STATUS_ERROR\x10\x02\x12\x16\n\x12RUN_STATUS_SUCCESS\x10\x03\x12\x16\n\x12RUN_STATUS_TIMEOUT\x10\x04\x12\x1a\n\x16RUN_STATUS_INTERRUPTED\x10\x05*\xb9\x01\n\x11MultitaskStrategy\x12\"\n\x1eMULTITASK_STRATEGY_UNSPECIFIED\x10\x00\x12\x1d\n\x19MULTITASK_STRATEGY_REJECT\x10\x01\x12\x1f\n\x1bMULTITASK_STRATEGY_ROLLBACK\x10\x02\x12 \n\x1cMULTITASK_STRATEGY_INTERRUPT\x10\x03\x12\x1e\n\x1aMULTITASK_STRATEGY_ENQUEUE\x10\x04*\xef\x01\n\nStreamMode\x12\x1b\n\x17STREAM_MODE_UNSPECIFIED\x10\x00\x12\x16\n\x12STREAM_MODE_VALUES\x10\x01\x12\x18\n\x14STREAM_MODE_MESSAGES\x10\x02\x12\x17\n\x13STREAM_MODE_UPDATES\x10\x03\x12\x16\n\x12STREAM_MODE_EVENTS\x10\x04\x12\x15\n\x11STREAM_MODE_DEBUG\x10\x05\x12\x15\n\x11STREAM_MODE_TASKS\x10\x06\x12\x1b\n\x17STREAM_MODE_CHECKPOINTS\x10\x07\x12\x16\n\x12STREAM_MODE_CUSTOM\x10\x08*`\n\x11\x43reateRunBehavior\x12#\n\x1fREJECT_RUN_IF_THREAD_NOT_EXISTS\x10\x00\x12&\n\"CREATE_THREAD_IF_THREAD_NOT_EXISTS\x10\x01*R\n\x0f\x43\x61ncelRunAction\x12\x1f\n\x1b\x43\x41NCEL_RUN_ACTION_INTERRUPT\x10\x00\x12\x1e\n\x1a\x43\x41NCEL_RUN_ACTION_ROLLBACK\x10\x01*j\n\x0f\x43\x61ncelRunStatus\x12\x1d\n\x19\x43\x41NCEL_RUN_STATUS_PENDING\x10\x00\x12\x1d\n\x19\x43\x41NCEL_RUN_STATUS_RUNNING\x10\x01\x12\x19\n\x15\x43\x41NCEL_RUN_STATUS_ALL\x10\x02\x32\xc1\x04\n\nAssistants\x12\x37\n\x03Get\x12\x1c.coreApi.GetAssistantRequest\x1a\x12.coreApi.Assistant\x12=\n\x06\x43reate\x12\x1f.coreApi.CreateAssistantRequest\x1a\x12.coreApi.Assistant\x12;\n\x05Patch\x12\x1e.coreApi.PatchAssistantRequest\x1a\x12.coreApi.Assistant\x12L\n\x06\x44\x65lete\x12\x1f.coreApi.DeleteAssistantRequest\x1a!.coreApi.DeleteAssistantsResponse\x12M\n\x06Search\x12 .coreApi.SearchAssistantsRequest\x1a!.coreApi.SearchAssistantsResponse\x12\x43\n\tSetLatest\x12\".coreApi.SetLatestAssistantRequest\x1a\x12.coreApi.Assistant\x12Z\n\x0bGetVersions\x12$.coreApi.GetAssistantVersionsRequest\x1a%.coreApi.GetAssistantVersionsResponse\x12@\n\x05\x43ount\x12\x1f.coreApi.CountAssistantsRequest\x1a\x16.coreApi.CountResponse2E\n\x05\x41\x64min\x12<\n\x08Truncate\x12\x18.coreApi.TruncateRequest\x1a\x16.google.protobuf.Empty2\xcd\x05\n\x07Threads\x12\x37\n\x06\x43reate\x12\x1c.coreApi.CreateThreadRequest\x1a\x0f.coreApi.Thread\x12\x31\n\x03Get\x12\x19.coreApi.GetThreadRequest\x1a\x0f.coreApi.Thread\x12\x35\n\x05Patch\x12\x1b.coreApi.PatchThreadRequest\x1a\x0f.coreApi.Thread\x12\x35\n\x06\x44\x65lete\x12\x1c.coreApi.DeleteThreadRequest\x1a\r.coreApi.UUID\x12G\n\x06Search\x12\x1d.coreApi.SearchThreadsRequest\x1a\x1e.coreApi.SearchThreadsResponse\x12=\n\x05\x43ount\x12\x1c.coreApi.CountThreadsRequest\x1a\x16.coreApi.CountResponse\x12\x33\n\x04\x43opy\x12\x1a.coreApi.CopyThreadRequest\x1a\x0f.coreApi.Thread\x12\x44\n\tSetStatus\x12\x1f.coreApi.SetThreadStatusRequest\x1a\x16.google.protobuf.Empty\x12N\n\x0eSetJointStatus\x12$.coreApi.SetThreadJointStatusRequest\x1a\x16.google.protobuf.Empty\x12\x46\n\rJointRollback\x12\x1d.coreApi.JointRollbackRequest\x1a\x16.google.protobuf.Empty\x12M\n\x08SweepTTL\x12\x1f.coreApi.SweepThreadsTTLRequest\x1a .coreApi.SweepThreadsTTLResponse2\x8b\x04\n\x04Runs\x12\x31\n\x06\x43reate\x12\x19.coreApi.CreateRunRequest\x1a\x0c.coreApi.Run\x12+\n\x03Get\x12\x16.coreApi.GetRunRequest\x1a\x0c.coreApi.Run\x12\x32\n\x06\x44\x65lete\x12\x19.coreApi.DeleteRunRequest\x1a\r.coreApi.UUID\x12\x41\n\x06Search\x12\x1a.coreApi.SearchRunsRequest\x1a\x1b.coreApi.SearchRunsResponse\x12;\n\x06\x43\x61ncel\x12\x19.coreApi.CancelRunRequest\x1a\x16.google.protobuf.Empty\x12\x41\n\tSetStatus\x12\x1c.coreApi.SetRunStatusRequest\x1a\x16.google.protobuf.Empty\x12\x34\n\x05Stats\x12\x16.google.protobuf.Empty\x1a\x13.coreApi.QueueStats\x12\x39\n\x04Next\x12\x17.coreApi.NextRunRequest\x1a\x18.coreApi.NextRunResponse\x12;\n\x05Sweep\x12\x16.google.protobuf.Empty\x1a\x1a.coreApi.SweepRunsResponseBAZ?github.com/langchain-ai/langgraph-api/core/internal/core-api/pbb\x06proto3')
31
-
32
- _globals = globals()
33
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
34
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'core_api_pb2', _globals)
35
- if not _descriptor._USE_C_DESCRIPTORS:
36
- _globals['DESCRIPTOR']._loaded_options = None
37
- _globals['DESCRIPTOR']._serialized_options = b'Z?github.com/langchain-ai/langgraph-api/core/internal/core-api/pb'
38
- _globals['_CREATEASSISTANTREQUEST_FILTERSENTRY']._loaded_options = None
39
- _globals['_CREATEASSISTANTREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
40
- _globals['_GETASSISTANTREQUEST_FILTERSENTRY']._loaded_options = None
41
- _globals['_GETASSISTANTREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
42
- _globals['_PATCHASSISTANTREQUEST_FILTERSENTRY']._loaded_options = None
43
- _globals['_PATCHASSISTANTREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
44
- _globals['_DELETEASSISTANTREQUEST_FILTERSENTRY']._loaded_options = None
45
- _globals['_DELETEASSISTANTREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
46
- _globals['_SETLATESTASSISTANTREQUEST_FILTERSENTRY']._loaded_options = None
47
- _globals['_SETLATESTASSISTANTREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
48
- _globals['_SEARCHASSISTANTSREQUEST_FILTERSENTRY']._loaded_options = None
49
- _globals['_SEARCHASSISTANTSREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
50
- _globals['_GETASSISTANTVERSIONSREQUEST_FILTERSENTRY']._loaded_options = None
51
- _globals['_GETASSISTANTVERSIONSREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
52
- _globals['_COUNTASSISTANTSREQUEST_FILTERSENTRY']._loaded_options = None
53
- _globals['_COUNTASSISTANTSREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
54
- _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._loaded_options = None
55
- _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_options = b'8\001'
56
- _globals['_THREAD_INTERRUPTSENTRY']._loaded_options = None
57
- _globals['_THREAD_INTERRUPTSENTRY']._serialized_options = b'8\001'
58
- _globals['_CREATETHREADREQUEST_FILTERSENTRY']._loaded_options = None
59
- _globals['_CREATETHREADREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
60
- _globals['_GETTHREADREQUEST_FILTERSENTRY']._loaded_options = None
61
- _globals['_GETTHREADREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
62
- _globals['_PATCHTHREADREQUEST_FILTERSENTRY']._loaded_options = None
63
- _globals['_PATCHTHREADREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
64
- _globals['_DELETETHREADREQUEST_FILTERSENTRY']._loaded_options = None
65
- _globals['_DELETETHREADREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
66
- _globals['_COPYTHREADREQUEST_FILTERSENTRY']._loaded_options = None
67
- _globals['_COPYTHREADREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
68
- _globals['_SEARCHTHREADSREQUEST_FILTERSENTRY']._loaded_options = None
69
- _globals['_SEARCHTHREADSREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
70
- _globals['_COUNTTHREADSREQUEST_FILTERSENTRY']._loaded_options = None
71
- _globals['_COUNTTHREADSREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
72
- _globals['_CREATERUNREQUEST_FILTERSENTRY']._loaded_options = None
73
- _globals['_CREATERUNREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
74
- _globals['_GETRUNREQUEST_FILTERSENTRY']._loaded_options = None
75
- _globals['_GETRUNREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
76
- _globals['_DELETERUNREQUEST_FILTERSENTRY']._loaded_options = None
77
- _globals['_DELETERUNREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
78
- _globals['_CANCELRUNREQUEST_FILTERSENTRY']._loaded_options = None
79
- _globals['_CANCELRUNREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
80
- _globals['_SEARCHRUNSREQUEST_FILTERSENTRY']._loaded_options = None
81
- _globals['_SEARCHRUNSREQUEST_FILTERSENTRY']._serialized_options = b'8\001'
82
- _globals['_ONCONFLICTBEHAVIOR']._serialized_start=12081
83
- _globals['_ONCONFLICTBEHAVIOR']._serialized_end=12128
84
- _globals['_SORTORDER']._serialized_start=12130
85
- _globals['_SORTORDER']._serialized_end=12160
86
- _globals['_ASSISTANTSSORTBY']._serialized_start=12162
87
- _globals['_ASSISTANTSSORTBY']._serialized_end=12271
88
- _globals['_THREADSTATUS']._serialized_start=12273
89
- _globals['_THREADSTATUS']._serialized_end=12391
90
- _globals['_THREADTTLSTRATEGY']._serialized_start=12393
91
- _globals['_THREADTTLSTRATEGY']._serialized_end=12444
92
- _globals['_CHECKPOINTSOURCE']._serialized_start=12447
93
- _globals['_CHECKPOINTSOURCE']._serialized_end=12615
94
- _globals['_THREADSSORTBY']._serialized_start=12618
95
- _globals['_THREADSSORTBY']._serialized_end=12789
96
- _globals['_RUNSTATUS']._serialized_start=12792
97
- _globals['_RUNSTATUS']._serialized_end=12949
98
- _globals['_MULTITASKSTRATEGY']._serialized_start=12952
99
- _globals['_MULTITASKSTRATEGY']._serialized_end=13137
100
- _globals['_STREAMMODE']._serialized_start=13140
101
- _globals['_STREAMMODE']._serialized_end=13379
102
- _globals['_CREATERUNBEHAVIOR']._serialized_start=13381
103
- _globals['_CREATERUNBEHAVIOR']._serialized_end=13477
104
- _globals['_CANCELRUNACTION']._serialized_start=13479
105
- _globals['_CANCELRUNACTION']._serialized_end=13561
106
- _globals['_CANCELRUNSTATUS']._serialized_start=13563
107
- _globals['_CANCELRUNSTATUS']._serialized_end=13669
108
- _globals['_TAGS']._serialized_start=119
109
- _globals['_TAGS']._serialized_end=141
110
- _globals['_CONFIG']._serialized_start=144
111
- _globals['_CONFIG']._serialized_end=344
112
- _globals['_EQAUTHFILTER']._serialized_start=346
113
- _globals['_EQAUTHFILTER']._serialized_end=375
114
- _globals['_CONTAINSAUTHFILTER']._serialized_start=377
115
- _globals['_CONTAINSAUTHFILTER']._serialized_end=438
116
- _globals['_AUTHFILTER']._serialized_start=440
117
- _globals['_AUTHFILTER']._serialized_end=548
118
- _globals['_UUID']._serialized_start=550
119
- _globals['_UUID']._serialized_end=571
120
- _globals['_COUNTRESPONSE']._serialized_start=573
121
- _globals['_COUNTRESPONSE']._serialized_end=603
122
- _globals['_ASSISTANT']._serialized_start=606
123
- _globals['_ASSISTANT']._serialized_end=995
124
- _globals['_ASSISTANTVERSION']._serialized_start=998
125
- _globals['_ASSISTANTVERSION']._serialized_end=1346
126
- _globals['_CREATEASSISTANTREQUEST']._serialized_start=1349
127
- _globals['_CREATEASSISTANTREQUEST']._serialized_end=1785
128
- _globals['_CREATEASSISTANTREQUEST_FILTERSENTRY']._serialized_start=1689
129
- _globals['_CREATEASSISTANTREQUEST_FILTERSENTRY']._serialized_end=1756
130
- _globals['_GETASSISTANTREQUEST']._serialized_start=1788
131
- _globals['_GETASSISTANTREQUEST']._serialized_end=1960
132
- _globals['_GETASSISTANTREQUEST_FILTERSENTRY']._serialized_start=1689
133
- _globals['_GETASSISTANTREQUEST_FILTERSENTRY']._serialized_end=1756
134
- _globals['_PATCHASSISTANTREQUEST']._serialized_start=1963
135
- _globals['_PATCHASSISTANTREQUEST']._serialized_end=2414
136
- _globals['_PATCHASSISTANTREQUEST_FILTERSENTRY']._serialized_start=1689
137
- _globals['_PATCHASSISTANTREQUEST_FILTERSENTRY']._serialized_end=1756
138
- _globals['_DELETEASSISTANTREQUEST']._serialized_start=2417
139
- _globals['_DELETEASSISTANTREQUEST']._serialized_end=2595
140
- _globals['_DELETEASSISTANTREQUEST_FILTERSENTRY']._serialized_start=1689
141
- _globals['_DELETEASSISTANTREQUEST_FILTERSENTRY']._serialized_end=1756
142
- _globals['_DELETEASSISTANTSRESPONSE']._serialized_start=2597
143
- _globals['_DELETEASSISTANTSRESPONSE']._serialized_end=2646
144
- _globals['_SETLATESTASSISTANTREQUEST']._serialized_start=2649
145
- _globals['_SETLATESTASSISTANTREQUEST']._serialized_end=2850
146
- _globals['_SETLATESTASSISTANTREQUEST_FILTERSENTRY']._serialized_start=1689
147
- _globals['_SETLATESTASSISTANTREQUEST_FILTERSENTRY']._serialized_end=1756
148
- _globals['_SEARCHASSISTANTSREQUEST']._serialized_start=2853
149
- _globals['_SEARCHASSISTANTSREQUEST']._serialized_end=3307
150
- _globals['_SEARCHASSISTANTSREQUEST_FILTERSENTRY']._serialized_start=1689
151
- _globals['_SEARCHASSISTANTSREQUEST_FILTERSENTRY']._serialized_end=1756
152
- _globals['_SEARCHASSISTANTSRESPONSE']._serialized_start=3309
153
- _globals['_SEARCHASSISTANTSRESPONSE']._serialized_end=3375
154
- _globals['_GETASSISTANTVERSIONSREQUEST']._serialized_start=3378
155
- _globals['_GETASSISTANTVERSIONSREQUEST']._serialized_end=3689
156
- _globals['_GETASSISTANTVERSIONSREQUEST_FILTERSENTRY']._serialized_start=1689
157
- _globals['_GETASSISTANTVERSIONSREQUEST_FILTERSENTRY']._serialized_end=1756
158
- _globals['_GETASSISTANTVERSIONSRESPONSE']._serialized_start=3691
159
- _globals['_GETASSISTANTVERSIONSRESPONSE']._serialized_end=3766
160
- _globals['_COUNTASSISTANTSREQUEST']._serialized_start=3769
161
- _globals['_COUNTASSISTANTSREQUEST']._serialized_end=4022
162
- _globals['_COUNTASSISTANTSREQUEST_FILTERSENTRY']._serialized_start=1689
163
- _globals['_COUNTASSISTANTSREQUEST_FILTERSENTRY']._serialized_end=1756
164
- _globals['_TRUNCATEREQUEST']._serialized_start=4024
165
- _globals['_TRUNCATEREQUEST']._serialized_end=4129
166
- _globals['_THREADTTLCONFIG']._serialized_start=4132
167
- _globals['_THREADTTLCONFIG']._serialized_end=4319
168
- _globals['_FRAGMENT']._serialized_start=4321
169
- _globals['_FRAGMENT']._serialized_end=4346
170
- _globals['_CHECKPOINTTASK']._serialized_start=4349
171
- _globals['_CHECKPOINTTASK']._serialized_end=4521
172
- _globals['_CHECKPOINTMETADATA']._serialized_start=4524
173
- _globals['_CHECKPOINTMETADATA']._serialized_end=4738
174
- _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_start=4672
175
- _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_end=4718
176
- _globals['_CHECKPOINTPAYLOAD']._serialized_start=4741
177
- _globals['_CHECKPOINTPAYLOAD']._serialized_end=5014
178
- _globals['_INTERRUPT']._serialized_start=5017
179
- _globals['_INTERRUPT']._serialized_end=5145
180
- _globals['_INTERRUPTS']._serialized_start=5147
181
- _globals['_INTERRUPTS']._serialized_end=5199
182
- _globals['_THREAD']._serialized_start=5202
183
- _globals['_THREAD']._serialized_end=5645
184
- _globals['_THREAD_INTERRUPTSENTRY']._serialized_start=5575
185
- _globals['_THREAD_INTERRUPTSENTRY']._serialized_end=5645
186
- _globals['_CREATETHREADREQUEST']._serialized_start=5648
187
- _globals['_CREATETHREADREQUEST']._serialized_end=5993
188
- _globals['_CREATETHREADREQUEST_FILTERSENTRY']._serialized_start=1689
189
- _globals['_CREATETHREADREQUEST_FILTERSENTRY']._serialized_end=1756
190
- _globals['_GETTHREADREQUEST']._serialized_start=5996
191
- _globals['_GETTHREADREQUEST']._serialized_end=6174
192
- _globals['_GETTHREADREQUEST_FILTERSENTRY']._serialized_start=1689
193
- _globals['_GETTHREADREQUEST_FILTERSENTRY']._serialized_end=1756
194
- _globals['_PATCHTHREADREQUEST']._serialized_start=6177
195
- _globals['_PATCHTHREADREQUEST']._serialized_end=6472
196
- _globals['_PATCHTHREADREQUEST_FILTERSENTRY']._serialized_start=1689
197
- _globals['_PATCHTHREADREQUEST_FILTERSENTRY']._serialized_end=1756
198
- _globals['_DELETETHREADREQUEST']._serialized_start=6475
199
- _globals['_DELETETHREADREQUEST']._serialized_end=6659
200
- _globals['_DELETETHREADREQUEST_FILTERSENTRY']._serialized_start=1689
201
- _globals['_DELETETHREADREQUEST_FILTERSENTRY']._serialized_end=1756
202
- _globals['_COPYTHREADREQUEST']._serialized_start=6662
203
- _globals['_COPYTHREADREQUEST']._serialized_end=6842
204
- _globals['_COPYTHREADREQUEST_FILTERSENTRY']._serialized_start=1689
205
- _globals['_COPYTHREADREQUEST_FILTERSENTRY']._serialized_end=1756
206
- _globals['_SEARCHTHREADSREQUEST']._serialized_start=6845
207
- _globals['_SEARCHTHREADSREQUEST']._serialized_end=7366
208
- _globals['_SEARCHTHREADSREQUEST_FILTERSENTRY']._serialized_start=1689
209
- _globals['_SEARCHTHREADSREQUEST_FILTERSENTRY']._serialized_end=1756
210
- _globals['_SEARCHTHREADSRESPONSE']._serialized_start=7368
211
- _globals['_SEARCHTHREADSRESPONSE']._serialized_end=7425
212
- _globals['_COUNTTHREADSREQUEST']._serialized_start=7428
213
- _globals['_COUNTTHREADSREQUEST']._serialized_end=7751
214
- _globals['_COUNTTHREADSREQUEST_FILTERSENTRY']._serialized_start=1689
215
- _globals['_COUNTTHREADSREQUEST_FILTERSENTRY']._serialized_end=1756
216
- _globals['_SWEEPTHREADSTTLRESPONSE']._serialized_start=7753
217
- _globals['_SWEEPTHREADSTTLRESPONSE']._serialized_end=7812
218
- _globals['_SWEEPTHREADSTTLREQUEST']._serialized_start=7814
219
- _globals['_SWEEPTHREADSTTLREQUEST']._serialized_end=7888
220
- _globals['_SETTHREADSTATUSREQUEST']._serialized_start=7891
221
- _globals['_SETTHREADSTATUSREQUEST']._serialized_end=8167
222
- _globals['_SETTHREADJOINTSTATUSREQUEST']._serialized_start=8170
223
- _globals['_SETTHREADJOINTSTATUSREQUEST']._serialized_end=8433
224
- _globals['_JOINTROLLBACKREQUEST']._serialized_start=8436
225
- _globals['_JOINTROLLBACKREQUEST']._serialized_end=8672
226
- _globals['_RUNKWARGS']._serialized_start=8675
227
- _globals['_RUNKWARGS']._serialized_end=9266
228
- _globals['_RUN']._serialized_start=9269
229
- _globals['_RUN']._serialized_end=9637
230
- _globals['_QUEUESTATS']._serialized_start=9640
231
- _globals['_QUEUESTATS']._serialized_end=9778
232
- _globals['_NEXTRUNREQUEST']._serialized_start=9780
233
- _globals['_NEXTRUNREQUEST']._serialized_end=9825
234
- _globals['_RUNWITHATTEMPT']._serialized_start=9827
235
- _globals['_RUNWITHATTEMPT']._serialized_end=9887
236
- _globals['_NEXTRUNRESPONSE']._serialized_start=9889
237
- _globals['_NEXTRUNRESPONSE']._serialized_end=9945
238
- _globals['_CREATERUNREQUEST']._serialized_start=9948
239
- _globals['_CREATERUNREQUEST']._serialized_end=10693
240
- _globals['_CREATERUNREQUEST_FILTERSENTRY']._serialized_start=1689
241
- _globals['_CREATERUNREQUEST_FILTERSENTRY']._serialized_end=1756
242
- _globals['_GETRUNREQUEST']._serialized_start=10696
243
- _globals['_GETRUNREQUEST']._serialized_end=10899
244
- _globals['_GETRUNREQUEST_FILTERSENTRY']._serialized_start=1689
245
- _globals['_GETRUNREQUEST_FILTERSENTRY']._serialized_end=1756
246
- _globals['_DELETERUNREQUEST']._serialized_start=10902
247
- _globals['_DELETERUNREQUEST']._serialized_end=11111
248
- _globals['_DELETERUNREQUEST_FILTERSENTRY']._serialized_start=1689
249
- _globals['_DELETERUNREQUEST_FILTERSENTRY']._serialized_end=1756
250
- _globals['_CANCELRUNIDSTARGET']._serialized_start=11113
251
- _globals['_CANCELRUNIDSTARGET']._serialized_end=11199
252
- _globals['_CANCELSTATUSTARGET']._serialized_start=11201
253
- _globals['_CANCELSTATUSTARGET']._serialized_end=11263
254
- _globals['_CANCELRUNREQUEST']._serialized_start=11266
255
- _globals['_CANCELRUNREQUEST']._serialized_end=11573
256
- _globals['_CANCELRUNREQUEST_FILTERSENTRY']._serialized_start=1689
257
- _globals['_CANCELRUNREQUEST_FILTERSENTRY']._serialized_end=1756
258
- _globals['_SEARCHRUNSREQUEST']._serialized_start=11576
259
- _globals['_SEARCHRUNSREQUEST']._serialized_end=11886
260
- _globals['_SEARCHRUNSREQUEST_FILTERSENTRY']._serialized_start=1689
261
- _globals['_SEARCHRUNSREQUEST_FILTERSENTRY']._serialized_end=1756
262
- _globals['_SEARCHRUNSRESPONSE']._serialized_start=11888
263
- _globals['_SEARCHRUNSRESPONSE']._serialized_end=11936
264
- _globals['_SETRUNSTATUSREQUEST']._serialized_start=11938
265
- _globals['_SETRUNSTATUSREQUEST']._serialized_end=12026
266
- _globals['_SWEEPRUNSRESPONSE']._serialized_start=12028
267
- _globals['_SWEEPRUNSRESPONSE']._serialized_end=12079
268
- _globals['_ASSISTANTS']._serialized_start=13672
269
- _globals['_ASSISTANTS']._serialized_end=14249
270
- _globals['_ADMIN']._serialized_start=14251
271
- _globals['_ADMIN']._serialized_end=14320
272
- _globals['_THREADS']._serialized_start=14323
273
- _globals['_THREADS']._serialized_end=15040
274
- _globals['_RUNS']._serialized_start=15043
275
- _globals['_RUNS']._serialized_end=15566
276
- # @@protoc_insertion_point(module_scope)
File without changes
File without changes