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.1.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.1-py3-none-any.whl (103.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: isek-0.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 ebf9a607a15c909c19f038a033f5c56daaef30043c5249df0a9c99b70be19fe8
MD5 4c4847294855e06c1d3c9a60b2f70865
BLAKE2b-256 62b8a42b80297cfa4f61d7f8ad50b554f6ec7bc491cabc2124a5c46add6f5a05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: isek-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 103.7 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8d2524c711e619f3a4c4806572f6191666c036cef59d77b0cbce086ccc1da759
MD5 779b86655197d6419ac58d988ec4e334
BLAKE2b-256 121202fa1726f18610d58bd6f8f6587d2d096688a4e1766bf62b7b1c9cbdc5d1

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