agentic-mesh-protocol 1.0.0.dev1__py3-none-any.whl → 1.0.0.dev2__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.
@@ -5,4 +5,4 @@ from importlib.metadata import PackageNotFoundError, version
5
5
  try:
6
6
  __version__ = version("agentic-mesh-protocol")
7
7
  except PackageNotFoundError:
8
- __version__ = "1.0.0.dev1"
8
+ __version__ = "1.0.0.dev2"
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
25
25
  from agentic_mesh_protocol.gateway.v1 import gateway_pb2 as agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2
26
26
 
27
27
 
28
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6agentic_mesh_protocol/gateway/v1/gateway_service.proto\x12 agentic_mesh_protocol.gateway.v1\x1a.agentic_mesh_protocol/gateway/v1/gateway.proto2\xf7\x02\n\x0eGatewayService\x12z\n\x0bStartStream\x12\x34.agentic_mesh_protocol.gateway.v1.StartStreamRequest\x1a\x35.agentic_mesh_protocol.gateway.v1.StartStreamResponse\x12l\n\x06Stream\x12..agentic_mesh_protocol.gateway.v1.StreamClient\x1a..agentic_mesh_protocol.gateway.v1.StreamServer(\x01\x30\x01\x12{\n\nSendSignal\x12\x35.agentic_mesh_protocol.gateway.v1.ClientSignalRequest\x1a\x36.agentic_mesh_protocol.gateway.v1.ClientSignalResponseB\xd5\x01\n$com.agentic_mesh_protocol.gateway.v1B\x13GatewayServiceProtoP\x01\xa2\x02\x03\x41GX\xaa\x02\x1e\x41genticMeshProtocol.Gateway.V1\xca\x02\x1e\x41genticMeshProtocol\\Gateway\\V1\xe2\x02*AgenticMeshProtocol\\Gateway\\V1\\GPBMetadata\xea\x02 AgenticMeshProtocol::Gateway::V1b\x06proto3')
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n6agentic_mesh_protocol/gateway/v1/gateway_service.proto\x12 agentic_mesh_protocol.gateway.v1\x1a.agentic_mesh_protocol/gateway/v1/gateway.proto2\xf7\x02\n\x0eGatewayService\x12z\n\x0bStartStream\x12\x34.agentic_mesh_protocol.gateway.v1.StartStreamRequest\x1a\x35.agentic_mesh_protocol.gateway.v1.StartStreamResponse\x12l\n\x06Stream\x12..agentic_mesh_protocol.gateway.v1.StreamServer\x1a..agentic_mesh_protocol.gateway.v1.StreamClient(\x01\x30\x01\x12{\n\nSendSignal\x12\x35.agentic_mesh_protocol.gateway.v1.ClientSignalRequest\x1a\x36.agentic_mesh_protocol.gateway.v1.ClientSignalResponseB\xd5\x01\n$com.agentic_mesh_protocol.gateway.v1B\x13GatewayServiceProtoP\x01\xa2\x02\x03\x41GX\xaa\x02\x1e\x41genticMeshProtocol.Gateway.V1\xca\x02\x1e\x41genticMeshProtocol\\Gateway\\V1\xe2\x02*AgenticMeshProtocol\\Gateway\\V1\\GPBMetadata\xea\x02 AgenticMeshProtocol::Gateway::V1b\x06proto3')
29
29
 
30
30
  _globals = globals()
31
31
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -28,8 +28,8 @@ class GatewayServiceStub(object):
28
28
  _registered_method=True)
29
29
  self.Stream = channel.stream_stream(
30
30
  '/agentic_mesh_protocol.gateway.v1.GatewayService/Stream',
31
- request_serializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamClient.SerializeToString,
32
- response_deserializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamServer.FromString,
31
+ request_serializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamServer.SerializeToString,
32
+ response_deserializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamClient.FromString,
33
33
  _registered_method=True)
34
34
  self.SendSignal = channel.unary_unary(
35
35
  '/agentic_mesh_protocol.gateway.v1.GatewayService/SendSignal',
@@ -96,8 +96,8 @@ def add_GatewayServiceServicer_to_server(servicer, server):
96
96
  ),
97
97
  'Stream': grpc.stream_stream_rpc_method_handler(
98
98
  servicer.Stream,
99
- request_deserializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamClient.FromString,
100
- response_serializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamServer.SerializeToString,
99
+ request_deserializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamServer.FromString,
100
+ response_serializer=agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamClient.SerializeToString,
101
101
  ),
102
102
  'SendSignal': grpc.unary_unary_rpc_method_handler(
103
103
  servicer.SendSignal,
@@ -164,8 +164,8 @@ class GatewayService(object):
164
164
  request_iterator,
165
165
  target,
166
166
  '/agentic_mesh_protocol.gateway.v1.GatewayService/Stream',
167
- agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamClient.SerializeToString,
168
- agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamServer.FromString,
167
+ agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamServer.SerializeToString,
168
+ agentic__mesh__protocol_dot_gateway_dot_v1_dot_gateway__pb2.StreamClient.FromString,
169
169
  options,
170
170
  channel_credentials,
171
171
  insecure,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentic-mesh-protocol
3
- Version: 1.0.0.dev1
3
+ Version: 1.0.0.dev2
4
4
  Summary: Python gRPC interfaces for Agentic Mesh Protocol
5
5
  Author-email: "DigitalKin.ai" <contact@digitalkin.ai>
6
6
  Project-URL: Bug Tracker, https://github.com/DigitalKin-ai/service-apis-py/issues
@@ -24,7 +24,7 @@ Requires-Python: >=3.10
24
24
  Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: bump-my-version==1.3.0
27
- Requires-Dist: googleapis-common-protos==1.74.0
27
+ Requires-Dist: googleapis-common-protos==1.75.0
28
28
  Requires-Dist: grpcio-tools==1.80.0
29
29
  Requires-Dist: grpcio==1.80.0
30
30
  Requires-Dist: protobuf==6.33.6
@@ -1,5 +1,5 @@
1
1
  agentic_mesh_protocol/__init__.py,sha256=kAb731TxLudbtt2vZsebF7PP7Z8AaEDOp93TBgy6VUg,140
2
- agentic_mesh_protocol/__version__.py,sha256=CsEV_vSpxr9TEfZxXOmaVYE1oE_HWVpkohMF9NbwNoU,240
2
+ agentic_mesh_protocol/__version__.py,sha256=3AO7InloWuF_8DsNlgpXcjQ66BbiglGP3H2j30sUYp8,240
3
3
  agentic_mesh_protocol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  agentic_mesh_protocol/cost/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  agentic_mesh_protocol/cost/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -22,9 +22,9 @@ agentic_mesh_protocol/gateway/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
22
22
  agentic_mesh_protocol/gateway/v1/gateway_pb2.py,sha256=9yFzJSWU1EXJjgn0TAbqGkTcvxqAcKaGtSd4AjnPzoI,5795
23
23
  agentic_mesh_protocol/gateway/v1/gateway_pb2.pyi,sha256=j6oueHA-WuY7fcrhx_oKC2H0LMIwNVoEorOYF1dEDKI,3183
24
24
  agentic_mesh_protocol/gateway/v1/gateway_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
25
- agentic_mesh_protocol/gateway/v1/gateway_service_pb2.py,sha256=VOl2Y2754aDlOzkxIv6-AVYT6yjD3e8PuJXMkcuCFNA,2626
25
+ agentic_mesh_protocol/gateway/v1/gateway_service_pb2.py,sha256=6YGQhI7tV-tTMwLeAjJALMseilzwNnPKSxMsoWSdsjM,2626
26
26
  agentic_mesh_protocol/gateway/v1/gateway_service_pb2.pyi,sha256=OhuGTz4bX0qHTPR8QmsYejj0vbax2-DQR28Iwzu8q6I,208
27
- agentic_mesh_protocol/gateway/v1/gateway_service_pb2_grpc.py,sha256=iN4IflDlbidJuLayKCMZMzQp4C9ejPPQ6WYONbQTpcs,8949
27
+ agentic_mesh_protocol/gateway/v1/gateway_service_pb2_grpc.py,sha256=HJDzZobGSpZNxzeC3hGuQnbkDKEMpl4H7IW3k4HOj3I,8949
28
28
  agentic_mesh_protocol/module/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  agentic_mesh_protocol/module/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
30
  agentic_mesh_protocol/module/v1/information_pb2.py,sha256=_FIj7T0U_a8Ez47mEIDQdILXQOAwlvQCeCz5gBXFZyQ,9627
@@ -77,13 +77,13 @@ agentic_mesh_protocol/user_profile/v1/user_profile_pb2_grpc.py,sha256=1oboBPFxaT
77
77
  agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.py,sha256=qurdZOyq40MhilDNSFRlAqJPxE7n4TiBoxXoo6PgzXA,2503
78
78
  agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2.pyi,sha256=bYDO6_YCbjKbajOXMcjaWIljSqrtazhaHnAG_ovmsGE,223
79
79
  agentic_mesh_protocol/user_profile/v1/user_profile_service_pb2_grpc.py,sha256=ZM4LGHSHGnpNbbW6Q8pp6gdlbFIxPjD5CqASmD7ow7M,3388
80
- agentic_mesh_protocol-1.0.0.dev1.dist-info/licenses/LICENSE,sha256=kKsbCnqWVbrrSHAf6NV4-fI3Sdgt9xycjiijGloDW8g,20757
80
+ agentic_mesh_protocol-1.0.0.dev2.dist-info/licenses/LICENSE,sha256=kKsbCnqWVbrrSHAf6NV4-fI3Sdgt9xycjiijGloDW8g,20757
81
81
  buf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
82
  buf/validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
83
  buf/validate/validate_pb2.py,sha256=yoxDgpUUOFU9zOUIeVZv2e8aJyAFHqdQxQZ5HTvPYxc,156997
84
84
  buf/validate/validate_pb2.pyi,sha256=_Ni4MEbcYl0RcmIeXuIfk-SLuGSYj0Lrmz3NJLFzACg,30761
85
85
  buf/validate/validate_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
86
- agentic_mesh_protocol-1.0.0.dev1.dist-info/METADATA,sha256=QBuO1Xy3e9m0bJZPLbHTwqwvO61ZVhOtGRU_8H8sMnw,4826
87
- agentic_mesh_protocol-1.0.0.dev1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
88
- agentic_mesh_protocol-1.0.0.dev1.dist-info/top_level.txt,sha256=LfSggOPp9FyZa2A__3lnBvgaoamSOtYDwv0jfI5ZGrE,26
89
- agentic_mesh_protocol-1.0.0.dev1.dist-info/RECORD,,
86
+ agentic_mesh_protocol-1.0.0.dev2.dist-info/METADATA,sha256=2JHiyfEXnX3jWxjDiV_uxRInpMoDH6QWaF7Pkr-cWwY,4826
87
+ agentic_mesh_protocol-1.0.0.dev2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
88
+ agentic_mesh_protocol-1.0.0.dev2.dist-info/top_level.txt,sha256=LfSggOPp9FyZa2A__3lnBvgaoamSOtYDwv0jfI5ZGrE,26
89
+ agentic_mesh_protocol-1.0.0.dev2.dist-info/RECORD,,