BeeAI Framework is an open-source library for building production-ready multi-agent systems.
The framework is available both as a Python and TypeScript library.
We are committed to maintaining parity between the two.
- π 2025-02-19: Launched an alpha of the Python library and rebranded to BeeAI Framework. See our getting started guide.
- π 2025-02-07: Introduced Backend module to simplify working with AI services (chat, embedding). See our migration guide.
- π§ 2025-01-28: Added support for DeepSeek R1, check out the Competitive Analysis Workflow example
- π 2025-01-09:
- Introduced Workflows, a way of building multi-agent systems.
- Added support for Model Context Protocol, featured on the official page.
- π 2024-12-09: Added support for LLaMa 3.3.
- π 2024-11-21: Added an experimental Streamlit agent.
For a full changelog, see our releases page.
π Build the optimal agent architecture for your use case. To design the right architecture for your use case, you need flexibility in both orchestrating agents and defining their roles and behaviors. With the BeeAI framework, you can implement any multi-agent pattern using Workflows. Start with our out-of-the-box ReActAgent, or easily customize your own agent.
π Scale effortlessly with production-grade controls. Deploying multi-agent systems requires efficient resource management and reliability. With the BeeAI framework, you can optimize token usage through memory strategies, persist and restore agent state via (de)serialization, generate structured outputs, and execute generated code in a sandboxed environment. When things go wrong, BeeAI helps you track the full agent workflow through events, collect telemetry, log diagnostic data, and handle errors with clear, well-defined exceptions.
π Seamlessly integrate with your models and tools. Get started with any model from Ollama, Groq, OpenAI, watsonx.ai, and more. Leverage tools from LangChain, connect to any server using the Model Context Protocol, or build your own custom tools. BeeAI is designed for extensibility, allowing you to integrate with the systems and capabilities you need.
To install the Python library:
pip install beeai-framework
To install the TypeScript library:
npm install beeai-framework
For more guidance and starter examples in your desired language, head to the docs pages for Python and TypeScript.
This example demonstrates how to build a multi-agent workflow using BeeAI Framework in TypeScript:
import "dotenv/config";
import { UnconstrainedMemory } from "bee-agent-framework/memory/unconstrainedMemory";
import { OpenMeteoTool } from "bee-agent-framework/tools/weather/openMeteo";
import { WikipediaTool } from "bee-agent-framework/tools/search/wikipedia";
import { AgentWorkflow } from "bee-agent-framework/experimental/workflows/agent";
import { Message, Role } from "bee-agent-framework/llms/primitives/message";
import { GroqChatLLM } from "bee-agent-framework/adapters/groq/chat";
const workflow = new AgentWorkflow();
workflow.addAgent({
name: "Researcher",
instructions: "You are a researcher assistant. Respond only if you can provide a useful answer.",
tools: [new WikipediaTool()],
llm: new GroqChatLLM(),
});
workflow.addAgent({
name: "WeatherForecaster",
instructions: "You are a weather assistant. Respond only if you can provide a useful answer.",
tools: [new OpenMeteoTool()],
llm: new GroqChatLLM(),
execution: { maxIterations: 3 },
});
workflow.addAgent({
name: "Solver",
instructions:
"Your task is to provide the most useful final answer based on the assistants' responses which all are relevant. Ignore those where assistant do not know.",
llm: new GroqChatLLM(),
});
const memory = new UnconstrainedMemory();
await memory.add(
Message.of({
role: Role.USER,
text: "What is the capital of France and what is the current weather there?",
meta: { createdAt: new Date() },
}),
);
const { result } = await workflow.run(memory.messages).observe((emitter) => {
emitter.on("success", (data) => {
console.log(`-> ${data.step}`, data.response?.update?.finalAnswer ?? "-");
});
});
console.log(`Agent π€`, result.finalAnswer);
Python version of this example coming soon.
- Python parity with Typescript
- Standalone docs site
- Integration with watsonx.ai for deployment
- More multi-agent reference architecture implementations using workflows
- More OTTB agent implementations
- Native tool calling with supported LLM providers
To stay up-to-date with out latest priorities, check out our public roadmap.
The 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.
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.
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.
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.
Special thanks to our contributors for helping us improve the BeeAI Framework.