Returns a health check message. Args: request: The health check request. context: The gRPC context. Returns: backend_pb2.Reply: The health check reply.
(self, request, context)
| 39 | """ |
| 40 | |
| 41 | def Health(self, request, context): |
| 42 | """ |
| 43 | Returns a health check message. |
| 44 | |
| 45 | Args: |
| 46 | request: The health check request. |
| 47 | context: The gRPC context. |
| 48 | |
| 49 | Returns: |
| 50 | backend_pb2.Reply: The health check reply. |
| 51 | """ |
| 52 | return backend_pb2.Reply(message=bytes("OK", 'utf-8')) |
| 53 | |
| 54 | async def LoadModel(self, request, context): |
| 55 | """ |
no outgoing calls