Skip to main content

A lightweight LLM orchestration framework for building Multi-Agent AI systems.

Project description

microAgents Framework

A lightweight LLM orchestration framework for building Multi-Agent AI systems. The framework provides an easy way to create and orchestrate multiple AI agents with XML-style tool calls.

Key Features

🚀 Universal Tool Calling Support

  • Works with ANY LLM API that follows OpenAI-compatible format
  • Unique Feature: Enables function/tool calling even with models that don't natively support it
  • XML-based tool calling format that's intuitive and human-readable

Framework Comparison

Framework Core Abstractions Size & Complexity Dependencies & Integration Key Advantages Limitations/Trade-offs
LangChain Agent, Chain 405K LOC
+166MB
Many vendor wrappers
(OpenAI, Pinecone, etc)
Many app wrappers (QA, Summarization)
Rich ecosystem
Extensive tooling
Large community
Heavy footprint
Complex setup
JSON schema based
CrewAI Agent, Chain 18K LOC
+173MB
Many vendor & app wrappers
(OpenAI, Anthropic, etc)
Role-based agents
Built-in collaboration
Complex hierarchies
Heavy dependencies
SmolAgent Agent 8K LOC
+198MB
Some integrations
(DuckDuckGo, HuggingFace)
Simplified agent design Limited tool ecosystem
Large package size
LangGraph Agent, Graph 37K LOC
+51MB
Some DB integrations
(PostgresStore, SqliteSaver)
Graph-based flows
DAG support
Complex DAG definitions
JSON schema based
AutoGen Agent 7K LOC
+26MB (core)
Optional integrations
(OpenAI, Pinecone)
Lightweight core
Modular design
Limited built-in tools
microAgents Agent, Tool ~2K LOC
<1MB
Minimal
(requests, urllib3)
✓ Universal tool calling
✓ XML-based format
✓ Ultra lightweight
✓ Simple integration
✓ Any OpenAI-compatible LLM
Bring your own tools
No built-in vendors

Key Differentiators

  • Ultra Lightweight: microAgents is <1MB, compared to hundreds of MB for other frameworks
  • Universal Compatibility: Works with any OpenAI-compatible API endpoint
  • XML Tool Calls: More readable and intuitive than JSON schemas
  • Minimal Dependencies: Only core HTTP libraries required
  • Simple Integration: Direct function integration without wrapper classes
  • LLM Agnostic: Works with any LLM that follows OpenAI's API format, including those without native function calling

Installation

You can install microAgents directly from PyPI:

pip install microAgents

Or install from source for development:

git clone https://github.com/prabhjots664/MicroAgents.git
cd MicroAgents
pip install -e .

Quick Start

Here's a complete example showing how to create a multi-agent math system:

from microAgents.llm import LLM
from microAgents.core import MicroAgent, Tool, BaseMessageStore

# Initialize LLM with your API
llm = LLM(
    base_url="https://api.hyperbolic.xyz/v1",
    api_key="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJrYW1hbHNpbmdoZ2FsbGFAZ21haWwuY29tIiwiaWF0IjoxNzM1MjI2ODIzfQ.1wZmIzTZUWLzr-uP7Qtib_kkXNZmH_yQtSn1lP9S2z0",
    model="Qwen/Qwen2.5-Coder-32B-Instruct",
    max_tokens=4000,
    temperature=0.8,
    top_p=0.9
)

# Define tools for basic math operations
def add_numbers(a: float, b: float) -> float:
    return a + b

def multiply_numbers(a: float, b: float) -> float:
    return a * b

# Create specialized agents
math_agent = MicroAgent(
    llm=llm,
    prompt="You are a math assistant. Handle basic arithmetic operations.",
    toolsList=[
        Tool(description="Add two numbers", func=add_numbers),
        Tool(description="Multiply two numbers", func=multiply_numbers)
    ]
)

# Create message store for conversation history
message_store = BaseMessageStore()

# Use the agent
response = math_agent.execute_agent(
    "First add 3 and 5, then multiply the result by 2", 
    message_store
)
print(response)

Multi-Agent Orchestration Example

Here's an example of creating multiple specialized agents and orchestrating them:

from microAgents.llm import LLM
from microAgents.core import MicroAgent, Tool, BaseMessageStore

# Initialize LLM
math_llm = LLM(
    base_url="https://api.hyperbolic.xyz/v1",
    api_key="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJrYW1hbHNpbmdoZ2FsbGFAZ21haWwuY29tIiwiaWF0IjoxNzM1MjI2ODIzfQ.1wZmIzTZUWLzr-uP7Qtib_kkXNZmH_yQtSn1lP9S2z0",
    model="Qwen/Qwen2.5-Coder-32B-Instruct",
    max_tokens=4000,
    temperature=0.8,
    top_p=0.9
)

# Define tools
def add_numbers(a: float, b: float) -> float:
    """Adds two numbers together."""
    return a + b

