Skip to main content

LeafMesh — Multi-Agent AI Orchestration Platform

License: Commercial Python 3.8+ Version Redis

YAML-native multi-agent AI platform with self-healing and evolutionary capabilities

LeafMesh transforms multi-agent AI development through declarative YAML configuration that becomes executable intelligence. Built on the MANAGED_MESH architecture with production-ready coordination and persistence.

Core Features

  • YAML-Native Intelligence - Zero-code agent creation with AST-parsed configuration
  • Built-in Coordination - Manager and Summarizer agents provide automatic oversight
  • MANAGED_MESH Architecture - Direct agent communication with conditional routing
  • Redis-Powered Persistence - Automatic session management and conversation history
  • Enterprise Tool Ecosystem - 15+ built-in tools with OpenAI-compatible function calling
  • Advanced Parallel Processing - Multi-session threading with intelligent coordination

Production Features

  • Self-Healing Networks - 6 autonomous healing actions with failure detection
  • Evolutionary Optimization - Genetic algorithms with real fitness testing
  • Adaptive Model Intelligence - ML-powered model selection with performance prediction

Quick Start

1. Installation

pip install leafmesh

2. Environment Setup

# Required: OpenAI API key
export OPENAI_API_KEY="your-openai-key"

# Optional: Additional providers
export ANTHROPIC_API_KEY="your-anthropic-key"
export GOOGLE_API_KEY="your-google-key"

3. Redis Setup

Local Redis:

# macOS
brew install redis && brew services start redis

# Ubuntu/Debian
sudo apt install redis-server && sudo systemctl start redis

# Docker
docker run -d -p 6379:6379 redis:alpine

4. Basic Usage

from leafmesh import LeafMesh

# Initialize from YAML configuration
sdk = LeafMesh.from_yaml("config.yaml")

# Start the mesh
await sdk.start()

# Process requests
response = await sdk.process_request(
    session_id="user_session",
    input_data={"message": "Hello, how can you help me?"}
)

print(response)

Example YAML Configuration:

name: "my_mesh"
architecture: "managed_mesh"

# Built-in coordination
manager:
  enabled: true
  model: "gpt-4o"

summarizer:
  enabled: true
  model: "gpt-4o-mini"

# User-defined agents
agents:
  conversation_agent:
    name: "conversation_agent"
    model: "gpt-4o-mini"
    prompt: "You are a helpful AI assistant."
    yields:
      response: "string"
      confidence: "number"
    tools: ["calculator", "current_time"]

Architecture Overview

LeafMesh implements a MANAGED_MESH architecture with:

  • LLM Agents - YAML-defined with optional Python enhancement
  • Manager Agent - Built-in coordination and rule enforcement
  • Summarizer Agent - Omnipresent monitoring and analysis
  • Redis Persistence - Automatic session and conversation storage
  • Event System - All communication flows through events
  • Tool System - OpenAI-compatible function calling

For detailed architecture information, see docs/ARCHITECTURE.md


Agent Enhancement

Add Python logic to YAML-defined agents:

@sdk.intelligence("conversation_agent")
async def enhance_conversation(llm_response, input_data, context):
    """Add business logic to agent responses"""

    # Access conversation history
    history = context.get("conversation_history", [])

    # Enhance the LLM response
    enhanced_response = add_context(llm_response, history)

    # Trigger other agents conditionally
    if needs_specialist(enhanced_response):
        await sdk.trigger_agents(data={"analysis": enhanced_response})

    return {
        "response": enhanced_response,
        "confidence": calculate_confidence(enhanced_response)
    }

Revolutionary Features

Self-Healing Networks

# Enable automatic failure recovery
await sdk.enable_self_healing()

# Monitor agent health
health = await sdk.get_agent_health_status()
stats = await sdk.get_healing_statistics()

Evolutionary Optimization

# Optimize mesh configuration automatically
test_scenarios = [
    {"input": "Test case 1", "agents": ["conversation_agent"]},
    {"input": "Test case 2", "agents": ["technical_agent"]}
]

best_genome = await sdk.evolve_swarm_architecture(test_scenarios)
await sdk.apply_evolved_configuration()

Adaptive Model Selection

# Automatic model selection based on request characteristics
response = await sdk.adaptive_execute(
    prompt="Analyze this complex scenario",
    preferred_models=["gpt-4o", "claude-3.5-sonnet"]
)

Documentation

  • Architecture Guide - Technical implementation details
  • Debugging Guide - Troubleshooting and monitoring
  • Getting Started - Run create-leafmesh my-project to scaffold a complete example project

Use Cases

LeafMesh excels at:

  • Customer Service Systems - Multi-tier workflows with self-healing
  • Data Analysis Pipelines - Collaborative analytical workflows
  • Content Creation - Coordinated writing and editing
  • Decision Support - Complex decision-making with oversight
  • Workflow Automation - Business process automation

Framework Comparison

Feature LeafMesh LangGraph CrewAI AutoGen
YAML Configuration Primary Code-based Code-based Code-based
Built-in Coordination Manager/Summarizer Manual Manual Manual
Auto-Persistence Redis Manual Manual Manual
Self-Healing Production None None None
Evolutionary Optimization Genetic Algorithm None None None

Licensing

LeafMesh is commercial software owned by LeafCraft.

  • Evaluation: 30-day free evaluation for research/development
  • Commercial: Requires valid commercial license for revenue-generating use
  • Enterprise: Custom enterprise licensing available

Licensing: info@leafcraftstudios.com


