divi 0.0.1.dev8__py3-none-manylinux1_x86_64.whl → 0.0.1.dev10__py3-none-manylinux1_x86_64.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.
divi/__init__.py CHANGED
@@ -5,5 +5,5 @@ from . import proto
5
5
  name: str = "divi"
6
6
  run: Optional[Run] = None
7
7
 
8
- __version__ = "0.0.1.dev8"
8
+ __version__ = "0.0.1.dev10"
9
9
  __all__ = ["init", "finish", "proto"]
divi/bin/core CHANGED
Binary file
divi/core/run.py CHANGED
@@ -5,9 +5,8 @@ from typing import List, Optional, Callable
5
5
 
6
6
  import divi
7
7
 
8
- from divi.proto.core.v1.core_pb2_grpc import CoreStub
9
- from divi.proto.core.v1.health_check_request_pb2 import HealthCheckRequest
10
- from divi.proto.core.v1.health_check_response_pb2 import HealthCheckResponse
8
+ from divi.proto.core_pb2_grpc import CoreStub
9
+ from divi.proto.health_pb2 import HealthCheckRequest, HealthCheckResponse
11
10
 
12
11
 
13
12
  class Run:
divi/proto/core.proto ADDED
@@ -0,0 +1,12 @@
1
+ syntax = "proto3";
2
+
3
+ package core;
4
+
5
+ import "divi/proto/health.proto";
6
+
7
+ option go_package = "core/proto";
8
+
9
+ // Health is a service that implements health check.
10
+ service Core {
11
+ rpc Check(HealthCheckRequest) returns (HealthCheckResponse) {}
12
+ }
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: divi/proto/core/v1/health_check_request.proto
4
+ # source: divi/proto/core.proto
5
5
  # Protobuf Python Version: 5.29.0
6
6
  """Generated protocol buffer code."""
7
7
  from google.protobuf import descriptor as _descriptor
@@ -15,23 +15,24 @@ _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  29,
16
16
  0,
17
17
  '',
18
- 'divi/proto/core/v1/health_check_request.proto'
18
+ 'divi/proto/core.proto'
19
19
  )
20
20
  # @@protoc_insertion_point(imports)
21
21
 
22
22
  _sym_db = _symbol_database.Default()
23
23
 
24
24
 
25
+ from divi.proto import health_pb2 as divi_dot_proto_dot_health__pb2
25
26
 
26
27
 
27
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-divi/proto/core/v1/health_check_request.proto\x12\x07\x63ore.v1\"%\n\x12HealthCheckRequest\x12\x0f\n\x07version\x18\x01 \x01(\tB2Z0github.com/KaikaikaiFang/divine-agent/core/protob\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15\x64ivi/proto/core.proto\x12\x04\x63ore\x1a\x17\x64ivi/proto/health.proto2F\n\x04\x43ore\x12>\n\x05\x43heck\x12\x18.core.HealthCheckRequest\x1a\x19.core.HealthCheckResponse\"\x00\x42\x0cZ\ncore/protob\x06proto3')
28
29
 
29
30
  _globals = globals()
30
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'divi.proto.core.v1.health_check_request_pb2', _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'divi.proto.core_pb2', _globals)
32
33
  if not _descriptor._USE_C_DESCRIPTORS:
33
34
  _globals['DESCRIPTOR']._loaded_options = None
34
- _globals['DESCRIPTOR']._serialized_options = b'Z0github.com/KaikaikaiFang/divine-agent/core/proto'
35
- _globals['_HEALTHCHECKREQUEST']._serialized_start=58
36
- _globals['_HEALTHCHECKREQUEST']._serialized_end=95
35
+ _globals['DESCRIPTOR']._serialized_options = b'Z\ncore/proto'
36
+ _globals['_CORE']._serialized_start=56
37
+ _globals['_CORE']._serialized_end=126
37
38
  # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,5 @@
