Skip to main content

ISEK Distributed Multi-Agent Framework

Project description

Isek Banner

Isek: Decentralized Agent-to-Agent (A2A) Network

PyPI version License: MIT Email

English | ไธญๆ–‡


Isek is a decentralized agent network framework designed for building intelligent, collaborative agent-to-agent (A2A) systems. Agents in Isek autonomously discover peers, share context, and cooperatively solve tasks, forming a self-organizing, decentralized society.

With native integration of large language models (LLMs) and a user-friendly CLI, Isek empowers developers and researchers to quickly prototype, deploy, and manage intelligent agent networks.

๐Ÿงช ISEK is under active development. Contributions, feedback, and experiments are highly welcome.


๐Ÿ’ก Why ISEK?

The world is shifting from human-defined workflows and centralized orchestration to autonomous, agent-driven coordination.

While most frameworks treat agents as isolated executors, ISEK focuses on the missing layer: decentralized agent collaboration and coordination. We believe the future of intelligent systems lies in self-organizing agent networks capable of context sharing, team formation, and collective reasoning โ€” all without central control.

ISEK enables:

  • ๐Ÿ” Autonomous agent discovery and recruitment across a peer-to-peer network
  • ๐Ÿง  Model-agnostic intelligence, allowing agents to use any LLM or backend
  • ๐Ÿค Composable multi-agent teamwork, with plug-and-play collaboration protocols
  • ๐ŸŒ Truly distributed deployments, from local clusters to global swarms

ISEK is not just about running agents โ€” it's about empowering them to find each other, reason together, and act as a decentralized system.


๐ŸŒŸ Features

  • ๐Ÿง  Decentralized Cooperation:
    Autonomous peer discovery and agent-to-agent collaboration with no single point of failure.

  • ๐ŸŒ Distributed Deployment:
    Seamless multi-node or cloud deployment for scalability and robustness.

  • ๐Ÿ—ฃ๏ธ LLM-Enhanced Intelligence:
    Built-in integration with models like OpenAI for natural interaction and reasoning.

  • ๐Ÿ”Œ Modular and Extensible:
    Easily customize agents, add new models, or extend functionalities.

  • ๐Ÿ’ป Developer-Friendly CLI:
    Streamlined CLI for painless agent setup and control.


๐Ÿ“ฆ Installation

Quick Install

pip install isek
isek setup

Prerequisites

  • Python 3.10+
  • Node.js 18+ (for P2P functionality)

๐Ÿ’ก Tip: The isek setup command automatically handles both Python and JavaScript dependencies.


๐Ÿš€ Quick Start

1๏ธโƒฃ Set Up Environment

Create a .env file:

OPENAI_MODEL_NAME=gpt-4o-mini
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_API_KEY=your_api_key

2๏ธโƒฃ Launch Agent

from isek.agent.isek_agent import IsekAgent
from isek.models.openai import OpenAIModel
import dotenv
dotenv.load_dotenv()

agent = IsekAgent(
    name="My Agent",
    model=OpenAIModel(model_id="gpt-4o-mini"),
    description="A helpful assistant",
    instructions=["Be polite", "Provide accurate information"],
    success_criteria="User gets a helpful response"
)

response = agent.run("hello")

3๏ธโƒฃ Try Examples

# List available examples
isek example list

# Run a simple example
isek example run lv1_single_agent

# Run a more complex example
isek example run lv5_team_agent

๐Ÿงช CLI Commands

isek setup       # Install Python and JavaScript dependencies
isek clean       # Clean temporary files
isek example list # List available examples
isek example run <name> # Run a specific example
isek --help      # View available commands

๐Ÿงฑ Project Structure

isek/
โ”œโ”€โ”€ examples                   # Sample scripts demonstrating Isek usage
โ”œโ”€โ”€ isek                       # Core functionality and modules
โ”‚   โ”œโ”€โ”€ agent                  # Agent logic and behavior
โ”‚   โ”œโ”€โ”€ node                   # Node orchestration
โ”‚   โ”œโ”€โ”€ protocol               # Inter-Agent communication Protocol Layer
โ”‚   โ”œโ”€โ”€ memory                 # Agent state and context
โ”‚   โ”œโ”€โ”€ models                 # LLM backends and interfaces
โ”‚   โ”œโ”€โ”€ team                   # Multi-Agent Organization Interface
โ”‚   โ”œโ”€โ”€ tools                  # The toolkit library for Agents
โ”‚   โ”œโ”€โ”€ utils                  # Utility functions
โ”‚   โ”œโ”€โ”€ cli.py                 # CLI entry point
โ”‚   โ””โ”€โ”€ isek_center.py         # Local registry and coordinator
โ”œโ”€โ”€ docs/                      # Documentation
โ””โ”€โ”€ README.md                  # Project overview and documentation

๐Ÿค Contributing

We welcome collaborators, researchers, and early adopters!


๐Ÿ“œ License

Licensed under the MIT License.


โš ๏ธ Legal Notice

ISEK is an open-source, permissionless framework for building decentralized agent coordination systems.
The contributors do not operate, control, or monitor any deployed agents or their behavior.
By using this project, you accept full responsibility for your actions. See LEGAL.md for more details.


Made with โค๏ธ by the Isek Team
Autonomy is not isolation. It's cooperation, at scale.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isek-0.2.0.tar.gz (6.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isek-0.2.0-py3-none-any.whl (52.9 kB view details)

Uploaded Python 3

File details

Details for the file isek-0.2.0.tar.gz.

File metadata

  • Download URL: isek-0.2.0.tar.gz
  • Upload date:
  • Size: 6.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for isek-0.2.0.tar.gz
Algorithm Hash digest
SHA256 42e2c0a7e4c3567cfc81e038a308ef42435861ae9e506ff91b1c95f0d041cde8
MD5 f26ed0023b5a8e62557e91bf9605b224
BLAKE2b-256 b277c9c6bb46f1b85cf9e2f19a9ed91846cf7047a8faeb65dbdb52ab8e730eb0

See more details on using hashes here.

File details

Details for the file isek-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: isek-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for isek-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f2aea39c4622864abeed6b975377968ca2fb417fecebe39e795532f87aacb581
MD5 61312f7b5edc0e22f3ce457f8de91eb8
BLAKE2b-256 dea04fe3f985bd9fdf806c400c8147488cf24d409f989c15ee2c30c6eca4eb77

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page