langgraph-api 0.5.4__py3-none-any.whl → 0.7.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.
Files changed (122) hide show
  1. langgraph_api/__init__.py +1 -1
  2. langgraph_api/api/__init__.py +93 -27
  3. langgraph_api/api/a2a.py +36 -32
  4. langgraph_api/api/assistants.py +114 -26
  5. langgraph_api/api/mcp.py +3 -3
  6. langgraph_api/api/meta.py +15 -2
  7. langgraph_api/api/openapi.py +27 -17
  8. langgraph_api/api/profile.py +108 -0
  9. langgraph_api/api/runs.py +114 -57
  10. langgraph_api/api/store.py +19 -2
  11. langgraph_api/api/threads.py +133 -10
  12. langgraph_api/asgi_transport.py +14 -9
  13. langgraph_api/auth/custom.py +23 -13
  14. langgraph_api/cli.py +86 -41
  15. langgraph_api/command.py +2 -2
  16. langgraph_api/config/__init__.py +532 -0
  17. langgraph_api/config/_parse.py +58 -0
  18. langgraph_api/config/schemas.py +431 -0
  19. langgraph_api/cron_scheduler.py +17 -1
  20. langgraph_api/encryption/__init__.py +15 -0
  21. langgraph_api/encryption/aes_json.py +158 -0
  22. langgraph_api/encryption/context.py +35 -0
  23. langgraph_api/encryption/custom.py +280 -0
  24. langgraph_api/encryption/middleware.py +632 -0
  25. langgraph_api/encryption/shared.py +63 -0
  26. langgraph_api/errors.py +12 -1
  27. langgraph_api/executor_entrypoint.py +11 -6
  28. langgraph_api/feature_flags.py +19 -0
  29. langgraph_api/graph.py +163 -64
  30. langgraph_api/{grpc_ops → grpc}/client.py +142 -12
  31. langgraph_api/{grpc_ops → grpc}/config_conversion.py +16 -10
  32. langgraph_api/grpc/generated/__init__.py +29 -0
  33. langgraph_api/grpc/generated/checkpointer_pb2.py +63 -0
  34. langgraph_api/grpc/generated/checkpointer_pb2.pyi +99 -0
  35. langgraph_api/grpc/generated/checkpointer_pb2_grpc.py +329 -0
  36. langgraph_api/grpc/generated/core_api_pb2.py +216 -0
  37. langgraph_api/{grpc_ops → grpc}/generated/core_api_pb2.pyi +292 -372
  38. langgraph_api/{grpc_ops → grpc}/generated/core_api_pb2_grpc.py +252 -31
  39. langgraph_api/grpc/generated/engine_common_pb2.py +219 -0
  40. langgraph_api/{grpc_ops → grpc}/generated/engine_common_pb2.pyi +178 -104
  41. langgraph_api/grpc/generated/enum_cancel_run_action_pb2.py +37 -0
  42. langgraph_api/grpc/generated/enum_cancel_run_action_pb2.pyi +12 -0
  43. langgraph_api/grpc/generated/enum_cancel_run_action_pb2_grpc.py +24 -0
  44. langgraph_api/grpc/generated/enum_control_signal_pb2.py +37 -0
  45. langgraph_api/grpc/generated/enum_control_signal_pb2.pyi +16 -0
  46. langgraph_api/grpc/generated/enum_control_signal_pb2_grpc.py +24 -0
  47. langgraph_api/grpc/generated/enum_durability_pb2.py +37 -0
  48. langgraph_api/grpc/generated/enum_durability_pb2.pyi +16 -0
  49. langgraph_api/grpc/generated/enum_durability_pb2_grpc.py +24 -0
  50. langgraph_api/grpc/generated/enum_multitask_strategy_pb2.py +37 -0
  51. langgraph_api/grpc/generated/enum_multitask_strategy_pb2.pyi +16 -0
  52. langgraph_api/grpc/generated/enum_multitask_strategy_pb2_grpc.py +24 -0
  53. langgraph_api/grpc/generated/enum_run_status_pb2.py +37 -0
  54. langgraph_api/grpc/generated/enum_run_status_pb2.pyi +22 -0
  55. langgraph_api/grpc/generated/enum_run_status_pb2_grpc.py +24 -0
  56. langgraph_api/grpc/generated/enum_stream_mode_pb2.py +37 -0
  57. langgraph_api/grpc/generated/enum_stream_mode_pb2.pyi +28 -0
  58. langgraph_api/grpc/generated/enum_stream_mode_pb2_grpc.py +24 -0
  59. langgraph_api/grpc/generated/enum_thread_status_pb2.py +37 -0
  60. langgraph_api/grpc/generated/enum_thread_status_pb2.pyi +16 -0
  61. langgraph_api/grpc/generated/enum_thread_status_pb2_grpc.py +24 -0
  62. langgraph_api/grpc/generated/enum_thread_stream_mode_pb2.py +37 -0
  63. langgraph_api/grpc/generated/enum_thread_stream_mode_pb2.pyi +16 -0
  64. langgraph_api/grpc/generated/enum_thread_stream_mode_pb2_grpc.py +24 -0
  65. langgraph_api/grpc/generated/errors_pb2.py +39 -0
  66. langgraph_api/grpc/generated/errors_pb2.pyi +21 -0
  67. langgraph_api/grpc/generated/errors_pb2_grpc.py +24 -0
  68. langgraph_api/grpc/ops/__init__.py +370 -0
  69. langgraph_api/grpc/ops/assistants.py +424 -0
  70. langgraph_api/grpc/ops/runs.py +792 -0
  71. langgraph_api/grpc/ops/threads.py +1013 -0
  72. langgraph_api/http.py +16 -5
  73. langgraph_api/js/client.mts +1 -4
  74. langgraph_api/js/package.json +28 -27
  75. langgraph_api/js/remote.py +39 -17
  76. langgraph_api/js/sse.py +2 -2
  77. langgraph_api/js/ui.py +1 -1
  78. langgraph_api/js/yarn.lock +1139 -869
  79. langgraph_api/metadata.py +29 -3
  80. langgraph_api/middleware/http_logger.py +1 -1
  81. langgraph_api/middleware/private_network.py +7 -7
  82. langgraph_api/models/run.py +44 -26
  83. langgraph_api/otel_context.py +205 -0
  84. langgraph_api/patch.py +2 -2
  85. langgraph_api/queue_entrypoint.py +34 -35
  86. langgraph_api/route.py +33 -1
  87. langgraph_api/schema.py +84 -9
  88. langgraph_api/self_hosted_logs.py +2 -2
  89. langgraph_api/self_hosted_metrics.py +73 -3
  90. langgraph_api/serde.py +16 -4
  91. langgraph_api/server.py +33 -31
  92. langgraph_api/state.py +3 -2
  93. langgraph_api/store.py +25 -16
  94. langgraph_api/stream.py +20 -16
  95. langgraph_api/thread_ttl.py +28 -13
  96. langgraph_api/timing/__init__.py +25 -0
  97. langgraph_api/timing/profiler.py +200 -0
  98. langgraph_api/timing/timer.py +318 -0
  99. langgraph_api/utils/__init__.py +53 -8
  100. langgraph_api/utils/config.py +2 -1
  101. langgraph_api/utils/future.py +10 -6
  102. langgraph_api/utils/uuids.py +29 -62
  103. langgraph_api/validation.py +6 -0
  104. langgraph_api/webhook.py +120 -6
  105. langgraph_api/worker.py +54 -24
  106. {langgraph_api-0.5.4.dist-info → langgraph_api-0.7.3.dist-info}/METADATA +8 -6
  107. langgraph_api-0.7.3.dist-info/RECORD +168 -0
  108. {langgraph_api-0.5.4.dist-info → langgraph_api-0.7.3.dist-info}/WHEEL +1 -1
  109. langgraph_runtime/__init__.py +1 -0
  110. langgraph_runtime/routes.py +11 -0
  111. logging.json +1 -3
  112. openapi.json +635 -537
  113. langgraph_api/config.py +0 -523
  114. langgraph_api/grpc_ops/generated/__init__.py +0 -5
  115. langgraph_api/grpc_ops/generated/core_api_pb2.py +0 -275
  116. langgraph_api/grpc_ops/generated/engine_common_pb2.py +0 -194
  117. langgraph_api/grpc_ops/ops.py +0 -1045
  118. langgraph_api-0.5.4.dist-info/RECORD +0 -121
  119. /langgraph_api/{grpc_ops → grpc}/__init__.py +0 -0
  120. /langgraph_api/{grpc_ops → grpc}/generated/engine_common_pb2_grpc.py +0 -0
  121. {langgraph_api-0.5.4.dist-info → langgraph_api-0.7.3.dist-info}/entry_points.txt +0 -0
  122. {langgraph_api-0.5.4.dist-info → langgraph_api-0.7.3.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,219 @@
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 wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
26
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
27
+ from . import errors_pb2 as errors__pb2
28
+ from . import enum_durability_pb2 as enum__durability__pb2
29
+
30
+
31
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x65ngine-common.proto\x12\x0c\x65ngineCommon\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x0c\x65rrors.proto\x1a\x15\x65num_durability.proto\"\xa1\x01\n\x0c\x43hannelValue\x12\x39\n\x10serialized_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\x16.google.protobuf.EmptyH\x00\x42\x05\n\x03val\"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\"\x8d\x01\n\x07\x43hannel\x12.\n\nget_result\x18\x01 \x01(\x0b\x32\x1a.engineCommon.ChannelValue\x12\x1b\n\x13is_available_result\x18\x02 \x01(\x08\x12\x35\n\x11\x63heckpoint_result\x18\x03 \x01(\x0b\x32\x1a.engineCommon.ChannelValue\"*\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\"7\n\rParentCommand\x12&\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x15.engineCommon.Command\"=\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\x11WrappedInterrupts\x12+\n\ninterrupts\x18\x01 \x03(\x0b\x32\x17.engineCommon.Interrupt\x12<\n\x15serialized_interrupts\x18\x02 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\"C\n\x05Write\x12\x0f\n\x07\x63hannel\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.engineCommon.ChannelValue\"[\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\x1a.engineCommon.ChannelValue\"\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\"\xde\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\x33\n\ndurability\x18\x10 \x01(\x0e\x32\x1a.enumDurability.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\x19\n\x11root_stream_modes\x18\x13 \x03(\t\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\"\x89\x01\n\x07Runtime\x12#\n\x16langgraph_context_json\x18\x01 \x01(\x0cH\x00\x88\x01\x01\x12\x31\n\x08previous\x18\x02 \x01(\x0b\x32\x1a.engineCommon.ChannelValueH\x01\x88\x01\x01\x42\x19\n\x17_langgraph_context_jsonB\x0b\n\t_previous\"\x1c\n\x08Subgraph\x12\x10\n\x08graph_id\x18\x01 \x01(\t\"\xc3\x02\n\x04Task\x12\x0c\n\x04name\x18\x01 \x01(\t\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\x32\n\x0epending_writes\x18\n \x03(\x0b\x32\x1a.engineCommon.PendingWrite\x12\x18\n\x10stream_subgraphs\x18\x0c \x01(\x08\x12-\n\x08subgraph\x18\r \x01(\x0b\x32\x16.engineCommon.SubgraphH\x00\x88\x01\x01\x42\x0b\n\t_subgraph\"\xe0\x01\n\nTaskResult\x12\x34\n\nuser_error\x18\x01 \x01(\x0b\x32\x1e.errors.UserCodeExecutionErrorH\x00\x12\x35\n\ninterrupts\x18\x02 \x01(\x0b\x32\x1f.engineCommon.WrappedInterruptsH\x00\x12\x35\n\x0eparent_command\x18\x03 \x01(\x0b\x32\x1b.engineCommon.ParentCommandH\x00\x12#\n\x06writes\x18\x04 \x03(\x0b\x32\x13.engineCommon.WriteB\t\n\x07message\"\xce\x01\n\rCheckpointRef\x12\x15\n\rcheckpoint_id\x18\x01 \x01(\t\x12\x11\n\tthread_id\x18\x02 \x01(\t\x12\x15\n\rcheckpoint_ns\x18\x03 \x01(\t\x12\x46\n\x0e\x63heckpoint_map\x18\x04 \x03(\x0b\x32..engineCommon.CheckpointRef.CheckpointMapEntry\x1a\x34\n\x12\x43heckpointMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xbe\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\x13\n\x0bresult_json\x18\x06 \x01(\x0c\x12,\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.engineCommon.SerializedValue\x12\x35\n\x0e\x63heckpoint_ref\x18\x05 \x01(\x0b\x32\x1b.engineCommon.CheckpointRefH\x00\x12\x35\n\x0estate_snapshot\x18\x08 \x01(\x0b\x32\x1b.engineCommon.StateSnapshotH\x00\x42\x07\n\x05state\"\xf8\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\x12\x18\n\x10updated_channels\x18\x07 \x03(\t\x1aP\n\x12\x43hannelValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.engineCommon.ChannelValue:\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\"U\n\x08ToolCall\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\targs_json\x18\x02 \x01(\x0c\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\"w\n\x10ResponseMetadata\x12\x36\n\x04\x64\x61ta\x18\x01 \x03(\x0b\x32(.engineCommon.ResponseMetadata.DataEntry\x1a+\n\tDataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\"\xb4\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\x1b\n\x0e\x63hunk_position\x18\x06 \x01(\tH\x02\x88\x01\x01\x12\x37\n\x11reasoning_content\x18\n \x01(\x0b\x32\x1c.google.protobuf.StringValueB\x11\n\x0f_usage_metadataB\x14\n\x12_response_metadataB\x11\n\x0f_chunk_position\"\x93\x01\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\x12\x34\n\x08\x61rtifact\x18\x03 \x01(\x0b\x32\x1d.engineCommon.SerializedValueH\x00\x88\x01\x01\x42\x0b\n\t_artifact\"\r\n\x0bHumanFields\"S\n\x07\x43ontent\x12\x0e\n\x04text\x18\x01 \x01(\tH\x00\x12-\n\x06\x62locks\x18\x02 \x01(\x0b\x32\x1b.engineCommon.ContentBlocksH\x00\x42\t\n\x07\x63ontent\":\n\rContentBlocks\x12)\n\x05items\x18\x01 \x03(\x0b\x32\x1a.engineCommon.ContentBlock\"[\n\x0c\x43ontentBlock\x12\x0e\n\x04text\x18\x01 \x01(\tH\x00\x12\x33\n\nstructured\x18\x02 \x01(\x0b\x32\x1d.engineCommon.StructuredBlockH\x00\x42\x06\n\x04\x64\x61ta\"^\n\x0fStructuredBlock\x12\x12\n\x05index\x18\x01 \x01(\x05H\x00\x88\x01\x01\x12\x11\n\x04type\x18\x02 \x01(\tH\x01\x88\x01\x01\x12\x11\n\tdata_json\x18\x03 \x01(\x0c\x42\x08\n\x06_indexB\x07\n\x05_type\"\xdb\x03\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\x15.engineCommon.Content\x12J\n\x11\x61\x64\x64itional_kwargs\x18\x05 \x03(\x0b\x32/.engineCommon.ChatMessage.AdditionalKwargsEntry\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=\n\nextensions\x18\x14 \x03(\x0b\x32).engineCommon.ChatMessage.ExtensionsEntry\x1a\x37\n\x15\x41\x64\x64itionalKwargsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\x1a\x31\n\x0f\x45xtensionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x0c:\x02\x38\x01\x42\t\n\x07\x64\x65tails\"\xba\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\x12\x16\n\tnode_name\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\x0b\n\t_metadataB\x0c\n\n_node_name\"\x84\x03\n\rStateSnapshot\x12\x13\n\x0bvalues_json\x18\x01 \x01(\x0c\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\"\x91\x01\n\x15StaticInterruptConfig\x12\r\n\x03\x61ll\x18\x01 \x01(\x08H\x00\x12\x43\n\nnode_names\x18\x02 \x01(\x0b\x32-.engineCommon.StaticInterruptConfig.NodeNamesH\x00\x1a\x1a\n\tNodeNames\x12\r\n\x05names\x18\x01 \x03(\tB\x08\n\x06\x63onfigB?Z=github.com/langchain-ai/langgraph-api/core/internal/engine/pbb\x06proto3')
32
+
33
+ _globals = globals()
34
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
35
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'engine_common_pb2', _globals)
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals['DESCRIPTOR']._loaded_options = None
38
+ _globals['DESCRIPTOR']._serialized_options = b'Z=github.com/langchain-ai/langgraph-api/core/internal/engine/pb'
39
+ _globals['_CHANNELS_CHANNELSENTRY']._loaded_options = None
40
+ _globals['_CHANNELS_CHANNELSENTRY']._serialized_options = b'8\001'
41
+ _globals['_COMMAND_UPDATEENTRY']._loaded_options = None
42
+ _globals['_COMMAND_UPDATEENTRY']._serialized_options = b'8\001'
43
+ _globals['_INTERRUPTVALUES_VALUESENTRY']._loaded_options = None
44
+ _globals['_INTERRUPTVALUES_VALUESENTRY']._serialized_options = b'8\001'
45
+ _globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._loaded_options = None
46
+ _globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._serialized_options = b'8\001'
47
+ _globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._loaded_options = None
48
+ _globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._serialized_options = b'8\001'
49
+ _globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._loaded_options = None
50
+ _globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._serialized_options = b'8\001'
51
+ _globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._loaded_options = None
52
+ _globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._serialized_options = b'8\001'
53
+ _globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._loaded_options = None
54
+ _globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._serialized_options = b'8\001'
55
+ _globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._loaded_options = None
56
+ _globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._serialized_options = b'8\001'
57
+ _globals['_CHECKPOINTREF_CHECKPOINTMAPENTRY']._loaded_options = None
58
+ _globals['_CHECKPOINTREF_CHECKPOINTMAPENTRY']._serialized_options = b'8\001'
59
+ _globals['_CHECKPOINT_CHANNELVALUESENTRY']._loaded_options = None
60
+ _globals['_CHECKPOINT_CHANNELVALUESENTRY']._serialized_options = b'8\001'
61
+ _globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._loaded_options = None
62
+ _globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._serialized_options = b'8\001'
63
+ _globals['_CHECKPOINT_VERSIONSSEENENTRY']._loaded_options = None
64
+ _globals['_CHECKPOINT_VERSIONSSEENENTRY']._serialized_options = b'8\001'
65
+ _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._loaded_options = None
66
+ _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_options = b'8\001'
67
+ _globals['_RESPONSEMETADATA_DATAENTRY']._loaded_options = None
68
+ _globals['_RESPONSEMETADATA_DATAENTRY']._serialized_options = b'8\001'
69
+ _globals['_CHATMESSAGE_ADDITIONALKWARGSENTRY']._loaded_options = None
70
+ _globals['_CHATMESSAGE_ADDITIONALKWARGSENTRY']._serialized_options = b'8\001'
71
+ _globals['_CHATMESSAGE_EXTENSIONSENTRY']._loaded_options = None
72
+ _globals['_CHATMESSAGE_EXTENSIONSENTRY']._serialized_options = b'8\001'
73
+ _globals['_CHANNELVALUE']._serialized_start=136
74
+ _globals['_CHANNELVALUE']._serialized_end=297
75
+ _globals['_SERIALIZEDVALUE']._serialized_start=299
76
+ _globals['_SERIALIZEDVALUE']._serialized_end=349
77
+ _globals['_RESPONSECHUNK']._serialized_start=351
78
+ _globals['_RESPONSECHUNK']._serialized_end=448
79
+ _globals['_RESPONSECHUNKLIST']._serialized_start=450
80
+ _globals['_RESPONSECHUNKLIST']._serialized_end=517
81
+ _globals['_MESSAGEIDS']._serialized_start=519
82
+ _globals['_MESSAGEIDS']._serialized_end=552
83
+ _globals['_CHANNELS']._serialized_start=555
84
+ _globals['_CHANNELS']._serialized_end=693
85
+ _globals['_CHANNELS_CHANNELSENTRY']._serialized_start=623
86
+ _globals['_CHANNELS_CHANNELSENTRY']._serialized_end=693
87
+ _globals['_CHANNEL']._serialized_start=696
88
+ _globals['_CHANNEL']._serialized_end=837
89
+ _globals['_SENDS']._serialized_start=839
90
+ _globals['_SENDS']._serialized_end=881
91
+ _globals['_SEND']._serialized_start=883
92
+ _globals['_SEND']._serialized_end=947
93
+ _globals['_COMMAND']._serialized_start=950
94
+ _globals['_COMMAND']._serialized_end=1191
95
+ _globals['_COMMAND_UPDATEENTRY']._serialized_start=1105
96
+ _globals['_COMMAND_UPDATEENTRY']._serialized_end=1181
97
+ _globals['_RESUME']._serialized_start=1193
98
+ _globals['_RESUME']._serialized_end=1309
99
+ _globals['_INTERRUPTVALUES']._serialized_start=1312
100
+ _globals['_INTERRUPTVALUES']._serialized_end=1466
101
+ _globals['_INTERRUPTVALUES_VALUESENTRY']._serialized_start=1390
102
+ _globals['_INTERRUPTVALUES_VALUESENTRY']._serialized_end=1466
103
+ _globals['_GOTO']._serialized_start=1468
104
+ _globals['_GOTO']._serialized_end=1542
105
+ _globals['_GRAPHBUBBLEUP']._serialized_start=1544
106
+ _globals['_GRAPHBUBBLEUP']._serialized_end=1559
107
+ _globals['_PARENTCOMMAND']._serialized_start=1561
108
+ _globals['_PARENTCOMMAND']._serialized_end=1616
109
+ _globals['_GRAPHINTERRUPT']._serialized_start=1618
110
+ _globals['_GRAPHINTERRUPT']._serialized_end=1679
111
+ _globals['_INTERRUPT']._serialized_start=1681
112
+ _globals['_INTERRUPT']._serialized_end=1750
113
+ _globals['_WRAPPEDINTERRUPTS']._serialized_start=1752
114
+ _globals['_WRAPPEDINTERRUPTS']._serialized_end=1878
115
+ _globals['_WRITE']._serialized_start=1880
116
+ _globals['_WRITE']._serialized_end=1947
117
+ _globals['_PENDINGWRITE']._serialized_start=1949
118
+ _globals['_PENDINGWRITE']._serialized_end=2040
119
+ _globals['_CHANNELVERSIONS']._serialized_start=2043
120
+ _globals['_CHANNELVERSIONS']._serialized_end=2194
121
+ _globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._serialized_start=2140
122
+ _globals['_CHANNELVERSIONS_CHANNELVERSIONSENTRY']._serialized_end=2194
123
+ _globals['_ENGINERUNNABLECONFIG']._serialized_start=2197
124
+ _globals['_ENGINERUNNABLECONFIG']._serialized_end=3571
125
+ _globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._serialized_start=3060
126
+ _globals['_ENGINERUNNABLECONFIG_METADATAJSONENTRY']._serialized_end=3111
127
+ _globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._serialized_start=3113
128
+ _globals['_ENGINERUNNABLECONFIG_EXTRACONFIGURABLEJSONENTRY']._serialized_end=3173
129
+ _globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._serialized_start=3175
130
+ _globals['_ENGINERUNNABLECONFIG_EXTRAJSONENTRY']._serialized_end=3223
131
+ _globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._serialized_start=3225
132
+ _globals['_ENGINERUNNABLECONFIG_CHECKPOINTMAPENTRY']._serialized_end=3277
133
+ _globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._serialized_start=3279
134
+ _globals['_ENGINERUNNABLECONFIG_RESUMEMAPENTRY']._serialized_end=3358
135
+ _globals['_RUNTIME']._serialized_start=3574
136
+ _globals['_RUNTIME']._serialized_end=3711
137
+ _globals['_SUBGRAPH']._serialized_start=3713
138
+ _globals['_SUBGRAPH']._serialized_end=3741
139
+ _globals['_TASK']._serialized_start=3744
140
+ _globals['_TASK']._serialized_end=4067
141
+ _globals['_TASKRESULT']._serialized_start=4070
142
+ _globals['_TASKRESULT']._serialized_end=4294
143
+ _globals['_CHECKPOINTREF']._serialized_start=4297
144
+ _globals['_CHECKPOINTREF']._serialized_end=4503
145
+ _globals['_CHECKPOINTREF_CHECKPOINTMAPENTRY']._serialized_start=3225
146
+ _globals['_CHECKPOINTREF_CHECKPOINTMAPENTRY']._serialized_end=3277
147
+ _globals['_PREGELTASKSNAPSHOT']._serialized_start=4506
148
+ _globals['_PREGELTASKSNAPSHOT']._serialized_end=4824
149
+ _globals['_CHECKPOINT']._serialized_start=4827
150
+ _globals['_CHECKPOINT']._serialized_end=5331
151
+ _globals['_CHECKPOINT_CHANNELVALUESENTRY']._serialized_start=5111
152
+ _globals['_CHECKPOINT_CHANNELVALUESENTRY']._serialized_end=5191
153
+ _globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._serialized_start=2140
154
+ _globals['_CHECKPOINT_CHANNELVERSIONSENTRY']._serialized_end=2194
155
+ _globals['_CHECKPOINT_VERSIONSSEENENTRY']._serialized_start=5249
156
+ _globals['_CHECKPOINT_VERSIONSSEENENTRY']._serialized_end=5331
157
+ _globals['_CHECKPOINTMETADATA']._serialized_start=5334
158
+ _globals['_CHECKPOINTMETADATA']._serialized_end=5655
159
+ _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_start=5522
160
+ _globals['_CHECKPOINTMETADATA_PARENTSENTRY']._serialized_end=5568
161
+ _globals['_CHECKPOINTMETADATA_CHECKPOINTSOURCE']._serialized_start=5570
162
+ _globals['_CHECKPOINTMETADATA_CHECKPOINTSOURCE']._serialized_end=5644
163
+ _globals['_CHECKPOINTTUPLE']._serialized_start=5658
164
+ _globals['_CHECKPOINTTUPLE']._serialized_end=5936
165
+ _globals['_UPDATES']._serialized_start=5938
166
+ _globals['_UPDATES']._serialized_end=6061
167
+ _globals['_TOOLCALL']._serialized_start=6063
168
+ _globals['_TOOLCALL']._serialized_end=6148
169
+ _globals['_TOOLCALLCHUNK']._serialized_start=6151
170
+ _globals['_TOOLCALLCHUNK']._serialized_end=6345
171
+ _globals['_INVALIDTOOLCALL']._serialized_start=6348
172
+ _globals['_INVALIDTOOLCALL']._serialized_end=6540
173
+ _globals['_INPUTTOKENDETAILS']._serialized_start=6543
174
+ _globals['_INPUTTOKENDETAILS']._serialized_end=6708
175
+ _globals['_OUTPUTTOKENDETAILS']._serialized_start=6710
176
+ _globals['_OUTPUTTOKENDETAILS']._serialized_end=6822
177
+ _globals['_USAGEMETADATA']._serialized_start=6825
178
+ _globals['_USAGEMETADATA']._serialized_end=7033
179
+ _globals['_RESPONSEMETADATA']._serialized_start=7035
180
+ _globals['_RESPONSEMETADATA']._serialized_end=7154
181
+ _globals['_RESPONSEMETADATA_DATAENTRY']._serialized_start=7111
182
+ _globals['_RESPONSEMETADATA_DATAENTRY']._serialized_end=7154
183
+ _globals['_AIFIELDS']._serialized_start=7157
184
+ _globals['_AIFIELDS']._serialized_end=7593
185
+ _globals['_TOOLFIELDS']._serialized_start=7596
186
+ _globals['_TOOLFIELDS']._serialized_end=7743
187
+ _globals['_HUMANFIELDS']._serialized_start=7745
188
+ _globals['_HUMANFIELDS']._serialized_end=7758
189
+ _globals['_CONTENT']._serialized_start=7760
190
+ _globals['_CONTENT']._serialized_end=7843
191
+ _globals['_CONTENTBLOCKS']._serialized_start=7845
192
+ _globals['_CONTENTBLOCKS']._serialized_end=7903
193
+ _globals['_CONTENTBLOCK']._serialized_start=7905
194
+ _globals['_CONTENTBLOCK']._serialized_end=7996
195
+ _globals['_STRUCTUREDBLOCK']._serialized_start=7998
196
+ _globals['_STRUCTUREDBLOCK']._serialized_end=8092
197
+ _globals['_CHATMESSAGE']._serialized_start=8095
198
+ _globals['_CHATMESSAGE']._serialized_end=8570
199
+ _globals['_CHATMESSAGE_ADDITIONALKWARGSENTRY']._serialized_start=8453
200
+ _globals['_CHATMESSAGE_ADDITIONALKWARGSENTRY']._serialized_end=8508
201
+ _globals['_CHATMESSAGE_EXTENSIONSENTRY']._serialized_start=8510
202
+ _globals['_CHATMESSAGE_EXTENSIONSENTRY']._serialized_end=8559
203
+ _globals['_CHATMESSAGEENVELOPE']._serialized_start=8573
204
+ _globals['_CHATMESSAGEENVELOPE']._serialized_end=8759
205
+ _globals['_STATESNAPSHOT']._serialized_start=8762
206
+ _globals['_STATESNAPSHOT']._serialized_end=9150
207
+ _globals['_STATEUPDATE']._serialized_start=9153
208
+ _globals['_STATEUPDATE']._serialized_end=9281
209
+ _globals['_SUPERSTEPUPDATES']._serialized_start=9283
210
+ _globals['_SUPERSTEPUPDATES']._serialized_end=9345
211
+ _globals['_STRINGORSLICE']._serialized_start=9347
212
+ _globals['_STRINGORSLICE']._serialized_end=9397
213
+ _globals['_PATHSEGMENT']._serialized_start=9399
214
+ _globals['_PATHSEGMENT']._serialized_end=9488
215
+ _globals['_STATICINTERRUPTCONFIG']._serialized_start=9491
216
+ _globals['_STATICINTERRUPTCONFIG']._serialized_end=9636
217
+ _globals['_STATICINTERRUPTCONFIG_NODENAMES']._serialized_start=9600
218
+ _globals['_STATICINTERRUPTCONFIG_NODENAMES']._serialized_end=9626
219
+ # @@protoc_insertion_point(module_scope)