1
+ from divi.proto import health_pb2 as _health_pb2
2
+ from google.protobuf import descriptor as _descriptor
3
+ from typing import ClassVar as _ClassVar
4
+
5
+ DESCRIPTOR: _descriptor.FileDescriptor
@@ -3,8 +3,7 @@
3
3
  import grpc
4
4
  import warnings
5
5
 
6
- from divi.proto.core.v1 import health_check_request_pb2 as divi_dot_proto_dot_core_dot_v1_dot_health__check__request__pb2
7
- from divi.proto.core.v1 import health_check_response_pb2 as divi_dot_proto_dot_core_dot_v1_dot_health__check__response__pb2
6
+ from divi.proto import health_pb2 as divi_dot_proto_dot_health__pb2
8
7
 
9
8
  GRPC_GENERATED_VERSION = '1.69.0'
10
9
  GRPC_VERSION = grpc.__version__
@@ -19,7 +18,7 @@ except ImportError:
19
18
  if _version_not_supported:
20
19
  raise RuntimeError(
21
20
  f'The grpc package installed is at version {GRPC_VERSION},'
22
- + f' but the generated code in divi/proto/core/v1/core_pb2_grpc.py depends on'
21
+ + f' but the generated code in divi/proto/core_pb2_grpc.py depends on'
23
22
  + f' grpcio>={GRPC_GENERATED_VERSION}.'
24
23
  + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
25
24
  + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
@@ -37,9 +36,9 @@ class CoreStub(object):
37
36
  channel: A grpc.Channel.
38
37
  """
39
38
  self.Check = channel.unary_unary(
40
- '/core.v1.Core/Check',
41
- request_serializer=divi_dot_proto_dot_core_dot_v1_dot_health__check__request__pb2.HealthCheckRequest.SerializeToString,
42
- response_deserializer=divi_dot_proto_dot_core_dot_v1_dot_health__check__response__pb2.HealthCheckResponse.FromString,
39
+ '/core.Core/Check',
40
+ request_serializer=divi_dot_proto_dot_health__pb2.HealthCheckRequest.SerializeToString,
41
+ response_deserializer=divi_dot_proto_dot_health__pb2.HealthCheckResponse.FromString,
43
42
  _registered_method=True)
44
43
 
45
44
 
@@ -58,14 +57,14 @@ def add_CoreServicer_to_server(servicer, server):
58
57
  rpc_method_handlers = {
59
58
  'Check': grpc.unary_unary_rpc_method_handler(
60
59
  servicer.Check,
61
- request_deserializer=divi_dot_proto_dot_core_dot_v1_dot_health__check__request__pb2.HealthCheckRequest.FromString,
62
- response_serializer=divi_dot_proto_dot_core_dot_v1_dot_health__check__response__pb2.HealthCheckResponse.SerializeToString,
60
+ request_deserializer=divi_dot_proto_dot_health__pb2.HealthCheckRequest.FromString,
61
+ response_serializer=divi_dot_proto_dot_health__pb2.HealthCheckResponse.SerializeToString,
63
62
  ),
64
63
  }
65
64
  generic_handler = grpc.method_handlers_generic_handler(
66
- 'core.v1.Core', rpc_method_handlers)
65
+ 'core.Core', rpc_method_handlers)
67
66
  server.add_generic_rpc_handlers((generic_handler,))
68
- server.add_registered_method_handlers('core.v1.Core', rpc_method_handlers)
67
+ server.add_registered_method_handlers('core.Core', rpc_method_handlers)
69
68
 
70
69
 
71
70
  # This class is part of an EXPERIMENTAL API.
@@ -87,9 +86,9 @@ class Core(object):
87
86
  return grpc.experimental.unary_unary(
88
87
  request,
89
88
  target,
90
- '/core.v1.Core/Check',
91
- divi_dot_proto_dot_core_dot_v1_dot_health__check__request__pb2.HealthCheckRequest.SerializeToString,
92
- divi_dot_proto_dot_core_dot_v1_dot_health__check__response__pb2.HealthCheckResponse.FromString,
89
+ '/core.Core/Check',
90
+ divi_dot_proto_dot_health__pb2.HealthCheckRequest.SerializeToString,
91
+ divi_dot_proto_dot_health__pb2.HealthCheckResponse.FromString,
93
92
  options,
94
93
  channel_credentials,
95
94
  insecure,
@@ -0,0 +1,12 @@
1
+ syntax = "proto3";
2
+
3
+ package core;
4
+
5
+ option go_package = "core/proto";
6
+
7
+ message HealthCheckRequest { string version = 1; }
8
+
9
+ message HealthCheckResponse {
10
+ bool status = 1;
11
+ string message = 2;
12
+ }
@@ -1,7 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
3
3
  # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: divi/proto/core/v1/health_check_response.proto
4
+ # source: divi/proto/health.proto
5
5
  # Protobuf Python Version: 5.29.0
6
6
  """Generated protocol buffer code."""
7
7
  from google.protobuf import descriptor as _descriptor
@@ -15,7 +15,7 @@ _runtime_version.ValidateProtobufRuntimeVersion(
15
15
  29,
16
16
  0,
17
17
  '',
18
- 'divi/proto/core/v1/health_check_response.proto'
18
+ 'divi/proto/health.proto'
19
19
  )
20
20
  # @@protoc_insertion_point(imports)
21
21
 
@@ -24,14 +24,16 @@ _sym_db = _symbol_database.Default()
24
24
 
25
25
 
26
26
 
27
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.divi/proto/core/v1/health_check_response.proto\x12\x07\x63ore.v1\"6\n\x13HealthCheckResponse\x12\x0e\n\x06status\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\tB2Z0github.com/KaikaikaiFang/divine-agent/core/protob\x06proto3')
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x17\x64ivi/proto/health.proto\x12\x04\x63ore\"%\n\x12HealthCheckRequest\x12\x0f\n\x07version\x18\x01 \x01(\t\"6\n\x13HealthCheckResponse\x12\x0e\n\x06status\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\tB\x0cZ\ncore/protob\x06proto3')
28
28
 
29
29
  _globals = globals()
30
30
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'divi.proto.core.v1.health_check_response_pb2', _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'divi.proto.health_pb2', _globals)
32
32
  if not _descriptor._USE_C_DESCRIPTORS:
33
33
  _globals['DESCRIPTOR']._loaded_options = None
34
- _globals['DESCRIPTOR']._serialized_options = b'Z0github.com/KaikaikaiFang/divine-agent/core/proto'
35
- _globals['_HEALTHCHECKRESPONSE']._serialized_start=59
36
- _globals['_HEALTHCHECKRESPONSE']._serialized_end=113
34
+ _globals['DESCRIPTOR']._serialized_options = b'Z\ncore/proto'
35
+ _globals['_HEALTHCHECKREQUEST']._serialized_start=33
36
+ _globals['_HEALTHCHECKREQUEST']._serialized_end=70
37
+ _globals['_HEALTHCHECKRESPONSE']._serialized_start=72
38
+ _globals['_HEALTHCHECKRESPONSE']._serialized_end=126
37
39
  # @@protoc_insertion_point(module_scope)
@@ -4,6 +4,12 @@ from typing import ClassVar as _ClassVar, Optional as _Optional
4
4
 
5
5
  DESCRIPTOR: _descriptor.FileDescriptor
6
6
 
7
+ class HealthCheckRequest(_message.Message):
8
+ __slots__ = ("version",)
9
+ VERSION_FIELD_NUMBER: _ClassVar[int]
10
+ version: str
11
+ def __init__(self, version: _Optional[str] = ...) -> None: ...
12
+
7
13
  class HealthCheckResponse(_message.Message):
8
14
  __slots__ = ("status", "message")
9
15
  STATUS_FIELD_NUMBER: _ClassVar[int]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: divi
3
- Version: 0.0.1.dev8
3
+ Version: 0.0.1.dev10
4
4
  Summary: The Agent Platform for Observability & Evaluation
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.11
@@ -0,0 +1,18 @@
1
+ divi/__init__.py,sha256=3tG2uqfPPJ3LzZkgpy_GagRWVG4HQRzY7gLlLD9ab7A,197
2
+ divi/utils.py,sha256=HcGlohwmowcQ-isVo0UtrsOsFbJEhX_earaSv4ggIR4,324
3
+ divi/bin/core,sha256=vxjCja82_uaqdwZGrIAlNlWjEBG1LBaeuclZCkP1zwY,14090610
4
+ divi/core/__init__.py,sha256=iAUb96xD4lwqipLItCc87_SVHsorydWj1dh3YTWQiig,108
5
+ divi/core/finish.py,sha256=ViF6DndmXMq-MAApN-DgGs3r5bbFQsSWbfeDT_rvsDg,225
6
+ divi/core/init.py,sha256=GlfyuT78J65juyket4On_Ot2ZE6Oybtu2tmIoFm9IEo,2048
7
+ divi/core/run.py,sha256=Do3ZzzSNVAeGnPY4jF4mCwiRGSjFx2Z_LwwVlByeTZU,1020
8
+ divi/proto/core.proto,sha256=iBBGYOYO1IM7tAPdhWjFfD2VSjzjcKosevTnPG4P050,240
9
+ divi/proto/core_pb2.py,sha256=nOJ9JZdOYWhay4wVmzjTKTfBgY_u1QftFowmLhISJk8,1535
10
+ divi/proto/core_pb2.pyi,sha256=U_zlb-bJl9LNNayFUNmr805j1_j6oK2m6yT18aawMOc,184
11
+ divi/proto/core_pb2_grpc.py,sha256=rnEbwjQNzpkPTWtNKXriPOaedkPHfHig6nMPzAUbeQM,3476
12
+ divi/proto/health.proto,sha256=Q-khtv-9p7_imKjVJOZ32n1hlND9Jixa9WDSuOrA7NA,195
13
+ divi/proto/health_pb2.py,sha256=jFAw9PlFnZFfRJz8LVIr-woAI6j82YkBHMaX07SUvjk,1638
14
+ divi/proto/health_pb2.pyi,sha256=VbYHHTcp3epUVg0lTSxo3xpG52ZGhA7KKMRL5LR5e1c,691
15
+ divi-0.0.1.dev10.dist-info/METADATA,sha256=5d9CtwSdYGDvfglAY-L6zLmPIiG8lsjmZ12tmfnqiaY,396
16
+ divi-0.0.1.dev10.dist-info/WHEEL,sha256=TudmoUorxzAOjqd5lz5cfEiOTHrhOP6JLdBc4mfHaQ4,102
17
+ divi-0.0.1.dev10.dist-info/licenses/LICENSE,sha256=5OJuZ4wMMEV0DgF0tofhAlS_KLkaUsZwwwDS2U_GwQ0,1063
18
+ divi-0.0.1.dev10.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- syntax = "proto3";
2
-
3
- package core.v1;
4
-
5
- import "divi/proto/core/v1/health_check_request.proto";
6
- import "divi/proto/core/v1/health_check_response.proto";
7
-
8
- option go_package = "github.com/KaikaikaiFang/divine-agent/core/proto";
9
-
10
- // Health is a service that implements health check.
11
- service Core {
12
- rpc Check(HealthCheckRequest) returns (HealthCheckResponse) {}
13
- }
@@ -1,39 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # NO CHECKED-IN PROTOBUF GENCODE
4
- # source: divi/proto/core/v1/core.proto
5
- # Protobuf Python Version: 5.29.0
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
- 5,
15
- 29,
16
- 0,
17
- '',
18
- 'divi/proto/core/v1/core.proto'
19
- )
20
- # @@protoc_insertion_point(imports)
21
-
22
- _sym_db = _symbol_database.Default()
23
-
24
-
25
- from divi.proto.core.v1 import health_check_request_pb2 as divi_dot_proto_dot_core_dot_v1_dot_health__check__request__pb2
26
- from divi.proto.core.v1 import health_check_response_pb2 as divi_dot_proto_dot_core_dot_v1_dot_health__check__response__pb2
27
-
28
-
29
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x64ivi/proto/core/v1/core.proto\x12\x07\x63ore.v1\x1a-divi/proto/core/v1/health_check_request.proto\x1a.divi/proto/core/v1/health_check_response.proto2L\n\x04\x43ore\x12\x44\n\x05\x43heck\x12\x1b.core.v1.HealthCheckRequest\x1a\x1c.core.v1.HealthCheckResponse\"\x00\x42\x32Z0github.com/KaikaikaiFang/divine-agent/core/protob\x06proto3')
30
-
31
- _globals = globals()
32
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'divi.proto.core.v1.core_pb2', _globals)
34
- if not _descriptor._USE_C_DESCRIPTORS:
35
- _globals['DESCRIPTOR']._loaded_options = None
36
- _globals['DESCRIPTOR']._serialized_options = b'Z0github.com/KaikaikaiFang/divine-agent/core/proto'
37
- _globals['_CORE']._serialized_start=137
38
- _globals['_CORE']._serialized_end=213
39
- # @@protoc_insertion_point(module_scope)
@@ -1,6 +0,0 @@
1
- from divi.proto.core.v1 import health_check_request_pb2 as _health_check_request_pb2
2
- from divi.proto.core.v1 import health_check_response_pb2 as _health_check_response_pb2
3
- from google.protobuf import descriptor as _descriptor
4
- from typing import ClassVar as _ClassVar
5
-
6
- DESCRIPTOR: _descriptor.FileDescriptor
@@ -1,7 +0,0 @@
1
- syntax = "proto3";
2
-
3
- package core.v1;
4
-
5
- option go_package = "github.com/KaikaikaiFang/divine-agent/core/proto";
6
-
7
- message HealthCheckRequest { string version = 1; }
@@ -1,11 +0,0 @@
1
- from google.protobuf import descriptor as _descriptor
2
- from google.protobuf import message as _message
3
- from typing import ClassVar as _ClassVar, Optional as _Optional
4
-
5
- DESCRIPTOR: _descriptor.FileDescriptor
6
-
7
- class HealthCheckRequest(_message.Message):
8
- __slots__ = ("version",)
9
- VERSION_FIELD_NUMBER: _ClassVar[int]
10
- version: str
11
- def __init__(self, version: _Optional[str] = ...) -> None: ...
@@ -1,24 +0,0 @@
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
-
7
- GRPC_GENERATED_VERSION = '1.69.0'
8
- GRPC_VERSION = grpc.__version__
9
- _version_not_supported = False
10
-
11
- try:
12
- from grpc._utilities import first_version_is_lower
13
- _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
- except ImportError:
15
- _version_not_supported = True
16
-
17
- if _version_not_supported:
18
- raise RuntimeError(
19
- f'The grpc package installed is at version {GRPC_VERSION},'
20
- + f' but the generated code in divi/proto/core/v1/health_check_request_pb2_grpc.py depends on'
21
- + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
- + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
- + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
- )
@@ -1,10 +0,0 @@
1
- syntax = "proto3";
2
-
3
- package core.v1;
4
-
5
- option go_package = "github.com/KaikaikaiFang/divine-agent/core/proto";
6
-
7
- message HealthCheckResponse {
8
- bool status = 1;
9
- string message = 2;
10
- }
@@ -1,24 +0,0 @@
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
-
7
- GRPC_GENERATED_VERSION = '1.69.0'
8
- GRPC_VERSION = grpc.__version__
9
- _version_not_supported = False
10
-
11
- try:
12
- from grpc._utilities import first_version_is_lower
13
- _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
- except ImportError:
15
- _version_not_supported = True
16
-
17
- if _version_not_supported:
18
- raise RuntimeError(
19
- f'The grpc package installed is at version {GRPC_VERSION},'
20
- + f' but the generated code in divi/proto/core/v1/health_check_response_pb2_grpc.py depends on'
21
- + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
- + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
- + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
- )
@@ -1,23 +0,0 @@
1
- divi/__init__.py,sha256=HK_qaFNNLmLJepWagHlGrMhujmUqfwuyqvcqZQAFkwk,196
2
- divi/utils.py,sha256=HcGlohwmowcQ-isVo0UtrsOsFbJEhX_earaSv4ggIR4,324
3
- divi/bin/core,sha256=unkwyErTAuP767bu6IYg2kc4i855JjUVBIXGLifajoU,14093980
4
- divi/core/__init__.py,sha256=iAUb96xD4lwqipLItCc87_SVHsorydWj1dh3YTWQiig,108
5
- divi/core/finish.py,sha256=ViF6DndmXMq-MAApN-DgGs3r5bbFQsSWbfeDT_rvsDg,225
6
- divi/core/init.py,sha256=GlfyuT78J65juyket4On_Ot2ZE6Oybtu2tmIoFm9IEo,2048
7
- divi/core/run.py,sha256=bgbtAw9LoIAAhx2Qkxd0AN9CsMZZR68BK1VKiKwk2GM,1106
8
- divi/proto/core/v1/core.proto,sha256=vcuht22OEKbZ0fpLz7JTX4qd7pa5br1pjqU_v57uIQQ,360
9
- divi/proto/core/v1/core_pb2.py,sha256=fG_f3LN_2shsx17-H_BmBM3644sHdR4Za-sVIMkZ5Sg,1899
10
- divi/proto/core/v1/core_pb2.pyi,sha256=JI0HJe_LpOXNjIzR7rdHBhln3VUGTJAfyjUn67EPwXY,307
11
- divi/proto/core/v1/core_pb2_grpc.py,sha256=Sla4N0SjtZPtOVDmF9G2M38dSMyomjpgdlwM7b-7CmQ,3869
12
- divi/proto/core/v1/health_check_request.proto,sha256=SWn6NmtivAkcPLj7Dt7HeSHwdZpWqWFdC7ghsVJMcEQ,162
13
- divi/proto/core/v1/health_check_request_pb2.py,sha256=ZOcFrzDBglDz6K1hWfGKr_PEfNp-yEOdwWxBo_qtgrc,1580
14
- divi/proto/core/v1/health_check_request_pb2.pyi,sha256=MJGIn1BwvGApZAZH0HFaUSTIaO7gqwoxLMZEM7INqEk,405
15
- divi/proto/core/v1/health_check_request_pb2_grpc.py,sha256=E7ah12abIGk-pFFzqAIwgjpekfQajrTlW8A9qYSG7J4,920
16
- divi/proto/core/v1/health_check_response.proto,sha256=BWpN374NCJTIfnDoCgWIPIiokipdHPx8yOsUgu8a2sA,184
17
- divi/proto/core/v1/health_check_response_pb2.py,sha256=BoC2HLpfotx4ac2t_9iFwDXg3yiNjUlTgP0fhGA4uDk,1626
18
- divi/proto/core/v1/health_check_response_pb2.pyi,sha256=pcxpVQ5VkOpyfFoh4am1-4xffRuW69ON-PzqVdOz4EA,492
19
- divi/proto/core/v1/health_check_response_pb2_grpc.py,sha256=Y5BEKSJD5-mMEBwa3ugq-0MnNzyCIKXNX06gzr6MA2o,921
20
- divi-0.0.1.dev8.dist-info/METADATA,sha256=idntz9mQwGV6YUimyITK5fT01E-IOv5ppy2VJRAmQMY,395
21
- divi-0.0.1.dev8.dist-info/WHEEL,sha256=TudmoUorxzAOjqd5lz5cfEiOTHrhOP6JLdBc4mfHaQ4,102
22
- divi-0.0.1.dev8.dist-info/licenses/LICENSE,sha256=5OJuZ4wMMEV0DgF0tofhAlS_KLkaUsZwwwDS2U_GwQ0,1063
23
- divi-0.0.1.dev8.dist-info/RECORD,,