agentconnect.communication.protocols package¶
Communication protocols that enable diverse agent interactions.
This module provides protocol implementations that standardize different types of agent communication patterns. These protocols support peer-to-peer messaging, capability discovery, and collaborative task execution between independent agents.
The protocols ensure message format consistency while allowing agents to maintain their individual autonomy and decision-making processes.
- class BaseProtocol¶
Bases:
ABC
Foundation for all agent communication protocols.
This abstract class defines the common interface and baseline functionality for all communication protocols, ensuring consistent message handling across different interaction patterns. It provides the foundation for both basic agent-to-agent messaging and more complex collaboration patterns based on capability discovery.
The protocol system enables standardized communication without requiring central control of agent behavior - it simply ensures messages are properly formatted, signed, and validated.
- abstractmethod async format_message(sender_id, receiver_id, content, sender_identity, message_type=MessageType.TEXT, metadata=None)¶
Format a message according to protocol specifications.
- Parameters:
sender_id (
str
) – ID of the sending agentreceiver_id (
str
) – ID of the receiving agentcontent (
str
) – Message contentsender_identity (
AgentIdentity
) – Identity of the sending agentmessage_type (
MessageType
) – Type of message being sentmetadata (
Optional
[Dict
]) – Additional metadata for the message
- Return type:
- Returns:
A properly formatted Message object
- class SimpleAgentProtocol¶
Bases:
BaseProtocol
Protocol that ensures secure peer-to-peer agent communication.
This protocol handles message formatting, cryptographic verification, and validation for direct communication between agents. It ensures that messages are properly signed and can be verified by the receiving agent, maintaining security in peer-to-peer interactions.
- async format_message(sender_id, receiver_id, content, sender_identity, message_type=MessageType.TEXT, metadata=None)¶
Format a message with proper protocol metadata
- Return type:
- Parameters:
sender_id (str)
receiver_id (str)
content (str)
sender_identity (AgentIdentity)
message_type (MessageType)
metadata (Dict | None)
- class CollaborationProtocol¶
Bases:
BaseProtocol
Protocol that enables peer-to-peer agent collaboration and capability sharing.
This protocol facilitates dynamic discovery and utilization of capabilities across a network of independent agents. It allows agents to:
Discover what other agents can do through capability queries
Request help from agents with relevant capabilities
Share results after task completion
Agents maintain their independence - each agent decides whether to accept collaboration requests based on its own criteria. The protocol simply standardizes the communication pattern without imposing central control.
- async format_message(sender_id, receiver_id, content, sender_identity, message_type=MessageType.TEXT, metadata=None)¶
Format a message according to the collaboration protocol.
- Return type:
- Parameters:
sender_id (str)
receiver_id (str)
content (str)
sender_identity (AgentIdentity)
message_type (MessageType)
metadata (Dict | None)
Submodules¶
- agentconnect.communication.protocols.agent module
- agentconnect.communication.protocols.base module
- agentconnect.communication.protocols.collaboration module