Getting Started

  1. Install LeafMesh and set up Redis
  2. Create your first YAML configuration with basic agents
  3. Add Python enhancements for custom logic
  4. Enable revolutionary features for production

LeafMesh: Production-ready multi-agent AI with YAML-driven simplicity


Copyright 2025 LeafCraft. All rights reserved.

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

leafmesh-2.4.135-cp314-none-any.whl (3.3 MB view details)

Uploaded CPython 3.14

leafmesh-2.4.135-cp313-none-any.whl (3.1 MB view details)

Uploaded CPython 3.13

leafmesh-2.4.135-cp312-none-any.whl (3.1 MB view details)

Uploaded CPython 3.12

leafmesh-2.4.135-cp311-none-any.whl (3.2 MB view details)

Uploaded CPython 3.11

leafmesh-2.4.135-cp310-none-any.whl (1.8 MB view details)

Uploaded CPython 3.10

File details

Details for the file leafmesh-2.4.135-cp314-none-any.whl.

File metadata

  • Download URL: leafmesh-2.4.135-cp314-none-any.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for leafmesh-2.4.135-cp314-none-any.whl
Algorithm Hash digest
SHA256 61036c2869273a90393e439ac2de5af812fd09aabc2d41595b98a704b861f96c
MD5 de47882f633e085986b4128f31559ba4
BLAKE2b-256 e8a8e70f57ab2aa0b8d22d97fc339ea083a92d8f3419eba4d67ed38b50ce9046

See more details on using hashes here.

File details

Details for the file leafmesh-2.4.135-cp313-none-any.whl.

File metadata

  • Download URL: leafmesh-2.4.135-cp313-none-any.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.13
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for leafmesh-2.4.135-cp313-none-any.whl
Algorithm Hash digest
SHA256 e1ece49a2ab0c5bdada50dbe0c04dee3865cc81f7ebd4ced265b9b3c409aedbc
MD5 3666de11d82aa04dc6e9e18de556372e
BLAKE2b-256 19b040a8564798b342624f9bfeac005e869c0defc9cf987f9483d8141dd65916

See more details on using hashes here.

File details

Details for the file leafmesh-2.4.135-cp312-none-any.whl.

File metadata

  • Download URL: leafmesh-2.4.135-cp312-none-any.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.12
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for leafmesh-2.4.135-cp312-none-any.whl
Algorithm Hash digest
SHA256 5241ad4a4c29c41355e86acd8e1db13d83a07dc726c5f5edfc14440f576ef155
MD5 1c1b9f81eb4411874a00c74ad2bb9a73
BLAKE2b-256 e732fb4f92a33ea0c23dd22625c7dc0424e63da6813276269e337cc32f31edb8

See more details on using hashes here.

File details

Details for the file leafmesh-2.4.135-cp311-none-any.whl.

File metadata

  • Download URL: leafmesh-2.4.135-cp311-none-any.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for leafmesh-2.4.135-cp311-none-any.whl
Algorithm Hash digest
SHA256 318f3fd023783b68935534203c6cbb4c83771ddceedd8829a976bf5cf3e6ffd5
MD5 48ff551a955ec15aa0d5efe003941262
BLAKE2b-256 3fd4d1ff72edf16670ac4dabe7ba86d09b8917606ec3d7e5a9dbaea5d58cd1e5

See more details on using hashes here.

File details

Details for the file leafmesh-2.4.135-cp310-none-any.whl.

File metadata

  • Download URL: leafmesh-2.4.135-cp310-none-any.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for leafmesh-2.4.135-cp310-none-any.whl
Algorithm Hash digest
SHA256 12551be7e6a579813b756da6e810f53ceb22c16edf3bceddf1c74f1432b40a9e
MD5 2e633c4843f51e18272e2e63df4fdb15
BLAKE2b-256 1b1cc4775e4175eabc577f0450abf7791defc85d3e0a88dd0c8dbe3aa60a1d18

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.4.135 This release

5 files

2.4.134

5 files

2.4.133

5 files

2.4.132

5 files

2.4.131

5 files

2.4.130

5 files

2.4.129

5 files

2.4.128

5 files

2.4.127

5 files

2.4.126

5 files

2.4.125

5 files

2.4.124

5 files

2.4.122

5 files

2.4.121

5 files

2.4.119

5 files

2.4.118

5 files

2.4.116

5 files

2.4.115

5 files

2.4.113

5 files

2.4.112

5 files

2.4.110

5 files

2.4.108

5 files

2.4.107

5 files

2.4.106

5 files

2.4.105

5 files

2.4.104

5 files

2.4.103

5 files

2.4.102

5 files

2.4.101

5 files

2.4.99

5 files

2.4.98

5 files

2.4.95

5 files

2.4.48

5 files

2.4.47

4 files

2.4.39

5 files

2.4.33

5 files

2.4.32

5 files

2.4.31

5 files

2.4.30

5 files

2.4.28

5 files

2.4.25

5 files

2.4.24

5 files

2.4.19

5 files

2.4.18

5 files

2.4.17

5 files

2.4.3

5 files

2.4.0

5 files

2.3.48

5 files

2.3.43

5 files

2.3.42

5 files

2.3.41

5 files

2.3.40

5 files

2.3.39

5 files

2.2.46

5 files

2.1.51

5 files

2.1.50

5 files

2.1.42

5 files

2.1.39

5 files

2.1.38

5 files

2.1.29

5 files

2.1.28

5 files

2.1.18

5 files

2.1.9

5 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page