Skip to main content

A multiagent system framework built on LangChain and LangGraph with supervisor-based coordination

Project description

LangGroup

PyPI version Python 3.10+ License: MIT

A multiagent system framework built on LangChain and LangGraph with supervisor-based coordination.

LangGroup provides a flexible architecture for creating groups of specialized AI agents that collaborate on complex tasks under the guidance of a supervisor agent.

Features

  • Supervisor Architecture: Intelligent task routing and coordination
  • Hierarchical Supervisors: Supervisors can manage other supervisors, enabling nested group structures
  • Extensible Agent System: Easy-to-extend base classes for custom agents
  • LangGraph Integration: Stateful workflows with LangGraph
  • Type-Safe: Full type hints and Pydantic models

Installation

pip install langgroup

For development:

pip install -e ".[dev]"

Quick Start

  1. Set up your environment:
cp .env.example .env
# Edit .env and add your OPENAI_API_KEY
  1. Create your custom agents by extending BaseAgent:
from langgroup import BaseAgent
from typing import List, Callable

class MyAgent(BaseAgent):
    @property
    def description(self) -> str:
        return "Description of what this agent does"
    
    @property
    def tools(self) -> List[Callable]:
        return [my_tool_function]
    
    @property
    def system_prompt(self) -> str:
        return "System prompt for the agent"
  1. Set up the agent system:
from langgroup import AgentSystem
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(model="gpt-4o-mini", temperature=0)
agents = [MyAgent(llm), AnotherAgent(llm)]
system = AgentSystem(llm, agents)

result = system.run("Your task here")

Hierarchical Supervisors

💡 Key Feature: SupervisorAgent can be used as a regular agent within another AgentSystem, enabling powerful hierarchical group structures.

Create groups of agents for complex workflows:

from langgroup import AgentSystem, SupervisorAgent
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(model="gpt-4o-mini", temperature=0)

# Create specialized groups
research_group = [ResearchAgent(llm), AnalysisAgent(llm)]
research_supervisor = SupervisorAgent(
    llm, research_group, 
    name="ResearchGroupSupervisor"
)

content_group = [WritingAgent(llm), EditingAgent(llm)]
content_supervisor = SupervisorAgent(
    llm, content_group, 
    name="ContentGroupSupervisor"
)

# Top-level supervisor coordinates the groups
top_system = AgentSystem(llm, [research_supervisor, content_supervisor])
result = top_system.run("Research AI trends and write a comprehensive report")

How it works:

  1. The top-level supervisor receives the task
  2. It intelligently routes to the appropriate group supervisor (e.g., ResearchGroupSupervisor)
  3. The group supervisor manages its specialized agents
  4. Results flow back up to coordinate between groups
  5. Complex multi-stage tasks are handled seamlessly

This architecture allows you to build sophisticated agent organizations with clear separation of concerns.

Usage

Single Agent (Basic)

Run the basic agent:

python main.py

The agent includes two tools:

  • Calculator: Performs mathematical calculations
  • Weather: Returns weather information (mock implementation)

Multiagent System with Supervisor

Run the multiagent system:

python multiagent_supervisor.py

The multiagent system includes:

  • Supervisor Agent: Orchestrates and routes tasks to specialized agents
  • Research Agent: Handles research and information gathering
  • Analysis Agent: Analyzes data and provides insights
  • Writing Agent: Writes and formats content
  • Math Agent: Performs calculations

The supervisor dynamically decides which agents to invoke and coordinates their work, allowing agents to collaborate back and forth on complex tasks.

Architecture

The multiagent system uses LangGraph to create a stateful workflow where:

  1. Supervisor receives the task
  2. Supervisor routes to appropriate sub-agent
  3. Sub-agent completes its work
  4. Control returns to supervisor
  5. Process repeats until task is complete

Customization

Add your own tools by creating functions and registering them with the Tool class in either main.py or multiagent_supervisor.py.

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

langgroup-0.2.3.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

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

langgroup-0.2.3-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file langgroup-0.2.3.tar.gz.

File metadata

  • Download URL: langgroup-0.2.3.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.6

File hashes

Hashes for langgroup-0.2.3.tar.gz
Algorithm Hash digest
SHA256 9fa502461e787a2cef30d11931c12aa7ad27e459a63bf1ea26f579324440008c
MD5 645eaf5412dcf88bd2601eb0c1cb9cd4
BLAKE2b-256 951b8b060ee19824e9a9c2e285129480ecac4d4d66d620cea6265ba055f51872

See more details on using hashes here.

File details

Details for the file langgroup-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: langgroup-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.6

File hashes

Hashes for langgroup-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 245c53e39cf0de54d1a046081971cbe2a94b3d7a2d387aa6eb3dcf567aeee454
MD5 aa3aafc32b37f36c39821f2ea232272d
BLAKE2b-256 fe52f2412c86a1e225f79ab88e2d529299f24d6e205c81423d3a189a9cb3baba

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