def multiply_numbers(a: float, b: float) -> float:
    """Multiplies two numbers together."""
    return a * b

def factorial(n: int) -> int:
    """Calculates factorial of a number."""
    if n == 0:
        return 1
    return n * factorial(n - 1)

# Create agents
simple_math_agent = MicroAgent(
    llm=math_llm,
    prompt="""You are a simple math assistant. Handle basic arithmetic operations.""",
    toolsList=[
        Tool(description="Adds two numbers", func=add_numbers),
        Tool(description="Multiplies two numbers", func=multiply_numbers)
    ]
)

advanced_math_agent = MicroAgent(
    llm=math_llm,
    prompt="""You are an advanced math assistant. Handle complex math operations.""",
    toolsList=[
        Tool(description="Calculates factorial", func=factorial)
    ]
)

class Orchestrator(MicroAgent):
    def __init__(self):
        super().__init__(
            llm=math_llm,
            prompt="""You are a math query analyzer. For each query:
1. If it contains basic arithmetic (addition, subtraction, multiplication, division), output exactly: SIMPLE_MATHS NEEDED
2. If it contains advanced math (factorials, exponents, logarithms, derivatives, integrals), output exactly: ADVANCED_MATHS NEEDED
3. If unsure, output exactly: UNKNOWN_MATH_TYPE

Examples:
- "What is 5 plus 3?" → SIMPLE_MATHS NEEDED
- "Calculate 10 factorial" → ADVANCED_MATHS NEEDED
- "Solve x^2 + 2x + 1 = 0" → UNKNOWN_MATH_TYPE

Always output exactly one of these three options, nothing else.""",
            toolsList=[]
        )
        self.simple_math_agent = simple_math_agent
        self.advanced_math_agent = advanced_math_agent

    def execute_agent(self, query: str, message_store: BaseMessageStore) -> str:
        """Handle full query flow through orchestrator."""
        print(f"\nDebug: Orchestrator analyzing query: {query}")
        
        # Get initial analysis from orchestrator
        analysis = super().execute_agent(query, message_store)
        print(f"Debug: Orchestrator analysis result: {analysis}")
        
        if "SIMPLE_MATHS NEEDED" in analysis:
            print("Debug: Routing to Simple Math Agent")
            result = self.simple_math_agent.execute_agent(query, message_store)
            print(f"Debug: Simple Math Agent result: {result}")
            return self._format_result("Simple Math Agent", result)
        elif "ADVANCED_MATHS NEEDED" in analysis:
            print("Debug: Routing to Advanced Math Agent")
            result = self.advanced_math_agent.execute_agent(query, message_store)
            print(f"Debug: Advanced Math Agent result: {result}")
            return self._format_result("Advanced Math Agent", result)
        else:
            return "Orchestrator: Unable to determine the appropriate agent for this query."

    def _format_result(self, agent_name: str, result: str) -> str:
        """Format the final result from an agent."""
        return f"Orchestrator: Result from {agent_name}:\n{result}"

def main():
    message_store = BaseMessageStore()
    orchestrator = Orchestrator()
    
    # Example queries that demonstrate XML-style tool calls
    queries = [
        "What is 15 plus 27?", 
        "Calculate 5 factorial",  
        "Multiply 8 by 9", 
        "First add 3 and 5, then multiply the result by 2"
    ]
    
    for query in queries:
        print(f"\nUser: {query}")
        response = orchestrator.execute_agent(query, message_store)
        print(f"{response}")

if __name__ == "__main__":
    main()

This example demonstrates:

  • Creating multiple specialized agents with different tools
  • Building an orchestrator agent to route queries
  • Using a message store to maintain conversation history
  • Coordinating multiple agents to handle different types of tasks

Examples

  • math_demo.py: Basic math operations using tool calls

Contributors

License

MIT License

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

microagents-1.3.6.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

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

microagents-1.3.6-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file microagents-1.3.6.tar.gz.

File metadata

  • Download URL: microagents-1.3.6.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for microagents-1.3.6.tar.gz
Algorithm Hash digest
SHA256 1737216d6fcff6b4241327e7b15d32a944ff5d9f26b92c6aadb426e252ab6db5
MD5 7fb026aa5c4764e1f55581e14761fd28
BLAKE2b-256 74b997a1ceebfbfcbf6bcb68bd6af265d471710b41c4f33fe95809a187ac1196

See more details on using hashes here.

File details

Details for the file microagents-1.3.6-py3-none-any.whl.

File metadata

  • Download URL: microagents-1.3.6-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for microagents-1.3.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d1a5522df4f0543ff9a4eec6a379704bde3b51518a0a30cb724e092ae931c9e5
MD5 c72c3cd134cbc69f204cd4878d1f975e
BLAKE2b-256 932ab8a2438a1c386a62dc9318a2155b507c7c69ccd7c23346a6406140e52355

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