agentconnect package¶
AgentConnect - A decentralized framework for autonomous agent collaboration.
This package provides tools for creating, managing, and connecting independent AI agents capable of dynamic discovery and secure, autonomous communication across distributed networks.
Key components:
Agents: Independent agent implementations (AI, Human) with their own internal structures
Core: Foundational types, message handling, and registry for capability-based discovery
Communication: Decentralized hub for agent-to-agent secure messaging
Providers: LLM provider integrations for autonomous agent intelligence
Prompts: Tools, workflows, and templates for agent interactions
Utils: Utility functions for security, interaction control, verification, etc.
Key differentiators:
Decentralized Architecture: Agents operate as independent, autonomous peers rather than in a hierarchy
Dynamic Discovery: Agents find each other based on capabilities, not pre-defined connections
Independent Operation: Each agent can have its own internal multi-agent system
Secure Communication: Built-in cryptographic message signing and verification
Horizontal Scalability: Designed for thousands of independent, collaborating agents
For detailed usage examples, see the README.md or visit the documentation.
Subpackages¶
- agentconnect.agents package
- agentconnect.communication package
CommunicationHub
CommunicationHub.add_global_handler()
CommunicationHub.add_message_handler()
CommunicationHub.clear_agent_handlers()
CommunicationHub.get_agent()
CommunicationHub.get_all_agents()
CommunicationHub.get_message_history()
CommunicationHub.is_agent_active()
CommunicationHub.register_agent()
CommunicationHub.remove_global_handler()
CommunicationHub.remove_message_handler()
CommunicationHub.route_message()
CommunicationHub.send_collaboration_request()
CommunicationHub.send_message_and_wait_response()
CommunicationHub.unregister_agent()
- Subpackages
- Submodules
- agentconnect.core package
Message
Message.id
Message.sender_id
Message.receiver_id
Message.content
Message.message_type
Message.timestamp
Message.metadata
Message.protocol_version
Message.signature
Message.create()
Message.protocol_version
Message.sign()
Message.signature
Message.verify()
Message.id
Message.sender_id
Message.receiver_id
Message.content
Message.message_type
Message.timestamp
Message.metadata
AgentType
Capability
AgentIdentity
AgentIdentity.did
AgentIdentity.public_key
AgentIdentity.private_key
AgentIdentity.verification_status
AgentIdentity.created_at
AgentIdentity.metadata
AgentIdentity.create_key_based()
AgentIdentity.from_dict()
AgentIdentity.private_key
AgentIdentity.sign_message()
AgentIdentity.to_dict()
AgentIdentity.verification_status
AgentIdentity.verify_signature()
AgentIdentity.did
AgentIdentity.public_key
AgentIdentity.created_at
AgentIdentity.metadata
InteractionMode
ModelProvider
ModelName
ModelName.get_default_for_provider()
ModelName.GPT4_5_PREVIEW
ModelName.GPT4O
ModelName.GPT4O_MINI
ModelName.O1
ModelName.O1_MINI
ModelName.O3_MINI
ModelName.CLAUDE_3_7_SONNET
ModelName.CLAUDE_3_5_SONNET
ModelName.CLAUDE_3_5_HAIKU
ModelName.CLAUDE_3_OPUS
ModelName.CLAUDE_3_SONNET
ModelName.CLAUDE_3_HAIKU
ModelName.LLAMA33_70B_VTL
ModelName.LLAMA3_1_8B_INSTANT
ModelName.LLAMA_GUARD3_8B
ModelName.LLAMA3_70B
ModelName.LLAMA3_8B
ModelName.MIXTRAL
ModelName.GEMMA2_90B
ModelName.GEMINI2_5_PRO_EXP
ModelName.GEMINI2_FLASH
ModelName.GEMINI2_FLASH_LITE
ModelName.GEMINI2_PRO_EXP
ModelName.GEMINI2_FLASH_THINKING_EXP
ModelName.GEMINI1_5_FLASH
ModelName.GEMINI1_5_PRO
AgentRegistry
AgentRegistry.get_agent_type()
AgentRegistry.get_all_agents()
AgentRegistry.get_all_capabilities()
AgentRegistry.get_by_capability()
AgentRegistry.get_by_capability_semantic()
AgentRegistry.get_by_interaction_mode()
AgentRegistry.get_by_organization()
AgentRegistry.get_by_owner()
AgentRegistry.get_registration()
AgentRegistry.get_verified_agents()
AgentRegistry.register()
AgentRegistry.unregister()
AgentRegistry.update_registration()
AgentRegistry.verify_agent()
AgentRegistry.verify_owner()
- Subpackages
- Submodules
- agentconnect.prompts package
AgentWorkflow
AIAgentWorkflow
create_workflow_for_agent()
PromptTemplates
PromptTemplates.add_scratchpad_to_prompt()
PromptTemplates.create_ai_message_prompt()
PromptTemplates.create_chat_template()
PromptTemplates.create_human_message_prompt()
PromptTemplates.create_prompt()
PromptTemplates.get_capability_matching_prompt()
PromptTemplates.get_collaboration_prompt()
PromptTemplates.get_react_prompt()
PromptTemplates.get_supervisor_prompt()
PromptTemplates.get_system_prompt()
PromptTemplates.get_task_decomposition_prompt()
PromptTools
PromptTools.agent_registry
PromptTools.communication_hub
PromptTools.llm
PromptTools._current_agent_id
PromptTools._tool_registry
PromptTools._available_capabilities
PromptTools._agent_specific_tools_registered
PromptTools.create_agent_search_tool()
PromptTools.create_send_collaboration_request_tool()
PromptTools.create_task_decomposition_tool()
PromptTools.create_tool_from_function()
PromptTools.get_tools_for_workflow()
PromptTools.set_current_agent()
create_agent_workflow()
- Submodules
- agentconnect.providers package
ProviderFactory
BaseProvider
OpenAIProvider
AnthropicProvider
GroqProvider
GoogleProvider
- Submodules
- agentconnect.utils package
InteractionControl
InteractionControl.token_config
InteractionControl.max_turns
InteractionControl.current_turn
InteractionControl.last_interaction_time
InteractionControl._cooldown_callback
InteractionControl._conversation_stats
InteractionControl.__post_init__()
InteractionControl.current_turn
InteractionControl.get_callback_manager()
InteractionControl.get_conversation_stats()
InteractionControl.last_interaction_time
InteractionControl.max_turns
InteractionControl.process_interaction()
InteractionControl.reset_turn_counter()
InteractionControl.set_cooldown_callback()
InteractionControl.token_config
InteractionState
TokenConfig
TokenConfig.max_tokens_per_minute
TokenConfig.max_tokens_per_hour
TokenConfig.current_minute_tokens
TokenConfig.current_hour_tokens
TokenConfig.last_minute_reset
TokenConfig.last_hour_reset
TokenConfig.add_tokens()
TokenConfig.current_hour_tokens
TokenConfig.current_minute_tokens
TokenConfig.get_cooldown_duration()
TokenConfig.last_hour_reset
TokenConfig.last_minute_reset
TokenConfig.max_tokens_per_minute
TokenConfig.max_tokens_per_hour
RateLimitingCallbackHandler
RateLimitingCallbackHandler.max_tokens_per_minute
RateLimitingCallbackHandler.max_tokens_per_hour
RateLimitingCallbackHandler.current_minute_tokens
RateLimitingCallbackHandler.current_hour_tokens
RateLimitingCallbackHandler.last_minute_reset
RateLimitingCallbackHandler.last_hour_reset
RateLimitingCallbackHandler.in_cooldown
RateLimitingCallbackHandler.cooldown_until
RateLimitingCallbackHandler.cooldown_callback
RateLimitingCallbackHandler.on_chain_end()
RateLimitingCallbackHandler.on_llm_end()
RateLimitingCallbackHandler.on_llm_start()
setup_logging()
LogLevel
disable_all_logging()
get_module_levels_for_development()
- Submodules