nominal-api-protos 0.980.0__py3-none-any.whl → 0.990.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- nominal_api_protos/nominal/ai/v1/ai_agent_pb2.py +121 -0
- nominal_api_protos/nominal/ai/v1/ai_agent_pb2.pyi +349 -0
- nominal_api_protos/nominal/ai/v1/ai_agent_pb2_grpc.py +321 -0
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.py +8 -84
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2.pyi +8 -312
- nominal_api_protos/nominal/ai/v1/workbook_agent_pb2_grpc.py +40 -36
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.py +64 -56
- nominal_api_protos/nominal/data_connector/v1/data_connector_pb2.pyi +43 -10
- nominal_api_protos/nominal/data_connector/v1/opc_ua_connector_pb2.py +117 -0
- nominal_api_protos/nominal/data_connector/v1/{opc_ua_pb2_grpc.py → opc_ua_connector_pb2_grpc.py} +1 -1
- nominal_api_protos/nominal_write_pb2.py +24 -14
- nominal_api_protos/nominal_write_pb2.pyi +40 -2
- {nominal_api_protos-0.980.0.dist-info → nominal_api_protos-0.990.0.dist-info}/METADATA +1 -1
- {nominal_api_protos-0.980.0.dist-info → nominal_api_protos-0.990.0.dist-info}/RECORD +17 -14
- nominal_api_protos/nominal/data_connector/v1/opc_ua_pb2.py +0 -117
- /nominal_api_protos/nominal/data_connector/v1/{opc_ua_pb2.pyi → opc_ua_connector_pb2.pyi} +0 -0
- {nominal_api_protos-0.980.0.dist-info → nominal_api_protos-0.990.0.dist-info}/WHEEL +0 -0
- {nominal_api_protos-0.980.0.dist-info → nominal_api_protos-0.990.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
from nominal.ai.v1 import ai_agent_pb2 as nominal_dot_ai_dot_v1_dot_ai__agent__pb2
|
|
7
|
+
|
|
8
|
+
GRPC_GENERATED_VERSION = '1.76.0'
|
|
9
|
+
GRPC_VERSION = grpc.__version__
|
|
10
|
+
_version_not_supported = False
|
|
11
|
+
|
|
12
|
+
try:
|
|
13
|
+
from grpc._utilities import first_version_is_lower
|
|
14
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
15
|
+
except ImportError:
|
|
16
|
+
_version_not_supported = True
|
|
17
|
+
|
|
18
|
+
if _version_not_supported:
|
|
19
|
+
raise RuntimeError(
|
|
20
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
21
|
+
+ ' but the generated code in nominal/ai/v1/ai_agent_pb2_grpc.py depends on'
|
|
22
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
23
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
24
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class AIAgentServiceStub(object):
|
|
29
|
+
"""AIAgentService provides AI-powered assistance for general operations
|
|
30
|
+
"""
|
|
31
|
+
|
|
32
|
+
def __init__(self, channel):
|
|
33
|
+
"""Constructor.
|
|
34
|
+
|
|
35
|
+
Args:
|
|
36
|
+
channel: A grpc.Channel.
|
|
37
|
+
"""
|
|
38
|
+
self.StreamChat = channel.unary_stream(
|
|
39
|
+
'/nominal.ai.v1.AIAgentService/StreamChat',
|
|
40
|
+
request_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.StreamChatRequest.SerializeToString,
|
|
41
|
+
response_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.StreamChatResponse.FromString,
|
|
42
|
+
_registered_method=True)
|
|
43
|
+
self.GetConversation = channel.unary_unary(
|
|
44
|
+
'/nominal.ai.v1.AIAgentService/GetConversation',
|
|
45
|
+
request_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.GetConversationRequest.SerializeToString,
|
|
46
|
+
response_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.GetConversationResponse.FromString,
|
|
47
|
+
_registered_method=True)
|
|
48
|
+
self.ListConversations = channel.unary_unary(
|
|
49
|
+
'/nominal.ai.v1.AIAgentService/ListConversations',
|
|
50
|
+
request_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.ListConversationsRequest.SerializeToString,
|
|
51
|
+
response_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.ListConversationsResponse.FromString,
|
|
52
|
+
_registered_method=True)
|
|
53
|
+
self.CreateConversation = channel.unary_unary(
|
|
54
|
+
'/nominal.ai.v1.AIAgentService/CreateConversation',
|
|
55
|
+
request_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.CreateConversationRequest.SerializeToString,
|
|
56
|
+
response_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.CreateConversationResponse.FromString,
|
|
57
|
+
_registered_method=True)
|
|
58
|
+
self.UpdateConversationMetadata = channel.unary_unary(
|
|
59
|
+
'/nominal.ai.v1.AIAgentService/UpdateConversationMetadata',
|
|
60
|
+
request_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.UpdateConversationMetadataRequest.SerializeToString,
|
|
61
|
+
response_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.UpdateConversationMetadataResponse.FromString,
|
|
62
|
+
_registered_method=True)
|
|
63
|
+
self.DeleteConversation = channel.unary_unary(
|
|
64
|
+
'/nominal.ai.v1.AIAgentService/DeleteConversation',
|
|
65
|
+
request_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.DeleteConversationRequest.SerializeToString,
|
|
66
|
+
response_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.DeleteConversationResponse.FromString,
|
|
67
|
+
_registered_method=True)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
class AIAgentServiceServicer(object):
|
|
71
|
+
"""AIAgentService provides AI-powered assistance for general operations
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
def StreamChat(self, request, context):
|
|
75
|
+
"""StreamChat handles bidirectional streaming chat for AI agent
|
|
76
|
+
"""
|
|
77
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
78
|
+
context.set_details('Method not implemented!')
|
|
79
|
+
raise NotImplementedError('Method not implemented!')
|
|
80
|
+
|
|
81
|
+
def GetConversation(self, request, context):
|
|
82
|
+
"""GetConversation handles getting a complete conversation list, with an optional limit on number of messages returned
|
|
83
|
+
"""
|
|
84
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
85
|
+
context.set_details('Method not implemented!')
|
|
86
|
+
raise NotImplementedError('Method not implemented!')
|
|
87
|
+
|
|
88
|
+
def ListConversations(self, request, context):
|
|
89
|
+
"""ListConversations handles getting the list of conversation ids ordered by most recently updated
|
|
90
|
+
"""
|
|
91
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
92
|
+
context.set_details('Method not implemented!')
|
|
93
|
+
raise NotImplementedError('Method not implemented!')
|
|
94
|
+
|
|
95
|
+
def CreateConversation(self, request, context):
|
|
96
|
+
"""CreateConversation handles creating a conversation and assigning it a conversation rid
|
|
97
|
+
"""
|
|
98
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
99
|
+
context.set_details('Method not implemented!')
|
|
100
|
+
raise NotImplementedError('Method not implemented!')
|
|
101
|
+
|
|
102
|
+
def UpdateConversationMetadata(self, request, context):
|
|
103
|
+
"""UpdateConversationMetadata handles updating any metadata associated with a conversation
|
|
104
|
+
"""
|
|
105
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
106
|
+
context.set_details('Method not implemented!')
|
|
107
|
+
raise NotImplementedError('Method not implemented!')
|
|
108
|
+
|
|
109
|
+
def DeleteConversation(self, request, context):
|
|
110
|
+
"""DeleteConversation handles deleting a specific conversation by conversation rid
|
|
111
|
+
"""
|
|
112
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
113
|
+
context.set_details('Method not implemented!')
|
|
114
|
+
raise NotImplementedError('Method not implemented!')
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
def add_AIAgentServiceServicer_to_server(servicer, server):
|
|
118
|
+
rpc_method_handlers = {
|
|
119
|
+
'StreamChat': grpc.unary_stream_rpc_method_handler(
|
|
120
|
+
servicer.StreamChat,
|
|
121
|
+
request_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.StreamChatRequest.FromString,
|
|
122
|
+
response_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.StreamChatResponse.SerializeToString,
|
|
123
|
+
),
|
|
124
|
+
'GetConversation': grpc.unary_unary_rpc_method_handler(
|
|
125
|
+
servicer.GetConversation,
|
|
126
|
+
request_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.GetConversationRequest.FromString,
|
|
127
|
+
response_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.GetConversationResponse.SerializeToString,
|
|
128
|
+
),
|
|
129
|
+
'ListConversations': grpc.unary_unary_rpc_method_handler(
|
|
130
|
+
servicer.ListConversations,
|
|
131
|
+
request_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.ListConversationsRequest.FromString,
|
|
132
|
+
response_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.ListConversationsResponse.SerializeToString,
|
|
133
|
+
),
|
|
134
|
+
'CreateConversation': grpc.unary_unary_rpc_method_handler(
|
|
135
|
+
servicer.CreateConversation,
|
|
136
|
+
request_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.CreateConversationRequest.FromString,
|
|
137
|
+
response_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.CreateConversationResponse.SerializeToString,
|
|
138
|
+
),
|
|
139
|
+
'UpdateConversationMetadata': grpc.unary_unary_rpc_method_handler(
|
|
140
|
+
servicer.UpdateConversationMetadata,
|
|
141
|
+
request_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.UpdateConversationMetadataRequest.FromString,
|
|
142
|
+
response_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.UpdateConversationMetadataResponse.SerializeToString,
|
|
143
|
+
),
|
|
144
|
+
'DeleteConversation': grpc.unary_unary_rpc_method_handler(
|
|
145
|
+
servicer.DeleteConversation,
|
|
146
|
+
request_deserializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.DeleteConversationRequest.FromString,
|
|
147
|
+
response_serializer=nominal_dot_ai_dot_v1_dot_ai__agent__pb2.DeleteConversationResponse.SerializeToString,
|
|
148
|
+
),
|
|
149
|
+
}
|
|
150
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
151
|
+
'nominal.ai.v1.AIAgentService', rpc_method_handlers)
|
|
152
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
153
|
+
server.add_registered_method_handlers('nominal.ai.v1.AIAgentService', rpc_method_handlers)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
# This class is part of an EXPERIMENTAL API.
|
|
157
|
+
class AIAgentService(object):
|
|
158
|
+
"""AIAgentService provides AI-powered assistance for general operations
|
|
159
|
+
"""
|
|
160
|
+
|
|
161
|
+
@staticmethod
|
|
162
|
+
def StreamChat(request,
|
|
163
|
+
target,
|
|
164
|
+
options=(),
|
|
165
|
+
channel_credentials=None,
|
|
166
|
+
call_credentials=None,
|
|
167
|
+
insecure=False,
|
|
168
|
+
compression=None,
|
|
169
|
+
wait_for_ready=None,
|
|
170
|
+
timeout=None,
|
|
171
|
+
metadata=None):
|
|
172
|
+
return grpc.experimental.unary_stream(
|
|
173
|
+
request,
|
|
174
|
+
target,
|
|
175
|
+
'/nominal.ai.v1.AIAgentService/StreamChat',
|
|
176
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.StreamChatRequest.SerializeToString,
|
|
177
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.StreamChatResponse.FromString,
|
|
178
|
+
options,
|
|
179
|
+
channel_credentials,
|
|
180
|
+
insecure,
|
|
181
|
+
call_credentials,
|
|
182
|
+
compression,
|
|
183
|
+
wait_for_ready,
|
|
184
|
+
timeout,
|
|
185
|
+
metadata,
|
|
186
|
+
_registered_method=True)
|
|
187
|
+
|
|
188
|
+
@staticmethod
|
|
189
|
+
def GetConversation(request,
|
|
190
|
+
target,
|
|
191
|
+
options=(),
|
|
192
|
+
channel_credentials=None,
|
|
193
|
+
call_credentials=None,
|
|
194
|
+
insecure=False,
|
|
195
|
+
compression=None,
|
|
196
|
+
wait_for_ready=None,
|
|
197
|
+
timeout=None,
|
|
198
|
+
metadata=None):
|
|
199
|
+
return grpc.experimental.unary_unary(
|
|
200
|
+
request,
|
|
201
|
+
target,
|
|
202
|
+
'/nominal.ai.v1.AIAgentService/GetConversation',
|
|
203
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.GetConversationRequest.SerializeToString,
|
|
204
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.GetConversationResponse.FromString,
|
|
205
|
+
options,
|
|
206
|
+
channel_credentials,
|
|
207
|
+
insecure,
|
|
208
|
+
call_credentials,
|
|
209
|
+
compression,
|
|
210
|
+
wait_for_ready,
|
|
211
|
+
timeout,
|
|
212
|
+
metadata,
|
|
213
|
+
_registered_method=True)
|
|
214
|
+
|
|
215
|
+
@staticmethod
|
|
216
|
+
def ListConversations(request,
|
|
217
|
+
target,
|
|
218
|
+
options=(),
|
|
219
|
+
channel_credentials=None,
|
|
220
|
+
call_credentials=None,
|
|
221
|
+
insecure=False,
|
|
222
|
+
compression=None,
|
|
223
|
+
wait_for_ready=None,
|
|
224
|
+
timeout=None,
|
|
225
|
+
metadata=None):
|
|
226
|
+
return grpc.experimental.unary_unary(
|
|
227
|
+
request,
|
|
228
|
+
target,
|
|
229
|
+
'/nominal.ai.v1.AIAgentService/ListConversations',
|
|
230
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.ListConversationsRequest.SerializeToString,
|
|
231
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.ListConversationsResponse.FromString,
|
|
232
|
+
options,
|
|
233
|
+
channel_credentials,
|
|
234
|
+
insecure,
|
|
235
|
+
call_credentials,
|
|
236
|
+
compression,
|
|
237
|
+
wait_for_ready,
|
|
238
|
+
timeout,
|
|
239
|
+
metadata,
|
|
240
|
+
_registered_method=True)
|
|
241
|
+
|
|
242
|
+
@staticmethod
|
|
243
|
+
def CreateConversation(request,
|
|
244
|
+
target,
|
|
245
|
+
options=(),
|
|
246
|
+
channel_credentials=None,
|
|
247
|
+
call_credentials=None,
|
|
248
|
+
insecure=False,
|
|
249
|
+
compression=None,
|
|
250
|
+
wait_for_ready=None,
|
|
251
|
+
timeout=None,
|
|
252
|
+
metadata=None):
|
|
253
|
+
return grpc.experimental.unary_unary(
|
|
254
|
+
request,
|
|
255
|
+
target,
|
|
256
|
+
'/nominal.ai.v1.AIAgentService/CreateConversation',
|
|
257
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.CreateConversationRequest.SerializeToString,
|
|
258
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.CreateConversationResponse.FromString,
|
|
259
|
+
options,
|
|
260
|
+
channel_credentials,
|
|
261
|
+
insecure,
|
|
262
|
+
call_credentials,
|
|
263
|
+
compression,
|
|
264
|
+
wait_for_ready,
|
|
265
|
+
timeout,
|
|
266
|
+
metadata,
|
|
267
|
+
_registered_method=True)
|
|
268
|
+
|
|
269
|
+
@staticmethod
|
|
270
|
+
def UpdateConversationMetadata(request,
|
|
271
|
+
target,
|
|
272
|
+
options=(),
|
|
273
|
+
channel_credentials=None,
|
|
274
|
+
call_credentials=None,
|
|
275
|
+
insecure=False,
|
|
276
|
+
compression=None,
|
|
277
|
+
wait_for_ready=None,
|
|
278
|
+
timeout=None,
|
|
279
|
+
metadata=None):
|
|
280
|
+
return grpc.experimental.unary_unary(
|
|
281
|
+
request,
|
|
282
|
+
target,
|
|
283
|
+
'/nominal.ai.v1.AIAgentService/UpdateConversationMetadata',
|
|
284
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.UpdateConversationMetadataRequest.SerializeToString,
|
|
285
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.UpdateConversationMetadataResponse.FromString,
|
|
286
|
+
options,
|
|
287
|
+
channel_credentials,
|
|
288
|
+
insecure,
|
|
289
|
+
call_credentials,
|
|
290
|
+
compression,
|
|
291
|
+
wait_for_ready,
|
|
292
|
+
timeout,
|
|
293
|
+
metadata,
|
|
294
|
+
_registered_method=True)
|
|
295
|
+
|
|
296
|
+
@staticmethod
|
|
297
|
+
def DeleteConversation(request,
|
|
298
|
+
target,
|
|
299
|
+
options=(),
|
|
300
|
+
channel_credentials=None,
|
|
301
|
+
call_credentials=None,
|
|
302
|
+
insecure=False,
|
|
303
|
+
compression=None,
|
|
304
|
+
wait_for_ready=None,
|
|
305
|
+
timeout=None,
|
|
306
|
+
metadata=None):
|
|
307
|
+
return grpc.experimental.unary_unary(
|
|
308
|
+
request,
|
|
309
|
+
target,
|
|
310
|
+
'/nominal.ai.v1.AIAgentService/DeleteConversation',
|
|
311
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.DeleteConversationRequest.SerializeToString,
|
|
312
|
+
nominal_dot_ai_dot_v1_dot_ai__agent__pb2.DeleteConversationResponse.FromString,
|
|
313
|
+
options,
|
|
314
|
+
channel_credentials,
|
|
315
|
+
insecure,
|
|
316
|
+
call_credentials,
|
|
317
|
+
compression,
|
|
318
|
+
wait_for_ready,
|
|
319
|
+
timeout,
|
|
320
|
+
metadata,
|
|
321
|
+
_registered_method=True)
|
|
@@ -22,96 +22,20 @@ _runtime_version.ValidateProtobufRuntimeVersion(
|
|
|
22
22
|
_sym_db = _symbol_database.Default()
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
from
|
|
25
|
+
from nominal.ai.v1 import ai_agent_pb2 as nominal_dot_ai_dot_v1_dot_ai__agent__pb2
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"nominal/ai/v1/workbook_agent.proto\x12\rnominal.ai.v1\x1a\
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"nominal/ai/v1/workbook_agent.proto\x12\rnominal.ai.v1\x1a\x1cnominal/ai/v1/ai_agent.proto\"\xd5\x02\n%WorkbookAgentServiceStreamChatRequest\x12-\n\x08messages\x18\x01 \x03(\x0b\x32\x1b.nominal.ai.v1.ModelMessage\x12\x1d\n\x10notebook_as_json\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x1f\n\x12selected_tab_index\x18\x03 \x01(\x05H\x01\x88\x01\x01\x12(\n\x06images\x18\x04 \x03(\x0b\x32\x18.nominal.ai.v1.ImagePart\x12\'\n\x05range\x18\x05 \x01(\x0b\x32\x18.nominal.ai.v1.TimeRange\x12\x32\n\x07message\x18\x06 \x01(\x0b\x32\x1c.nominal.ai.v1.AppendMessageH\x02\x88\x01\x01\x42\x13\n\x11_notebook_as_jsonB\x15\n\x13_selected_tab_indexB\n\n\x08_message\"[\n\rAppendMessage\x12\x30\n\x07message\x18\x01 \x01(\x0b\x32\x1f.nominal.ai.v1.UserModelMessage\x12\x18\n\x10\x63onversation_rid\x18\x02 \x01(\t2\xa3\x05\n\x14WorkbookAgentService\x12g\n\nStreamChat\x12\x34.nominal.ai.v1.WorkbookAgentServiceStreamChatRequest\x1a!.nominal.ai.v1.StreamChatResponse0\x01\x12`\n\x0fGetConversation\x12%.nominal.ai.v1.GetConversationRequest\x1a&.nominal.ai.v1.GetConversationResponse\x12\x66\n\x11ListConversations\x12\'.nominal.ai.v1.ListConversationsRequest\x1a(.nominal.ai.v1.ListConversationsResponse\x12i\n\x12\x43reateConversation\x12(.nominal.ai.v1.CreateConversationRequest\x1a).nominal.ai.v1.CreateConversationResponse\x12\x81\x01\n\x1aUpdateConversationMetadata\x12\x30.nominal.ai.v1.UpdateConversationMetadataRequest\x1a\x31.nominal.ai.v1.UpdateConversationMetadataResponse\x12i\n\x12\x44\x65leteConversation\x12(.nominal.ai.v1.DeleteConversationRequest\x1a).nominal.ai.v1.DeleteConversationResponseb\x06proto3')
|
|
29
29
|
|
|
30
30
|
_globals = globals()
|
|
31
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
32
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'nominal.ai.v1.workbook_agent_pb2', _globals)
|
|
33
33
|
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
34
|
DESCRIPTOR._loaded_options = None
|
|
35
|
-
_globals['
|
|
36
|
-
_globals['
|
|
37
|
-
_globals['_APPENDMESSAGE']._serialized_start=
|
|
38
|
-
_globals['_APPENDMESSAGE']._serialized_end=
|
|
39
|
-
_globals['
|
|
40
|
-
_globals['
|
|
41
|
-
_globals['_CREATECONVERSATIONRESPONSE']._serialized_start=689
|
|
42
|
-
_globals['_CREATECONVERSATIONRESPONSE']._serialized_end=747
|
|
43
|
-
_globals['_UPDATECONVERSATIONMETADATAREQUEST']._serialized_start=749
|
|
44
|
-
_globals['_UPDATECONVERSATIONMETADATAREQUEST']._serialized_end=825
|
|
45
|
-
_globals['_UPDATECONVERSATIONMETADATARESPONSE']._serialized_start=827
|
|
46
|
-
_globals['_UPDATECONVERSATIONMETADATARESPONSE']._serialized_end=863
|
|
47
|
-
_globals['_DELETECONVERSATIONREQUEST']._serialized_start=865
|
|
48
|
-
_globals['_DELETECONVERSATIONREQUEST']._serialized_end=918
|
|
49
|
-
_globals['_DELETECONVERSATIONRESPONSE']._serialized_start=920
|
|
50
|
-
_globals['_DELETECONVERSATIONRESPONSE']._serialized_end=948
|
|
51
|
-
_globals['_GETCONVERSATIONREQUEST']._serialized_start=951
|
|
52
|
-
_globals['_GETCONVERSATIONREQUEST']._serialized_end=1117
|
|
53
|
-
_globals['_MODELMESSAGEWITHID']._serialized_start=1120
|
|
54
|
-
_globals['_MODELMESSAGEWITHID']._serialized_end=1269
|
|
55
|
-
_globals['_GETCONVERSATIONRESPONSE']._serialized_start=1271
|
|
56
|
-
_globals['_GETCONVERSATIONRESPONSE']._serialized_end=1357
|
|
57
|
-
_globals['_LISTCONVERSATIONSREQUEST']._serialized_start=1359
|
|
58
|
-
_globals['_LISTCONVERSATIONSREQUEST']._serialized_end=1408
|
|
59
|
-
_globals['_CONVERSATIONMETADATA']._serialized_start=1411
|
|
60
|
-
_globals['_CONVERSATIONMETADATA']._serialized_end=1575
|
|
61
|
-
_globals['_LISTCONVERSATIONSRESPONSE']._serialized_start=1577
|
|
62
|
-
_globals['_LISTCONVERSATIONSRESPONSE']._serialized_end=1664
|
|
63
|
-
_globals['_TIMERANGE']._serialized_start=1666
|
|
64
|
-
_globals['_TIMERANGE']._serialized_end=1769
|
|
65
|
-
_globals['_TIMESTAMP']._serialized_start=1771
|
|
66
|
-
_globals['_TIMESTAMP']._serialized_end=1820
|
|
67
|
-
_globals['_MODELMESSAGE']._serialized_start=1823
|
|
68
|
-
_globals['_MODELMESSAGE']._serialized_end=1953
|
|
69
|
-
_globals['_USERMODELMESSAGE']._serialized_start=1955
|
|
70
|
-
_globals['_USERMODELMESSAGE']._serialized_end=2019
|
|
71
|
-
_globals['_ASSISTANTMODELMESSAGE']._serialized_start=2021
|
|
72
|
-
_globals['_ASSISTANTMODELMESSAGE']._serialized_end=2104
|
|
73
|
-
_globals['_USERCONTENTPART']._serialized_start=2106
|
|
74
|
-
_globals['_USERCONTENTPART']._serialized_end=2172
|
|
75
|
-
_globals['_ASSISTANTCONTENTPART']._serialized_start=2174
|
|
76
|
-
_globals['_ASSISTANTCONTENTPART']._serialized_end=2296
|
|
77
|
-
_globals['_TEXTPART']._serialized_start=2298
|
|
78
|
-
_globals['_TEXTPART']._serialized_end=2322
|
|
79
|
-
_globals['_IMAGEPART']._serialized_start=2324
|
|
80
|
-
_globals['_IMAGEPART']._serialized_end=2425
|
|
81
|
-
_globals['_REASONINGPART']._serialized_start=2427
|
|
82
|
-
_globals['_REASONINGPART']._serialized_end=2461
|
|
83
|
-
_globals['_STREAMCHATRESPONSE']._serialized_start=2464
|
|
84
|
-
_globals['_STREAMCHATRESPONSE']._serialized_end=2998
|
|
85
|
-
_globals['_FINISH']._serialized_start=3000
|
|
86
|
-
_globals['_FINISH']._serialized_end=3037
|
|
87
|
-
_globals['_ERROR']._serialized_start=3039
|
|
88
|
-
_globals['_ERROR']._serialized_end=3063
|
|
89
|
-
_globals['_TEXTSTART']._serialized_start=3065
|
|
90
|
-
_globals['_TEXTSTART']._serialized_end=3088
|
|
91
|
-
_globals['_TEXTDELTA']._serialized_start=3090
|
|
92
|
-
_globals['_TEXTDELTA']._serialized_end=3128
|
|
93
|
-
_globals['_TEXTEND']._serialized_start=3130
|
|
94
|
-
_globals['_TEXTEND']._serialized_end=3151
|
|
95
|
-
_globals['_REASONINGSTART']._serialized_start=3153
|
|
96
|
-
_globals['_REASONINGSTART']._serialized_end=3181
|
|
97
|
-
_globals['_REASONINGDELTA']._serialized_start=3183
|
|
98
|
-
_globals['_REASONINGDELTA']._serialized_end=3226
|
|
99
|
-
_globals['_REASONINGEND']._serialized_start=3228
|
|
100
|
-
_globals['_REASONINGEND']._serialized_end=3254
|
|
101
|
-
_globals['_ADDTABMUTATION']._serialized_start=3256
|
|
102
|
-
_globals['_ADDTABMUTATION']._serialized_end=3308
|
|
103
|
-
_globals['_ADDORUPDATEPANELMUTATION']._serialized_start=3310
|
|
104
|
-
_globals['_ADDORUPDATEPANELMUTATION']._serialized_end=3396
|
|
105
|
-
_globals['_REMOVEPANELSMUTATION']._serialized_start=3398
|
|
106
|
-
_globals['_REMOVEPANELSMUTATION']._serialized_end=3439
|
|
107
|
-
_globals['_ADDORREPLACEVARIABLEMUTATION']._serialized_start=3442
|
|
108
|
-
_globals['_ADDORREPLACEVARIABLEMUTATION']._serialized_end=3592
|
|
109
|
-
_globals['_DELETEVARIABLESMUTATION']._serialized_start=3594
|
|
110
|
-
_globals['_DELETEVARIABLESMUTATION']._serialized_end=3643
|
|
111
|
-
_globals['_WORKBOOKMUTATION']._serialized_start=3646
|
|
112
|
-
_globals['_WORKBOOKMUTATION']._serialized_end=4020
|
|
113
|
-
_globals['_TOOLACTION']._serialized_start=4022
|
|
114
|
-
_globals['_TOOLACTION']._serialized_end=4114
|
|
115
|
-
_globals['_WORKBOOKAGENTSERVICE']._serialized_start=4117
|
|
116
|
-
_globals['_WORKBOOKAGENTSERVICE']._serialized_end=4772
|
|
35
|
+
_globals['_WORKBOOKAGENTSERVICESTREAMCHATREQUEST']._serialized_start=84
|
|
36
|
+
_globals['_WORKBOOKAGENTSERVICESTREAMCHATREQUEST']._serialized_end=425
|
|
37
|
+
_globals['_APPENDMESSAGE']._serialized_start=427
|
|
38
|
+
_globals['_APPENDMESSAGE']._serialized_end=518
|
|
39
|
+
_globals['_WORKBOOKAGENTSERVICE']._serialized_start=521
|
|
40
|
+
_globals['_WORKBOOKAGENTSERVICE']._serialized_end=1196
|
|
117
41
|
# @@protoc_insertion_point(module_scope)
|