Skip to main content

No project description provided

Project description

BeeAI Framework for Python Project Status: Alpha

Build production-ready multi-agent systems. Also available in TypeScript.

Apache 2.0 Follow on Bluesky Join our Discord LF AI & Data

What is BeeAI Framework?

BeeAI Framework is a comprehensive toolkit for building intelligent, autonomous agents and multi-agent systems. It provides everything you need to create agents that can reason, take actions, and collaborate to solve complex problems.

[!TIP] Get started quickly with the beeai-framework-py-starter template.

Key Features

Feature Description
🤖 Agents Create intelligent agents that can reason, act, and adapt
🔄 Workflows Orchestrate multi-agent systems with complex execution flows
🔌 Backend Connect to any LLM provider with unified interfaces
🔧 Tools Extend agents with web search, weather, code execution, and more
🔍 RAG Build retrieval-augmented generation systems with vector stores and document processing
📝 Templates Build dynamic prompts with enhanced Mustache syntax
🧠 Memory Manage conversation history with flexible memory strategies
📊 Observability Monitor agent behavior with events, logging, and robust error handling
🚀 Serve Host agents in servers with support for multiple protocols such as A2A and MCP
💾 Cache Optimize performance and reduce costs with intelligent caching
💿 Serialization Save and load agent state for persistence across sessions

Quick Start

Prerequisite

✅ Python >= 3.11

Installation

pip install beeai-framework

Multi-Agent Example

import asyncio

from beeai_framework.agents.requirement import RequirementAgent
from beeai_framework.agents.requirement.requirements.conditional import ConditionalRequirement
from beeai_framework.backend import ChatModel
from beeai_framework.errors import FrameworkError
from beeai_framework.middleware.trajectory import GlobalTrajectoryMiddleware
from beeai_framework.tools import Tool
from beeai_framework.tools.handoff import HandoffTool
from beeai_framework.tools.search.wikipedia import WikipediaTool
from beeai_framework.tools.think import ThinkTool
from beeai_framework.tools.weather import OpenMeteoTool


async def main() -> None:
    knowledge_agent = RequirementAgent(
        llm=ChatModel.from_name("ollama:granite4:micro"),
        tools=[ThinkTool(), WikipediaTool()],
        requirements=[ConditionalRequirement(ThinkTool, force_at_step=1)],
        role="Knowledge Specialist",
        instructions="Provide answers to general questions about the world.",
    )

    weather_agent = RequirementAgent(
        llm=ChatModel.from_name("ollama:granite4:micro"),
        tools=[OpenMeteoTool()],
        role="Weather Specialist",
        instructions="Provide weather forecast for a given destination.",
    )

    main_agent = RequirementAgent(
        name="MainAgent",
        llm=ChatModel.from_name("ollama:granite4:micro"),
        tools=[
            ThinkTool(),
            HandoffTool(
                knowledge_agent,
                name="KnowledgeLookup",
                description="Consult the Knowledge Agent for general questions.",
            ),
            HandoffTool(
                weather_agent,
                name="WeatherLookup",
                description="Consult the Weather Agent for forecasts.",
            ),
        ],
        requirements=[ConditionalRequirement(ThinkTool, force_at_step=1)],
        # Log all tool calls to the console for easier debugging
        middlewares=[GlobalTrajectoryMiddleware(included=[Tool])],
    )

    question = "If I travel to Rome next weekend, what should I expect in terms of weather, and also tell me one famous historical landmark there?"
    print(f"User: {question}")

    try:
        response = await main_agent.run(question, expected_output="Helpful and clear response.")
        print("Agent:", response.last_message.text)
    except FrameworkError as err:
        print("Error:", err.explain())


if __name__ == "__main__":
    asyncio.run(main())

Source: python/examples/agents/requirement/handoff.py

Message Content Helpers (Text / Image / File)

You can build multimodal user messages with simple factory helpers:

from beeai_framework.backend import UserMessage

# Plain text
msg_text = UserMessage.from_text("Explain the solar eclipse")

# Image (data URI or URL)
msg_image = UserMessage.from_image("data:image/png;base64,iVBORw0KGgoAAA...")

# File (either file_id OR file_data)
msg_file = UserMessage.from_file(
    file_id="https://example.com/sample.pdf",
    format="application/pdf",
)

# Inline base64 file
msg_inline_pdf = UserMessage.from_file(
    file_data="data:application/pdf;base64,AAA...",
    format="application/pdf",
)

The file message API is now flattened (no nested file={...} structure). Use file_id for remote/previously uploaded resources or file_data for a data URI.

Running the Example

[!Note]

To run this example, be sure that you have installed Ollama with the granite4:latest model downloaded.

To run projects, use:

python [project_name].py

➡️ Explore more in our examples library.

Documentation

📖 Complete documentation is available at (framework.beeai.dev)[https://framework.beeai.dev/]

Contribution Guidelines

BeeAI framework is an open-source project and we ❤️ contributions.

If you'd like to help build BeeAI, take a look at our contribution guidelines.

Bugs

We are using GitHub Issues to manage public bugs. We keep a close eye on this, so before filing a new issue, please check to make sure it hasn't already been logged.

Code of Conduct

This project and everyone participating in it are governed by the Code of Conduct. By participating, you are expected to uphold this code. Please read the full text so that you can read which actions may or may not be tolerated.

Legal Notice

All content in these repositories including code has been provided by IBM under the associated open source software license and IBM is under no obligation to provide enhancements, updates, or support. IBM developers produced this code as an open source project (not as an IBM product), and IBM makes no assertions as to the level of quality nor security, and will not be maintaining this code going forward.

Maintainers

For information about maintainers, see MAINTAINERS.md.

Contributors

Special thanks to our contributors for helping us improve BeeAI framework.

Contributors list

Developed by contributors to the BeeAI project, this initiative is part of the Linux Foundation AI & Data program. Its development follows open, collaborative, and community-driven practices.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

beeai_framework-0.1.80.tar.gz (212.8 kB view details)

Uploaded Source

Built Distribution

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

beeai_framework-0.1.80-py3-none-any.whl (384.5 kB view details)

Uploaded Python 3

File details

Details for the file beeai_framework-0.1.80.tar.gz.

File metadata

  • Download URL: beeai_framework-0.1.80.tar.gz
  • Upload date:
  • Size: 212.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.13.7 Darwin/25.4.0

File hashes

Hashes for beeai_framework-0.1.80.tar.gz
Algorithm Hash digest
SHA256 ac0846ee9160c80238e56113a9202f87073b731d62031748ad8d30621b252cd4
MD5 e2b9c5186a8c3372492c587f99054663
BLAKE2b-256 ea0e5bc84288878f8179411044107b344d10290b41ae7b18e35d22d52bfa1a70

See more details on using hashes here.

File details

Details for the file beeai_framework-0.1.80-py3-none-any.whl.

File metadata

  • Download URL: beeai_framework-0.1.80-py3-none-any.whl
  • Upload date:
  • Size: 384.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.13.7 Darwin/25.4.0

File hashes

Hashes for beeai_framework-0.1.80-py3-none-any.whl
Algorithm Hash digest
SHA256 7f23f12ac3d1fa1656041d3daae0f32d7946fce03119ae31ee3971d9b8d8e975
MD5 67d05a73902ac2f24e1d4ffc9f5d90d3
BLAKE2b-256 b6c75607c6c4aee893fc4f09ffc62621ddbc0aaee649342c5e52cccf83002a02

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