Skip to content

Decentralized AI agent framework: dynamic discovery, secure communication, autonomous operation.

License

Notifications You must be signed in to change notification settings

AKKI0511/AgentConnect

Repository files navigation

AgentConnect: A Decentralized Framework for Autonomous Agent Collaboration

Build and connect independent AI agents that discover, interact, and collaborate securely.

CI Docs Documentation Python Version Poetry License

AgentConnect Logo

Installation โ€ข Documentation โ€ข Examples โ€ข Contributing

๐Ÿ“– Overview

AgentConnect is a revolutionary framework for building and connecting independent AI agents. Unlike traditional multi-agent systems that operate within a single, centrally controlled environment, AgentConnect enables the creation of a decentralized network of autonomous agents. These agents can:

  • Operate Independently: Each agent is a self-contained system, potentially with its own internal multi-agent structure (using LangGraph, custom logic, or any other approach).
  • Discover Each Other Dynamically: Agents discover each other based on capabilities, not pre-defined connections. This allows for a flexible and adaptable network.
  • Communicate Securely: Built-in message signing, verification, and communication protocols ensure secure interactions.
  • Collaborate on Complex Tasks: Agents can request services from each other, exchange data, and work together to achieve goals.
  • Scale Horizontally: The framework is designed to support thousands of independent agents, each with its own internal complexity.

AgentConnect empowers developers to create a truly decentralized ecosystem of AI agents, opening up possibilities for complex, collaborative AI applications that were previously impossible.

Why AgentConnect?

  • Beyond Hierarchies: Break free from the limitations of traditional, centrally controlled multi-agent systems.
  • True Agent Autonomy: Build agents that are truly independent and can interact with any other agent in the network.
  • Dynamic and Flexible: The network adapts as agents join, leave, and update their capabilities.
  • Secure by Design: Cryptographic message verification and standardized protocols ensure secure interactions.
  • Unprecedented Scalability: Designed to scale to thousands of interacting agents.
  • Extensible and Customizable: Easily integrate custom agents, capabilities, and communication protocols.

โœจ Key Features

๐Ÿค– Dynamic Agent Discovery

  • Capability-based matching
  • Flexible and adaptable network
  • No pre-defined connections

โšก Decentralized Communication

  • Secure message routing
  • No central control
  • Reliable message delivery

โš™๏ธ Autonomous Agents

  • Independent operation
  • Own processing loop
  • Potentially complex internal structure

๐Ÿ”’ Secure Communication

  • Message signing and verification
  • Standardized protocols
  • Ensures secure interactions

๐Ÿ”Œ Multi-Provider Support

  • OpenAI
  • Anthropic
  • Groq
  • Google AI

๐Ÿ“Š Monitoring (LangSmith)

  • Comprehensive tracing
  • Debugging capabilities
  • Performance analysis

๐Ÿš€ Quick Start

# Clone the repository
git clone https://github.com/AKKI0511/AgentConnect.git
cd AgentConnect

# Install dependencies
poetry install --with demo,dev

# Set up environment
copy example.env .env  # Windows
cp example.env .env    # Linux/Mac

For detailed installation instructions and configuration options, see the QuickStart Guide and Installation Guide.

๐ŸŽฎ Usage

For detailed instructions on using AgentConnect, including the command-line interface, running examples, and building your own agents, see the full documentation.

๐Ÿ’ป Examples

AgentConnect includes several example applications to demonstrate different features:

  • Basic Chat: Simple human-agent interaction
  • Multi-Agent System: Collaborative agent workflows
  • Research Assistant: Task delegation and information retrieval
  • Data Analysis: Specialized data processing
  • Telegram Assistant: Telegram AI agent with multi-agent collaboration

For code examples and detailed descriptions, see the Examples Directory.

๐Ÿš€ Demo Application

A full-featured demo application is included to showcase the framework's capabilities:

# Start the backend server
agentconnect --demo --backend-only

# Start the frontend (in a separate terminal)
cd demos/ui/frontend
npm install
npm run dev

