agentconnect.agents.human_agent module

Human agent implementation for the AgentConnect framework.

This module provides a human agent that can interact with AI agents through a command-line interface.

class HumanAgent(agent_id, name, identity, organization_id=None)

Bases: BaseAgent

Human agent implementation for interactive communication with AI agents.

This agent handles:

  • Real-time text input/output

  • Message verification and security

  • Graceful conversation management

  • Error handling and recovery

Parameters:
async start_interaction(target_agent)

Start an interactive session with an AI agent

Return type:

None

Parameters:

target_agent (BaseAgent)

async process_message(message)

Process incoming messages from other agents

Return type:

Optional[Message]

Parameters:

message (Message)