Files
msw/clip_embedding/msw_pb2_grpc.py
2024-05-16 15:51:06 +08:00

188 lines
6.8 KiB
Python

# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
import warnings
import msw_pb2 as msw__pb2
GRPC_GENERATED_VERSION = '1.63.0'
GRPC_VERSION = grpc.__version__
EXPECTED_ERROR_RELEASE = '1.65.0'
SCHEDULED_RELEASE_DATE = 'June 25, 2024'
_version_not_supported = False
try:
from grpc._utilities import first_version_is_lower
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
except ImportError:
_version_not_supported = True
if _version_not_supported:
warnings.warn(
f'The grpc package installed is at version {GRPC_VERSION},'
+ f' but the generated code in msw_pb2_grpc.py depends on'
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
+ f' This warning will become an error in {EXPECTED_ERROR_RELEASE},'
+ f' scheduled for release on {SCHEDULED_RELEASE_DATE}.',
RuntimeWarning
)
class MSWStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.Version = channel.unary_unary(
'/msw.MSW/Version',
request_serializer=msw__pb2.Empty.SerializeToString,
response_deserializer=msw__pb2.VersionResponse.FromString,
_registered_method=True)
self.ClipEmbeddingForText = channel.unary_unary(
'/msw.MSW/ClipEmbeddingForText',
request_serializer=msw__pb2.ClipEmbeddingForTextRequest.SerializeToString,
response_deserializer=msw__pb2.ClipEmbeddingResponse.FromString,
_registered_method=True)
self.ClipEmbeddingForImage = channel.unary_unary(
'/msw.MSW/ClipEmbeddingForImage',
request_serializer=msw__pb2.ClipEmbeddingForImageRequest.SerializeToString,
response_deserializer=msw__pb2.ClipEmbeddingResponse.FromString,
_registered_method=True)
class MSWServicer(object):
"""Missing associated documentation comment in .proto file."""
def Version(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ClipEmbeddingForText(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ClipEmbeddingForImage(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def add_MSWServicer_to_server(servicer, server):
rpc_method_handlers = {
'Version': grpc.unary_unary_rpc_method_handler(
servicer.Version,
request_deserializer=msw__pb2.Empty.FromString,
response_serializer=msw__pb2.VersionResponse.SerializeToString,
),
'ClipEmbeddingForText': grpc.unary_unary_rpc_method_handler(
servicer.ClipEmbeddingForText,
request_deserializer=msw__pb2.ClipEmbeddingForTextRequest.FromString,
response_serializer=msw__pb2.ClipEmbeddingResponse.SerializeToString,
),
'ClipEmbeddingForImage': grpc.unary_unary_rpc_method_handler(
servicer.ClipEmbeddingForImage,
request_deserializer=msw__pb2.ClipEmbeddingForImageRequest.FromString,
response_serializer=msw__pb2.ClipEmbeddingResponse.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'msw.MSW', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
class MSW(object):
"""Missing associated documentation comment in .proto file."""
@staticmethod
def Version(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(
request,
target,
'/msw.MSW/Version',
msw__pb2.Empty.SerializeToString,
msw__pb2.VersionResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
@staticmethod
def ClipEmbeddingForText(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(
request,
target,
'/msw.MSW/ClipEmbeddingForText',
msw__pb2.ClipEmbeddingForTextRequest.SerializeToString,
msw__pb2.ClipEmbeddingResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)
@staticmethod
def ClipEmbeddingForImage(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(
request,
target,
'/msw.MSW/ClipEmbeddingForImage',
msw__pb2.ClipEmbeddingForImageRequest.SerializeToString,
msw__pb2.ClipEmbeddingResponse.FromString,
options,
channel_credentials,
insecure,
call_credentials,
compression,
wait_for_ready,
timeout,
metadata,
_registered_method=True)