@@ -134,6 +134,11 @@ def __init__(self, channel):
134
134
request_serializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .SuggestColumnDefinitionRequest .SerializeToString ,
135
135
response_deserializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .SuggestColumnDefinitionResponse .FromString ,
136
136
)
137
+ self .EnhanceColumnDefinitionInstructions = channel .unary_unary (
138
+ '/agent.agent.v1alpha.AgentPublicService/EnhanceColumnDefinitionInstructions' ,
139
+ request_serializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .EnhanceColumnDefinitionInstructionsRequest .SerializeToString ,
140
+ response_deserializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .EnhanceColumnDefinitionInstructionsResponse .FromString ,
141
+ )
137
142
self .GetColumnDefinition = channel .unary_unary (
138
143
'/agent.agent.v1alpha.AgentPublicService/GetColumnDefinition' ,
139
144
request_serializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .GetColumnDefinitionRequest .SerializeToString ,
@@ -471,6 +476,15 @@ def SuggestColumnDefinition(self, request, context):
471
476
context .set_details ('Method not implemented!' )
472
477
raise NotImplementedError ('Method not implemented!' )
473
478
479
+ def EnhanceColumnDefinitionInstructions (self , request , context ):
480
+ """Enhance column definition instructions
481
+
482
+ Enhances the instructions of a column definition.
483
+ """
484
+ context .set_code (grpc .StatusCode .UNIMPLEMENTED )
485
+ context .set_details ('Method not implemented!' )
486
+ raise NotImplementedError ('Method not implemented!' )
487
+
474
488
def GetColumnDefinition (self , request , context ):
475
489
"""Get column definition
476
490
@@ -807,6 +821,11 @@ def add_AgentPublicServiceServicer_to_server(servicer, server):
807
821
request_deserializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .SuggestColumnDefinitionRequest .FromString ,
808
822
response_serializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .SuggestColumnDefinitionResponse .SerializeToString ,
809
823
),
824
+ 'EnhanceColumnDefinitionInstructions' : grpc .unary_unary_rpc_method_handler (
825
+ servicer .EnhanceColumnDefinitionInstructions ,
826
+ request_deserializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .EnhanceColumnDefinitionInstructionsRequest .FromString ,
827
+ response_serializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .EnhanceColumnDefinitionInstructionsResponse .SerializeToString ,
828
+ ),
810
829
'GetColumnDefinition' : grpc .unary_unary_rpc_method_handler (
811
830
servicer .GetColumnDefinition ,
812
831
request_deserializer = agent_dot_agent_dot_v1alpha_dot_table__pb2 .GetColumnDefinitionRequest .FromString ,
@@ -1330,6 +1349,23 @@ def SuggestColumnDefinition(request,
1330
1349
options , channel_credentials ,
1331
1350
insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
1332
1351
1352
+ @staticmethod
1353
+ def EnhanceColumnDefinitionInstructions (request ,
1354
+ target ,
1355
+ options = (),
1356
+ channel_credentials = None ,
1357
+ call_credentials = None ,
1358
+ insecure = False ,
1359
+ compression = None ,
1360
+ wait_for_ready = None ,
1361
+ timeout = None ,
1362
+ metadata = None ):
1363
+ return grpc .experimental .unary_unary (request , target , '/agent.agent.v1alpha.AgentPublicService/EnhanceColumnDefinitionInstructions' ,
1364
+ agent_dot_agent_dot_v1alpha_dot_table__pb2 .EnhanceColumnDefinitionInstructionsRequest .SerializeToString ,
1365
+ agent_dot_agent_dot_v1alpha_dot_table__pb2 .EnhanceColumnDefinitionInstructionsResponse .FromString ,
1366
+ options , channel_credentials ,
1367
+ insecure , call_credentials , compression , wait_for_ready , timeout , metadata )
1368
+
1333
1369
@staticmethod
1334
1370
def GetColumnDefinition (request ,
1335
1371
target ,
0 commit comments