For more information about the demo application, see the Demo Documentation.

๐Ÿ—๏ธ Architecture

AgentConnect is built on three core pillars that enable decentralized agent collaboration:

  1. Decentralized Agent Registry: A registry that allows agents to publish their capabilities and discover other agents. This is not a central controller, but rather a directory service. Agents can query the registry to find other agents that meet their needs.
  2. Communication Hub: A message routing system that facilitates secure communication between agents. The hub ensures reliable message delivery, but does not dictate agent behavior or control the network.
  3. Independent Agent Systems: Each agent is a self-contained unit, built using the tools and frameworks of the developer's choice (LangGraph, custom logic, etc.). Agents interact with the network through standardized protocols, but their internal workings are independent.

This architecture allows for a truly decentralized and scalable network of autonomous agents.

๐Ÿ“Š Monitoring with LangSmith

AgentConnect integrates with LangSmith for comprehensive monitoring:

  1. Set up LangSmith

    • Create an account at LangSmith
    • Add your API key to .env:
      LANGSMITH_TRACING=true
      LANGSMITH_API_KEY=your_langsmith_api_key
      LANGSMITH_PROJECT=AgentConnect
      
  2. Monitor agent workflows

    • View detailed traces of agent interactions
    • Debug complex reasoning chains
    • Analyze token usage and performance

๐Ÿ› ๏ธ Development

For developers who want to contribute to AgentConnect, please refer to our Development Guidelines for information about:

  • Coding standards
  • Documentation requirements
  • Testing procedures
  • Git workflow
  • Continuous integration

๐Ÿ“š Documentation

๐Ÿ“‹ Project Structure

AgentConnect/
โ”œโ”€โ”€ agentconnect/           # Core framework
โ”‚   โ”œโ”€โ”€ __init__.py        # Package initialization with public API
โ”‚   โ”œโ”€โ”€ cli.py             # Command-line interface
โ”‚   โ”œโ”€โ”€ agents/            # Agent implementations
โ”‚   โ”œโ”€โ”€ communication/     # Communication protocols
โ”‚   โ”œโ”€โ”€ core/              # Core components
โ”‚   โ”œโ”€โ”€ prompts/           # Prompt templates
โ”‚   โ”œโ”€โ”€ providers/         # AI provider integrations
โ”‚   โ””โ”€โ”€ utils/             # Utilities
โ”œโ”€โ”€ demos/                 # Demo applications
โ”‚   โ”œโ”€โ”€ api/              # FastAPI backend
โ”‚   โ””โ”€โ”€ ui/               # React frontend
โ”œโ”€โ”€ examples/              # Example applications
โ”œโ”€โ”€ docs/                  # Documentation
โ””โ”€โ”€ tests/                 # Test suite

๐Ÿ—บ๏ธ Roadmap

  • MVP with basic agent-to-agent interactions
  • Autonomous communication between agents
  • Secure data exchange between agents
  • Decentralized payment integration
  • Additional AI providers and protocols
  • Advanced memory systems (Redis, PostgreSQL)
  • Federated Learning: Agents collaboratively train models without sharing raw data.
  • Cross-Chain Communication: Agents on different blockchains could interact.
  • Marketplace for Agent Capabilities: A way for developers to monetize their agents' services.

๐Ÿค Contributing

We welcome contributions to AgentConnect! Please read our Contributing Guidelines for details on our code of conduct and the process for submitting pull requests.

๐Ÿ“„ License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

๐Ÿ“ Changelog

See the Changelog for a detailed history of changes to the project.

๐Ÿ™ Acknowledgments

  • Built with FastAPI, LangChain, and React
  • Inspired by the need for independent autonomous multi-agent collaboration with dynamic agent discovery
  • Thanks to all contributors who have helped shape this project

๐Ÿ“ž Support


Built with โค๏ธ by the AgentConnect team

About

Decentralized AI agent framework: dynamic discovery, secure communication, autonomous operation.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published