agentconnect.communication.protocols.base module¶
Foundation for all communication protocols in the AgentConnect framework.
This module defines the core protocol interface that standardizes message format and validation across different communication patterns, enabling consistent peer-to-peer agent interactions and collaboration.
- 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