langgraph-api 0.5.1__py3-none-any.whl → 0.5.3__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.
- langgraph_api/__init__.py +1 -1
- langgraph_api/grpc_ops/config_conversion.py +225 -0
- langgraph_api/grpc_ops/generated/core_api_pb2.py +194 -195
- langgraph_api/grpc_ops/generated/core_api_pb2.pyi +14 -25
- langgraph_api/grpc_ops/generated/engine_common_pb2.py +191 -0
- langgraph_api/grpc_ops/generated/engine_common_pb2.pyi +637 -0
- langgraph_api/grpc_ops/generated/engine_common_pb2_grpc.py +24 -0
- langgraph_api/grpc_ops/ops.py +26 -156
- langgraph_api/js/package.json +5 -5
- langgraph_api/js/yarn.lock +137 -187
- {langgraph_api-0.5.1.dist-info → langgraph_api-0.5.3.dist-info}/METADATA +2 -2
- {langgraph_api-0.5.1.dist-info → langgraph_api-0.5.3.dist-info}/RECORD +15 -11
- {langgraph_api-0.5.1.dist-info → langgraph_api-0.5.3.dist-info}/WHEEL +0 -0
- {langgraph_api-0.5.1.dist-info → langgraph_api-0.5.3.dist-info}/entry_points.txt +0 -0
- {langgraph_api-0.5.1.dist-info → langgraph_api-0.5.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -3,6 +3,7 @@ import datetime
|
|
|
3
3
|
from google.protobuf import empty_pb2 as _empty_pb2
|
|
4
4
|
from google.protobuf import struct_pb2 as _struct_pb2
|
|
5
5
|
from google.protobuf import timestamp_pb2 as _timestamp_pb2
|
|
6
|
+
from . import engine_common_pb2 as _engine_common_pb2
|
|
6
7
|
from google.protobuf.internal import containers as _containers
|
|
7
8
|
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
8
9
|
from google.protobuf import descriptor as _descriptor
|
|
@@ -161,18 +162,6 @@ class Tags(_message.Message):
|
|
|
161
162
|
values: _containers.RepeatedScalarFieldContainer[str]
|
|
162
163
|
def __init__(self, values: _Optional[_Iterable[str]] = ...) -> None: ...
|
|
163
164
|
|
|
164
|
-
class Config(_message.Message):
|
|
165
|
-
__slots__ = ("tags", "recursion_limit", "configurable", "extra")
|
|
166
|
-
TAGS_FIELD_NUMBER: _ClassVar[int]
|
|
167
|
-
RECURSION_LIMIT_FIELD_NUMBER: _ClassVar[int]
|
|
168
|
-
CONFIGURABLE_FIELD_NUMBER: _ClassVar[int]
|
|
169
|
-
EXTRA_FIELD_NUMBER: _ClassVar[int]
|
|
170
|
-
tags: Tags
|
|
171
|
-
recursion_limit: int
|
|
172
|
-
configurable: _struct_pb2.Struct
|
|
173
|
-
extra: bytes
|
|
174
|
-
def __init__(self, tags: _Optional[_Union[Tags, _Mapping]] = ..., recursion_limit: _Optional[int] = ..., configurable: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., extra: _Optional[bytes] = ...) -> None: ...
|
|
175
|
-
|
|
176
165
|
class EqAuthFilter(_message.Message):
|
|
177
166
|
__slots__ = ("match",)
|
|
178
167
|
MATCH_FIELD_NUMBER: _ClassVar[int]
|
|
@@ -222,12 +211,12 @@ class Assistant(_message.Message):
|
|
|
222
211
|
version: int
|
|
223
212
|
created_at: _timestamp_pb2.Timestamp
|
|
224
213
|
updated_at: _timestamp_pb2.Timestamp
|
|
225
|
-
config:
|
|
214
|
+
config: _engine_common_pb2.EngineRunnableConfig
|
|
226
215
|
context: _struct_pb2.Struct
|
|
227
216
|
metadata: _struct_pb2.Struct
|
|
228
217
|
name: str
|
|
229
218
|
description: str
|
|
230
|
-
def __init__(self, assistant_id: _Optional[str] = ..., graph_id: _Optional[str] = ..., version: _Optional[int] = ..., created_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., updated_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., config: _Optional[_Union[
|
|
219
|
+
def __init__(self, assistant_id: _Optional[str] = ..., graph_id: _Optional[str] = ..., version: _Optional[int] = ..., created_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., updated_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., context: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., metadata: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., name: _Optional[str] = ..., description: _Optional[str] = ...) -> None: ...
|
|
231
220
|
|
|
232
221
|
class AssistantVersion(_message.Message):
|
|
233
222
|
__slots__ = ("assistant_id", "graph_id", "version", "created_at", "config", "context", "metadata", "name", "description")
|
|
@@ -244,12 +233,12 @@ class AssistantVersion(_message.Message):
|
|
|
244
233
|
graph_id: str
|
|
245
234
|
version: int
|
|
246
235
|
created_at: _timestamp_pb2.Timestamp
|
|
247
|
-
config:
|
|
236
|
+
config: _engine_common_pb2.EngineRunnableConfig
|
|
248
237
|
context: _struct_pb2.Struct
|
|
249
238
|
metadata: _struct_pb2.Struct
|
|
250
239
|
name: str
|
|
251
240
|
description: str
|
|
252
|
-
def __init__(self, assistant_id: _Optional[str] = ..., graph_id: _Optional[str] = ..., version: _Optional[int] = ..., created_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., config: _Optional[_Union[
|
|
241
|
+
def __init__(self, assistant_id: _Optional[str] = ..., graph_id: _Optional[str] = ..., version: _Optional[int] = ..., created_at: _Optional[_Union[datetime.datetime, _timestamp_pb2.Timestamp, _Mapping]] = ..., config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., context: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., metadata: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., name: _Optional[str] = ..., description: _Optional[str] = ...) -> None: ...
|
|
253
242
|
|
|
254
243
|
class CreateAssistantRequest(_message.Message):
|
|
255
244
|
__slots__ = ("assistant_id", "graph_id", "filters", "if_exists", "config", "context", "name", "description", "metadata")
|
|
@@ -273,12 +262,12 @@ class CreateAssistantRequest(_message.Message):
|
|
|
273
262
|
graph_id: str
|
|
274
263
|
filters: _containers.MessageMap[str, AuthFilter]
|
|
275
264
|
if_exists: OnConflictBehavior
|
|
276
|
-
config:
|
|
265
|
+
config: _engine_common_pb2.EngineRunnableConfig
|
|
277
266
|
context: _struct_pb2.Struct
|
|
278
267
|
name: str
|
|
279
268
|
description: str
|
|
280
269
|
metadata: _struct_pb2.Struct
|
|
281
|
-
def __init__(self, assistant_id: _Optional[str] = ..., graph_id: _Optional[str] = ..., filters: _Optional[_Mapping[str, AuthFilter]] = ..., if_exists: _Optional[_Union[OnConflictBehavior, str]] = ..., config: _Optional[_Union[
|
|
270
|
+
def __init__(self, assistant_id: _Optional[str] = ..., graph_id: _Optional[str] = ..., filters: _Optional[_Mapping[str, AuthFilter]] = ..., if_exists: _Optional[_Union[OnConflictBehavior, str]] = ..., config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., context: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., name: _Optional[str] = ..., description: _Optional[str] = ..., metadata: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
282
271
|
|
|
283
272
|
class GetAssistantRequest(_message.Message):
|
|
284
273
|
__slots__ = ("assistant_id", "filters")
|
|
@@ -315,12 +304,12 @@ class PatchAssistantRequest(_message.Message):
|
|
|
315
304
|
assistant_id: str
|
|
316
305
|
filters: _containers.MessageMap[str, AuthFilter]
|
|
317
306
|
graph_id: str
|
|
318
|
-
config:
|
|
307
|
+
config: _engine_common_pb2.EngineRunnableConfig
|
|
319
308
|
context: _struct_pb2.Struct
|
|
320
309
|
name: str
|
|
321
310
|
description: str
|
|
322
311
|
metadata: _struct_pb2.Struct
|
|
323
|
-
def __init__(self, assistant_id: _Optional[str] = ..., filters: _Optional[_Mapping[str, AuthFilter]] = ..., graph_id: _Optional[str] = ..., config: _Optional[_Union[
|
|
312
|
+
def __init__(self, assistant_id: _Optional[str] = ..., filters: _Optional[_Mapping[str, AuthFilter]] = ..., graph_id: _Optional[str] = ..., config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., context: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., name: _Optional[str] = ..., description: _Optional[str] = ..., metadata: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ...) -> None: ...
|
|
324
313
|
|
|
325
314
|
class DeleteAssistantRequest(_message.Message):
|
|
326
315
|
__slots__ = ("assistant_id", "filters")
|
|
@@ -506,13 +495,13 @@ class CheckpointPayload(_message.Message):
|
|
|
506
495
|
NEXT_FIELD_NUMBER: _ClassVar[int]
|
|
507
496
|
PARENT_CONFIG_FIELD_NUMBER: _ClassVar[int]
|
|
508
497
|
TASKS_FIELD_NUMBER: _ClassVar[int]
|
|
509
|
-
config:
|
|
498
|
+
config: _engine_common_pb2.EngineRunnableConfig
|
|
510
499
|
metadata: CheckpointMetadata
|
|
511
500
|
values: _struct_pb2.Struct
|
|
512
501
|
next: _containers.RepeatedScalarFieldContainer[str]
|
|
513
|
-
parent_config:
|
|
502
|
+
parent_config: _engine_common_pb2.EngineRunnableConfig
|
|
514
503
|
tasks: _containers.RepeatedCompositeFieldContainer[CheckpointTask]
|
|
515
|
-
def __init__(self, config: _Optional[_Union[
|
|
504
|
+
def __init__(self, config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., metadata: _Optional[_Union[CheckpointMetadata, _Mapping]] = ..., values: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., next: _Optional[_Iterable[str]] = ..., parent_config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., tasks: _Optional[_Iterable[_Union[CheckpointTask, _Mapping]]] = ...) -> None: ...
|
|
516
505
|
|
|
517
506
|
class Interrupt(_message.Message):
|
|
518
507
|
__slots__ = ("id", "value", "when", "resumable", "ns")
|
|
@@ -778,7 +767,7 @@ class RunKwargs(_message.Message):
|
|
|
778
767
|
RESUMABLE_FIELD_NUMBER: _ClassVar[int]
|
|
779
768
|
CHECKPOINT_DURING_FIELD_NUMBER: _ClassVar[int]
|
|
780
769
|
DURABILITY_FIELD_NUMBER: _ClassVar[int]
|
|
781
|
-
config:
|
|
770
|
+
config: _engine_common_pb2.EngineRunnableConfig
|
|
782
771
|
context: _struct_pb2.Struct
|
|
783
772
|
input: _struct_pb2.Struct
|
|
784
773
|
command: _struct_pb2.Struct
|
|
@@ -792,7 +781,7 @@ class RunKwargs(_message.Message):
|
|
|
792
781
|
resumable: bool
|
|
793
782
|
checkpoint_during: bool
|
|
794
783
|
durability: str
|
|
795
|
-
def __init__(self, config: _Optional[_Union[
|
|
784
|
+
def __init__(self, config: _Optional[_Union[_engine_common_pb2.EngineRunnableConfig, _Mapping]] = ..., context: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., input: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., command: _Optional[_Union[_struct_pb2.Struct, _Mapping]] = ..., stream_mode: _Optional[_Union[StreamMode, str]] = ..., interrupt_before: _Optional[_Iterable[str]] = ..., interrupt_after: _Optional[_Iterable[str]] = ..., webhook: _Optional[str] = ..., feedback_keys: _Optional[_Iterable[str]] = ..., temporary: bool = ..., subgraphs: bool = ..., resumable: bool = ..., checkpoint_during: bool = ..., durability: _Optional[str] = ...) -> None: ...
|
|
796
785
|
|
|
797
786
|
class Run(_message.Message):
|
|
798
787
|
__slots__ = ("run_id", "thread_id", "assistant_id", "created_at", "updated_at", "status", "metadata", "kwargs", "multitask_strategy")
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: engine-common.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
|
+
'engine-common.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
26
|
+
from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x65ngine-common.proto\x12\x0c\x65ngineCommon\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\xc1\x01\n\x05Value\x12\x33\n\nbase_value\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValueH\x00\x12$\n\x05sends\x18\x03 \x01(\x0b\x32\x13.engineCommon.SendsH\x00\x12(\n\x07missing\x18\x04 \x01(\x0b\x32\x15.engineCommon.MissingH\x00\x12(\n\x07\x63ommand\x18\x05 \x01(\x0b\x32\x15.engineCommon.CommandH\x00\x42\t\n\x07message\"\t\n\x07Missing\"2\n\x0fSerializedValue\x12\x10\n\x08\x65ncoding\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c\"a\n\rResponseChunk\x12\x12\n\nnamespaces\x18\x01 \x03(\t\x12\x0c\n\x04mode\x18\x02 \x01(\t\x12.\n\x07payload\x18\x03 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\"C\n\x11ResponseChunkList\x12.\n\tresponses\x18\x01 \x03(\x0b\x32\x1b.engineCommon.ResponseChunk\"!\n\nMessageIds\x12\x13\n\x0bmessage_ids\x18\x01 \x03(\t\"\x8a\x01\n\x08\x43hannels\x12\x36\n\x08\x63hannels\x18\x01 \x03(\x0b\x32$.engineCommon.Channels.ChannelsEntry\x1a\x46\n\rChannelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12$\n\x05value\x18\x02 \x01(\x0b\x32\x15.engineCommon.Channel:\x02\x38\x01\"\x7f\n\x07\x43hannel\x12\'\n\nget_result\x18\x01 \x01(\x0b\x32\x13.engineCommon.Value\x12\x1b\n\x13is_available_result\x18\x02 \x01(\x08\x12.\n\x11\x63heckpoint_result\x18\x03 \x01(\x0b\x32\x13.engineCommon.Value\"*\n\x05Sends\x12!\n\x05sends\x18\x01 \x03(\x0b\x32\x12.engineCommon.Send\"@\n\x04Send\x12\x0c\n\x04node\x18\x01 \x01(\t\x12*\n\x03\x61rg\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\"\xf1\x01\n\x07\x43ommand\x12\x12\n\x05graph\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x31\n\x06update\x18\x02 \x03(\x0b\x32!.engineCommon.Command.UpdateEntry\x12$\n\x06resume\x18\x03 \x01(\x0b\x32\x14.engineCommon.Resume\x12!\n\x05gotos\x18\x04 \x03(\x0b\x32\x12.engineCommon.Goto\x1aL\n\x0bUpdateEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValue:\x02\x38\x01\x42\x08\n\x06_graph\"t\n\x06Resume\x12.\n\x05value\x18\x01 \x01(\x0b\x32\x1d.engineCommon.SerializedValueH\x00\x12/\n\x06values\x18\x02 \x01(\x0b\x32\x1d.engineCommon.InterruptValuesH\x00\x42\t\n\x07message\"\x9a\x01\n\x0fInterruptValues\x12\x39\n\x06values\x18\x01 \x03(\x0b\x32).engineCommon.InterruptValues.ValuesEntry\x1aL\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValue:\x02\x38\x01\"J\n\x04Goto\x12\x13\n\tnode_name\x18\x01 \x01(\tH\x00\x12\"\n\x04send\x18\x02 \x01(\x0b\x32\x12.engineCommon.SendH\x00\x42\t\n\x07message\"\x0f\n\rGraphBubbleUp\"M\n\rExecutorError\x12\x12\n\nerror_type\x18\x01 \x01(\t\x12\x15\n\rerror_message\x18\x02 \x01(\t\x12\x11\n\ttraceback\x18\x03 \x01(\t\"=\n\x0eGraphInterrupt\x12+\n\ninterrupts\x18\x01 \x03(\x0b\x32\x17.engineCommon.Interrupt\"E\n\tInterrupt\x12,\n\x05value\x18\x01 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\x12\n\n\x02id\x18\x02 \x01(\t\"{\n\x10WrappedInterrupt\x12*\n\tinterrupt\x18\x01 \x01(\x0b\x32\x17.engineCommon.Interrupt\x12;\n\x14serialized_interrupt\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\"<\n\x05Write\x12\x0f\n\x07\x63hannel\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.engineCommon.Value\"T\n\x0cPendingWrite\x12\x0f\n\x07task_id\x18\x01 \x01(\t\x12\x0f\n\x07\x63hannel\x18\x02 \x01(\t\x12\"\n\x05value\x18\x03 \x01(\x0b\x32\x13.engineCommon.Value\"\x97\x01\n\x0f\x43hannelVersions\x12L\n\x10\x63hannel_versions\x18\x01 \x03(\x0b\x32\x32.engineCommon.ChannelVersions.ChannelVersionsEntry\x1a\x36\n\x14\x43hannelVersionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xc1\n\n\x14\x45ngineRunnableConfig\x12\x0c\n\x04tags\x18\x01 \x03(\t\x12K\n\rmetadata_json\x18\x02 \x03(\x0b\x32\x34.engineCommon.EngineRunnableConfig.MetadataJsonEntry\x12\x15\n\x08run_name\x18\x03 \x01(\tH\x00\x88\x01\x01\x12\x1c\n\x0fmax_concurrency\x18\x04 \x01(\x05H\x01\x88\x01\x01\x12\x1c\n\x0frecursion_limit\x18\x05 \x01(\x05H\x02\x88\x01\x01\x12\x13\n\x06run_id\x18\x06 \x01(\tH\x03\x88\x01\x01\x12^\n\x17\x65xtra_configurable_json\x18\x07 \x03(\x0b\x32=.engineCommon.EngineRunnableConfig.ExtraConfigurableJsonEntry\x12\x45\n\nextra_json\x18\x08 \x03(\x0b\x32\x31.engineCommon.EngineRunnableConfig.ExtraJsonEntry\x12+\n\x07runtime\x18\t \x01(\x0b\x32\x15.engineCommon.RuntimeH\x04\x88\x01\x01\x12\x15\n\x08resuming\x18\n \x01(\x08H\x05\x88\x01\x01\x12\x14\n\x07task_id\x18\x0b \x01(\tH\x06\x88\x01\x01\x12\x16\n\tthread_id\x18\x0c \x01(\tH\x07\x88\x01\x01\x12M\n\x0e\x63heckpoint_map\x18\r \x03(\x0b\x32\x35.engineCommon.EngineRunnableConfig.CheckpointMapEntry\x12\x1a\n\rcheckpoint_id\x18\x0e \x01(\tH\x08\x88\x01\x01\x12\x1a\n\rcheckpoint_ns\x18\x0f \x01(\tH\t\x88\x01\x01\x12\x31\n\ndurability\x18\x10 \x01(\x0e\x32\x18.engineCommon.DurabilityH\n\x88\x01\x01\x12\x45\n\nresume_map\x18\x11 \x03(\x0b\x32\x31.engineCommon.EngineRunnableConfig.ResumeMapEntry\x12\x15\n\x08graph_id\x18\x12 \x01(\tH\x0b\x88\x01\x01\x12\x18\n\x0brun_attempt\x18\x14 \x01(\x05H\x0c\x88\x01\x01\x12\x1a\n\rserver_run_id\x18\x15 \x01(\tH\r\x88\x01\x01\x1a\x33\n\x11MetadataJsonEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\x1a<\n\x1a\x45xtraConfigurableJsonEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\x1a\x30\n\x0e\x45xtraJsonEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\x1a\x34\n\x12\x43heckpointMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aO\n\x0eResumeMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValue:\x02\x38\x01\x42\x0b\n\t_run_nameB\x12\n\x10_max_concurrencyB\x12\n\x10_recursion_limitB\t\n\x07_run_idB\n\n\x08_runtimeB\x0b\n\t_resumingB\n\n\x08_task_idB\x0c\n\n_thread_idB\x10\n\x0e_checkpoint_idB\x10\n\x0e_checkpoint_nsB\r\n\x0b_durabilityB\x0b\n\t_graph_idB\x0e\n\x0c_run_attemptB\x10\n\x0e_server_run_id\"I\n\x07Runtime\x12#\n\x16langgraph_context_json\x18\x01 \x01(\x0cH\x00\x88\x01\x01\x42\x19\n\x17_langgraph_context_json\"\xd2\x03\n\x04Task\x12\x0c\n\x04name\x18\x01 \x01(\t\x12,\n\x05input\x18\x02 \x03(\x0b\x32\x1d.engineCommon.Task.InputEntry\x12#\n\x06writes\x18\x03 \x03(\x0b\x32\x13.engineCommon.Write\x12\x32\n\x06\x63onfig\x18\x04 \x01(\x0b\x32\".engineCommon.EngineRunnableConfig\x12\x10\n\x08triggers\x18\x05 \x03(\t\x12\n\n\x02id\x18\x06 \x01(\t\x12,\n\ttask_path\x18\x07 \x03(\x0b\x32\x19.engineCommon.PathSegment\x12\x0f\n\x07writers\x18\x08 \x03(\t\x12\x12\n\ngraph_name\x18\t \x01(\t\x12\x32\n\x0epending_writes\x18\n \x03(\x0b\x32\x1a.engineCommon.PendingWrite\x12\x33\n\x08messages\x18\x0b \x03(\x0b\x32!.engineCommon.ChatMessageEnvelope\x12\x18\n\x10stream_subgraphs\x18\x0c \x01(\x08\x1a\x41\n\nInputEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.engineCommon.Value:\x02\x38\x01\"\x83\x02\n\x12PregelTaskSnapshot\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\'\n\x04path\x18\x03 \x03(\x0b\x32\x19.engineCommon.PathSegment\x12+\n\ninterrupts\x18\x04 \x03(\x0b\x32\x17.engineCommon.Interrupt\x12&\n\x05state\x18\x05 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\'\n\x06result\x18\x06 \x01(\x0b\x32\x17.google.protobuf.Struct\x12,\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\"\xd7\x03\n\nCheckpoint\x12\t\n\x01v\x18\x01 \x01(\x04\x12\n\n\x02id\x18\x02 \x01(\t\x12\x43\n\x0e\x63hannel_values\x18\x03 \x03(\x0b\x32+.engineCommon.Checkpoint.ChannelValuesEntry\x12G\n\x10\x63hannel_versions\x18\x04 \x03(\x0b\x32-.engineCommon.Checkpoint.ChannelVersionsEntry\x12\x41\n\rversions_seen\x18\x05 \x03(\x0b\x32*.engineCommon.Checkpoint.VersionsSeenEntry\x12\n\n\x02ts\x18\x06 \x01(\t\x1aI\n\x12\x43hannelValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.engineCommon.Value:\x02\x38\x01\x1a\x36\n\x14\x43hannelVersionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aR\n\x11VersionsSeenEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.engineCommon.ChannelVersions:\x02\x38\x01\"\xc1\x02\n\x12\x43heckpointMetadata\x12\x41\n\x06source\x18\x01 \x01(\x0e\x32\x31.engineCommon.CheckpointMetadata.CheckpointSource\x12\x0c\n\x04step\x18\x02 \x01(\x05\x12>\n\x07parents\x18\x03 \x03(\x0b\x32-.engineCommon.CheckpointMetadata.ParentsEntry\x12\x13\n\x06run_id\x18\x04 \x01(\tH\x00\x88\x01\x01\x1a.\n\x0cParentsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"J\n\x10\x43heckpointSource\x12\x0b\n\x07unknown\x10\x00\x12\x08\n\x04loop\x10\x01\x12\t\n\x05input\x10\x02\x12\n\n\x06update\x10\x03\x12\x08\n\x04\x66ork\x10\x04\x42\t\n\x07_run_id\"\x96\x02\n\x0f\x43heckpointTuple\x12\x32\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\".engineCommon.EngineRunnableConfig\x12,\n\ncheckpoint\x18\x02 \x01(\x0b\x32\x18.engineCommon.Checkpoint\x12\x32\n\x08metadata\x18\x03 \x01(\x0b\x32 .engineCommon.CheckpointMetadata\x12\x39\n\rparent_config\x18\x04 \x01(\x0b\x32\".engineCommon.EngineRunnableConfig\x12\x32\n\x0epending_writes\x18\x05 \x03(\x0b\x32\x1a.engineCommon.PendingWrite\"{\n\x07Updates\x12,\n\ncheckpoint\x18\x01 \x01(\x0b\x32\x18.engineCommon.Checkpoint\x12(\n\x08\x63hannels\x18\x02 \x01(\x0b\x32\x16.engineCommon.Channels\x12\x18\n\x10updated_channels\x18\x03 \x03(\t\"i\n\x08ToolCall\x12\x0c\n\x04name\x18\x01 \x01(\t\x12%\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x17.google.protobuf.Struct\x12(\n\x02id\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValue\"\xc2\x01\n\rToolCallChunk\x12*\n\x04name\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12/\n\targs_json\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12(\n\x02id\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12*\n\x05index\x18\x04 \x01(\x0b\x32\x1b.google.protobuf.Int32Value\"\xc0\x01\n\x0fInvalidToolCall\x12*\n\x04name\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12*\n\x04\x61rgs\x18\x02 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12(\n\x02id\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12+\n\x05\x65rror\x18\x04 \x01(\x0b\x32\x1c.google.protobuf.StringValue\"\xa5\x01\n\x11InputTokenDetails\x12*\n\x05\x61udio\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int64Value\x12\x33\n\x0e\x63\x61\x63he_creation\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64Value\x12/\n\ncache_read\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.Int64Value\"p\n\x12OutputTokenDetails\x12*\n\x05\x61udio\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int64Value\x12.\n\treasoning\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64Value\"\xd0\x01\n\rUsageMetadata\x12\x14\n\x0cinput_tokens\x18\x01 \x01(\x03\x12\x15\n\routput_tokens\x18\x02 \x01(\x03\x12\x14\n\x0ctotal_tokens\x18\x03 \x01(\x03\x12<\n\x13input_token_details\x18\x04 \x01(\x0b\x32\x1f.engineCommon.InputTokenDetails\x12>\n\x14output_token_details\x18\x05 \x01(\x0b\x32 .engineCommon.OutputTokenDetails\"9\n\x10ResponseMetadata\x12%\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\"\x84\x03\n\x08\x41IFields\x12\x38\n\x0eusage_metadata\x18\x01 \x01(\x0b\x32\x1b.engineCommon.UsageMetadataH\x00\x88\x01\x01\x12>\n\x11response_metadata\x18\x02 \x01(\x0b\x32\x1e.engineCommon.ResponseMetadataH\x01\x88\x01\x01\x12*\n\ntool_calls\x18\x03 \x03(\x0b\x32\x16.engineCommon.ToolCall\x12\x35\n\x10tool_call_chunks\x18\x04 \x03(\x0b\x32\x1b.engineCommon.ToolCallChunk\x12\x39\n\x12invalid_tool_calls\x18\x05 \x03(\x0b\x32\x1d.engineCommon.InvalidToolCall\x12\x37\n\x11reasoning_content\x18\n \x01(\x0b\x32\x1c.google.protobuf.StringValueB\x11\n\x0f_usage_metadataB\x14\n\x12_response_metadata\"P\n\nToolFields\x12\x32\n\x0ctool_call_id\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12\x0e\n\x06status\x18\x02 \x01(\t\"\r\n\x0bHumanFields\"\xf5\x02\n\x0b\x43hatMessage\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0c\n\x04type\x18\x03 \x01(\t\x12\'\n\x07\x63ontent\x18\x04 \x01(\x0b\x32\x16.google.protobuf.Value\x12\x37\n\x11\x61\x64\x64itional_kwargs\x18\x05 \x01(\x0b\x32\x17.google.protobuf.StructH\x01\x88\x01\x01\x12$\n\x02\x61i\x18\x06 \x01(\x0b\x32\x16.engineCommon.AIFieldsH\x00\x12(\n\x04tool\x18\x07 \x01(\x0b\x32\x18.engineCommon.ToolFieldsH\x00\x12*\n\x05human\x18\x08 \x01(\x0b\x32\x19.engineCommon.HumanFieldsH\x00\x12\x30\n\nextensions\x18\x14 \x01(\x0b\x32\x17.google.protobuf.StructH\x02\x88\x01\x01\x42\t\n\x07\x64\x65tailsB\x14\n\x12_additional_kwargsB\r\n\x0b_extensions\"\x94\x01\n\x13\x43hatMessageEnvelope\x12\x1a\n\x12is_streaming_chunk\x18\x01 \x01(\x08\x12\x11\n\tnamespace\x18\x02 \x03(\t\x12*\n\x07message\x18\x03 \x01(\x0b\x32\x19.engineCommon.ChatMessage\x12\x15\n\x08metadata\x18\x04 \x01(\x0cH\x00\x88\x01\x01\x42\x0b\n\t_metadata\"\x98\x03\n\rStateSnapshot\x12\'\n\x06values\x18\x01 \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x0c\n\x04next\x18\x02 \x03(\t\x12\x32\n\x06\x63onfig\x18\x03 \x01(\x0b\x32\".engineCommon.EngineRunnableConfig\x12\x37\n\x08metadata\x18\x04 \x01(\x0b\x32 .engineCommon.CheckpointMetadataH\x00\x88\x01\x01\x12\x17\n\ncreated_at\x18\x05 \x01(\tH\x01\x88\x01\x01\x12>\n\rparent_config\x18\x06 \x01(\x0b\x32\".engineCommon.EngineRunnableConfigH\x02\x88\x01\x01\x12/\n\x05tasks\x18\x07 \x03(\x0b\x32 .engineCommon.PregelTaskSnapshot\x12+\n\ninterrupts\x18\x08 \x03(\x0b\x32\x17.engineCommon.InterruptB\x0b\n\t_metadataB\r\n\x0b_created_atB\x10\n\x0e_parent_config\"\x80\x01\n\x0bStateUpdate\x12-\n\x06values\x18\x01 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\x12\x14\n\x07\x61s_node\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x14\n\x07task_id\x18\x03 \x01(\tH\x01\x88\x01\x01\x42\n\n\x08_as_nodeB\n\n\x08_task_id\">\n\x10SuperstepUpdates\x12*\n\x07updates\x18\x01 \x03(\x0b\x32\x19.engineCommon.StateUpdate\"2\n\rStringOrSlice\x12\x0e\n\x06values\x18\x01 \x03(\t\x12\x11\n\tis_string\x18\x02 \x01(\x08\"Y\n\x0bPathSegment\x12\x16\n\x0cstring_value\x18\x01 \x01(\tH\x00\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x12\x14\n\nbool_value\x18\x03 \x01(\x08H\x00\x42\x07\n\x05value*8\n\nDurability\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05\x41SYNC\x10\x01\x12\x08\n\x04SYNC\x10\x02\x12\x08\n\x04\x45XIT\x10\x03\x42?Z=github.com/langchain-ai/langgraph-api/core/internal/engine/pbb\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'engine_common_pb2', _globals)
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
36
|
+
_globals['DESCRIPTOR']._serialized_options = b'Z=github.com/langchain-ai/langgraph-api/core/internal/engine/pb'
|
|
37
|
+
_globals['_CHANNELS_CHANNELSENTRY']._loaded_options = None
|
|
38
|
+
_globals['_CHANNELS_CHANNELSENTRY']._serialized_options = b'8\001'
|
|
39
|
+
_globals['_COMMAND_UPDATEENTRY']._loaded_options = None
|
|
40
|
+
_globals['_COMMAND_UPDATEENTRY']._serialized_options = b'8\001'
|
|
41
|
+
_globals['_INTERRUPTVALUES_VALUESENTRY']._loaded_options = None
|
|
42
|
+
_globals['_INTERRUPTVALUES_VALUESENTRY']._serialized_options = b'8\001'
|
|
43
|
+
_globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._loaded_options = None
|
|
44
|
+
_globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._serialized_options = b'8\001'
|
|
45
|
+
_globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._loaded_options = None
|
|
46
|
+
_globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._serialized_options = b'8\001'
|
|
47
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._loaded_options = None
|
|
48
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._serialized_options = b'8\001'
|
|
49
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._loaded_options = None
|
|
50
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._serialized_options = b'8\001'
|
|
51
|
+
_globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._loaded_options = None
|
|
52
|
+
_globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._serialized_options = b'8\001'
|
|
53
|
+
_globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._loaded_options = None
|
|
54
|
+
_globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._serialized_options = b'8\001'
|
|
55
|
+
_globals['_TASK_INPUTENTRY']._loaded_options = None
|
|
56
|
+
_globals['_TASK_INPUTENTRY']._serialized_options = b'8\001'
|
|
57
|
+
_globals['_CHECKPOINT_CHANNELVALUESENTRY']._loaded_options = None
|
|
58
|
+
_globals['_CHECKPOINT_CHANNELVALUESENTRY']._serialized_options = b'8\001'
|
|
59
|
+
_globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._loaded_options = None
|
|
60
|
+
_globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._serialized_options = b'8\001'
|
|
61
|
+
_globals['_CHECKPOINT_VERSIONSSEENENTRY']._loaded_options = None
|
|
62
|
+
_globals['_CHECKPOINT_VERSIONSSEENENTRY']._serialized_options = b'8\001'
|
|
63
|
+
_globals['_CHECKPOINTMETADATA_PARENTSENTRY']._loaded_options = None
|
|
64
|
+
_globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_options = b'8\001'
|
|
65
|
+
_globals['_DURABILITY']._serialized_start=8366
|
|
66
|
+
_globals['_DURABILITY']._serialized_end=8422
|
|
67
|
+
_globals['_VALUE']._serialized_start=100
|
|
68
|
+
_globals['_VALUE']._serialized_end=293
|
|
69
|
+
_globals['_MISSING']._serialized_start=295
|
|
70
|
+
_globals['_MISSING']._serialized_end=304
|
|
71
|
+
_globals['_SERIALIZEDVALUE']._serialized_start=306
|
|
72
|
+
_globals['_SERIALIZEDVALUE']._serialized_end=356
|
|
73
|
+
_globals['_RESPONSECHUNK']._serialized_start=358
|
|
74
|
+
_globals['_RESPONSECHUNK']._serialized_end=455
|
|
75
|
+
_globals['_RESPONSECHUNKLIST']._serialized_start=457
|
|
76
|
+
_globals['_RESPONSECHUNKLIST']._serialized_end=524
|
|
77
|
+
_globals['_MESSAGEIDS']._serialized_start=526
|
|
78
|
+
_globals['_MESSAGEIDS']._serialized_end=559
|
|
79
|
+
_globals['_CHANNELS']._serialized_start=562
|
|
80
|
+
_globals['_CHANNELS']._serialized_end=700
|
|
81
|
+
_globals['_CHANNELS_CHANNELSENTRY']._serialized_start=630
|
|
82
|
+
_globals['_CHANNELS_CHANNELSENTRY']._serialized_end=700
|
|
83
|
+
_globals['_CHANNEL']._serialized_start=702
|
|
84
|
+
_globals['_CHANNEL']._serialized_end=829
|
|
85
|
+
_globals['_SENDS']._serialized_start=831
|
|
86
|
+
_globals['_SENDS']._serialized_end=873
|
|
87
|
+
_globals['_SEND']._serialized_start=875
|
|
88
|
+
_globals['_SEND']._serialized_end=939
|
|
89
|
+
_globals['_COMMAND']._serialized_start=942
|
|
90
|
+
_globals['_COMMAND']._serialized_end=1183
|
|
91
|
+
_globals['_COMMAND_UPDATEENTRY']._serialized_start=1097
|
|
92
|
+
_globals['_COMMAND_UPDATEENTRY']._serialized_end=1173
|
|
93
|
+
_globals['_RESUME']._serialized_start=1185
|
|
94
|
+
_globals['_RESUME']._serialized_end=1301
|
|
95
|
+
_globals['_INTERRUPTVALUES']._serialized_start=1304
|
|
96
|
+
_globals['_INTERRUPTVALUES']._serialized_end=1458
|
|
97
|
+
_globals['_INTERRUPTVALUES_VALUESENTRY']._serialized_start=1382
|
|
98
|
+
_globals['_INTERRUPTVALUES_VALUESENTRY']._serialized_end=1458
|
|
99
|
+
_globals['_GOTO']._serialized_start=1460
|
|
100
|
+
_globals['_GOTO']._serialized_end=1534
|
|
101
|
+
_globals['_GRAPHBUBBLEUP']._serialized_start=1536
|
|
102
|
+
_globals['_GRAPHBUBBLEUP']._serialized_end=1551
|
|
103
|
+
_globals['_EXECUTORERROR']._serialized_start=1553
|
|
104
|
+
_globals['_EXECUTORERROR']._serialized_end=1630
|
|
105
|
+
_globals['_GRAPHINTERRUPT']._serialized_start=1632
|
|
106
|
+
_globals['_GRAPHINTERRUPT']._serialized_end=1693
|
|
107
|
+
_globals['_INTERRUPT']._serialized_start=1695
|
|
108
|
+
_globals['_INTERRUPT']._serialized_end=1764
|
|
109
|
+
_globals['_WRAPPEDINTERRUPT']._serialized_start=1766
|
|
110
|
+
_globals['_WRAPPEDINTERRUPT']._serialized_end=1889
|
|
111
|
+
_globals['_WRITE']._serialized_start=1891
|
|
112
|
+
_globals['_WRITE']._serialized_end=1951
|
|
113
|
+
_globals['_PENDINGWRITE']._serialized_start=1953
|
|
114
|
+
_globals['_PENDINGWRITE']._serialized_end=2037
|
|
115
|
+
_globals['_CHANNELVERSIONS']._serialized_start=2040
|
|
116
|
+
_globals['_CHANNELVERSIONS']._serialized_end=2191
|
|
117
|
+
_globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._serialized_start=2137
|
|
118
|
+
_globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._serialized_end=2191
|
|
119
|
+
_globals['_ENGINERUNNABLECONFIG']._serialized_start=2194
|
|
120
|
+
_globals['_ENGINERUNNABLECONFIG']._serialized_end=3539
|
|
121
|
+
_globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._serialized_start=3028
|
|
122
|
+
_globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._serialized_end=3079
|
|
123
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._serialized_start=3081
|
|
124
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._serialized_end=3141
|
|
125
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._serialized_start=3143
|
|
126
|
+
_globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._serialized_end=3191
|
|
127
|
+
_globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._serialized_start=3193
|
|
128
|
+
_globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._serialized_end=3245
|
|
129
|
+
_globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._serialized_start=3247
|
|
130
|
+
_globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._serialized_end=3326
|
|
131
|
+
_globals['_RUNTIME']._serialized_start=3541
|
|
132
|
+
_globals['_RUNTIME']._serialized_end=3614
|
|
133
|
+
_globals['_TASK']._serialized_start=3617
|
|
134
|
+
_globals['_TASK']._serialized_end=4083
|
|
135
|
+
_globals['_TASK_INPUTENTRY']._serialized_start=4018
|
|
136
|
+
_globals['_TASK_INPUTENTRY']._serialized_end=4083
|
|
137
|
+
_globals['_PREGELTASKSNAPSHOT']._serialized_start=4086
|
|
138
|
+
_globals['_PREGELTASKSNAPSHOT']._serialized_end=4345
|
|
139
|
+
_globals['_CHECKPOINT']._serialized_start=4348
|
|
140
|
+
_globals['_CHECKPOINT']._serialized_end=4819
|
|
141
|
+
_globals['_CHECKPOINT_CHANNELVALUESENTRY']._serialized_start=4606
|
|
142
|
+
_globals['_CHECKPOINT_CHANNELVALUESENTRY']._serialized_end=4679
|
|
143
|
+
_globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._serialized_start=2137
|
|
144
|
+
_globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._serialized_end=2191
|
|
145
|
+
_globals['_CHECKPOINT_VERSIONSSEENENTRY']._serialized_start=4737
|
|
146
|
+
_globals['_CHECKPOINT_VERSIONSSEENENTRY']._serialized_end=4819
|
|
147
|
+
_globals['_CHECKPOINTMETADATA']._serialized_start=4822
|
|
148
|
+
_globals['_CHECKPOINTMETADATA']._serialized_end=5143
|
|
149
|
+
_globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_start=5010
|
|
150
|
+
_globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_end=5056
|
|
151
|
+
_globals['_CHECKPOINTMETADATA_CHECKPOINTSOURCE']._serialized_start=5058
|
|
152
|
+
_globals['_CHECKPOINTMETADATA_CHECKPOINTSOURCE']._serialized_end=5132
|
|
153
|
+
_globals['_CHECKPOINTTUPLE']._serialized_start=5146
|
|
154
|
+
_globals['_CHECKPOINTTUPLE']._serialized_end=5424
|
|
155
|
+
_globals['_UPDATES']._serialized_start=5426
|
|
156
|
+
_globals['_UPDATES']._serialized_end=5549
|
|
157
|
+
_globals['_TOOLCALL']._serialized_start=5551
|
|
158
|
+
_globals['_TOOLCALL']._serialized_end=5656
|
|
159
|
+
_globals['_TOOLCALLCHUNK']._serialized_start=5659
|
|
160
|
+
_globals['_TOOLCALLCHUNK']._serialized_end=5853
|
|
161
|
+
_globals['_INVALIDTOOLCALL']._serialized_start=5856
|
|
162
|
+
_globals['_INVALIDTOOLCALL']._serialized_end=6048
|
|
163
|
+
_globals['_INPUTTOKENDETAILS']._serialized_start=6051
|
|
164
|
+
_globals['_INPUTTOKENDETAILS']._serialized_end=6216
|
|
165
|
+
_globals['_OUTPUTTOKENDETAILS']._serialized_start=6218
|
|
166
|
+
_globals['_OUTPUTTOKENDETAILS']._serialized_end=6330
|
|
167
|
+
_globals['_USAGEMETADATA']._serialized_start=6333
|
|
168
|
+
_globals['_USAGEMETADATA']._serialized_end=6541
|
|
169
|
+
_globals['_RESPONSEMETADATA']._serialized_start=6543
|
|
170
|
+
_globals['_RESPONSEMETADATA']._serialized_end=6600
|
|
171
|
+
_globals['_AIFIELDS']._serialized_start=6603
|
|
172
|
+
_globals['_AIFIELDS']._serialized_end=6991
|
|
173
|
+
_globals['_TOOLFIELDS']._serialized_start=6993
|
|
174
|
+
_globals['_TOOLFIELDS']._serialized_end=7073
|
|
175
|
+
_globals['_HUMANFIELDS']._serialized_start=7075
|
|
176
|
+
_globals['_HUMANFIELDS']._serialized_end=7088
|
|
177
|
+
_globals['_CHATMESSAGE']._serialized_start=7091
|
|
178
|
+
_globals['_CHATMESSAGE']._serialized_end=7464
|
|
179
|
+
_globals['_CHATMESSAGEENVELOPE']._serialized_start=7467
|
|
180
|
+
_globals['_CHATMESSAGEENVELOPE']._serialized_end=7615
|
|
181
|
+
_globals['_STATESNAPSHOT']._serialized_start=7618
|
|
182
|
+
_globals['_STATESNAPSHOT']._serialized_end=8026
|
|
183
|
+
_globals['_STATEUPDATE']._serialized_start=8029
|
|
184
|
+
_globals['_STATEUPDATE']._serialized_end=8157
|
|
185
|
+
_globals['_SUPERSTEPUPDATES']._serialized_start=8159
|
|
186
|
+
_globals['_SUPERSTEPUPDATES']._serialized_end=8221
|
|
187
|
+
_globals['_STRINGORSLICE']._serialized_start=8223
|
|
188
|
+
_globals['_STRINGORSLICE']._serialized_end=8273
|
|
189
|
+
_globals['_PATHSEGMENT']._serialized_start=8275
|
|
190
|
+
_globals['_PATHSEGMENT']._serialized_end=8364
|
|
191
|
+
# @@protoc_insertion_point(module_scope)
|