agentconnect.communication.protocols.collaboration module¶
Collaboration protocol that enables dynamic capability discovery and task delegation.
This module provides the CollaborationProtocol, which implements communication patterns for peer-to-peer collaborative interactions between agents. It enables agents to discover each other’s capabilities and delegate tasks without requiring central coordination.
- class RequestCapabilityPayload(capability_name=None, capability_description=None, input_schema=None, limit=10)¶
Bases:
object
Payload for dynamically discovering capabilities from other agents.
This structure enables an agent to search for specific capabilities across the network without needing to know in advance which agents provide them.
- Parameters:
- class CapabilityResponsePayload(request_id, capabilities)¶
Bases:
object
Response payload containing discovered capabilities that match a request.
This structure enables peer-to-peer capability discovery by returning matching capabilities from agents across the network.
- class RequestCollaborationPayload(capability_name, input_data)¶
Bases:
object
Payload for requesting peer-to-peer collaboration on a specific capability.
This structure enables an agent to request another agent’s services based on its capabilities, forming dynamic collaborative relationships.
- class CollaborationResponsePayload(request_id, success, output_data=None, error_message=None)¶
Bases:
object
Response payload from an agent providing its capability as a service.
This structure enables agents to share results after performing a requested capability, completing the peer-to-peer collaboration.
- Parameters:
- class CollaborationErrorPayload(request_id, error_code, error_message)¶
Bases:
object
Error payload for a collaboration attempt that couldn’t be completed.
This structure provides standardized error reporting in peer-to-peer collaboration scenarios.
- 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)