BeeAI Framework with bug fix for when retrieving datetime fields that don't have a dict attribute
Project description
BeeAI Framework for Python 
Build production-ready multi-agent systems. Also available in TypeScript.
Key features
BeeAI framework provides a comprehensive set of features for building powerful AI agents:
Core building blocks
| Feature | Description |
|---|---|
| Agents | Create intelligent, autonomous agents using the ReAct pattern. Build agents that can reason about problems, take appropriate actions, and adapt their approach based on feedback. Includes pre-built agent architectures and customizable components. |
| Workflows | Orchestrate complex multi-agent systems where specialized agents collaborate to solve problems. Define sequential or conditional execution flows with state management and observability. |
| Backend | Connect to various LLM providers like Ollama, watsonx.ai, and more. Offers unified interfaces for chat, embeddings, and structured outputs, making it easy to swap models without changing your code. |
| Tools | Extend agent capabilities with ready-to-use tools for web search, weather forecasting, knowledge retrieval, code execution, and more. Create custom tools to connect agents to any API or service. |
| Memory | Manage conversation history with different memory strategies. Choose from unconstrained memory, token-aware memory, sliding window memory, or summarization memory based on your needs. |
| Templates | Build flexible prompt templates using an enhanced Mustache syntax. Create reusable templates with variables, conditionals, and loops to generate well-structured prompts. |
Production optimization
| Feature | Description |
|---|---|
| Cache | Optimize performance and reduce costs with caching mechanisms for tool outputs and LLM responses. Implement different caching strategies based on your application requirements. |
| Serialization | Save and load agent state for persistence across sessions. Serialize workflows, memory, and other components to support stateful applications. |
| Errors | Implement robust error management with specialized error classes. Distinguish between different error types and implement appropriate recovery strategies. |
[!NOTE] Cache and serialization features are not yet implemented in Python, but they are coming soon!
Observability & control
| Feature | Description |
|---|---|
| Emitter | Gain visibility into agent decision processes with a flexible event system. Subscribe to events like updates, errors, and tool executions to monitor agent behavior. |
| Logger | Track agent actions and system events with comprehensive logging. Configure logging levels and outputs to support debugging and monitoring. |
| Instrumentation | Monitor performance and usage with OpenTelemetry integration. Collect metrics and traces to understand system behavior in production environments. |
| Version | Access framework version information programmatically to ensure compatibility. |
[!NOTE] Instrumentation and version features are not yet implemented in Python, but they are coming soon!
Tutorials
| Topic | Description |
|---|---|
| How to Slack with Bee | This tutorial will guide you through integrating the BeeAI Python Framework with the Slack API. By the end, the agent will be able to post messages to a Slack channel. |
| BeeAI integration using RemoteAgent | BeeAI is an open platform to help you discover, run, and compose AI agents from any framework and language. In this tutorial you will learn how to integrate BeeAI agents into the framework. |
Prerequisites
✅ Python >= 3.11
Installation
Install BeeAI framework using pip:
pip install beeai-framework
Quick example
The following example demonstrates how to build a multi-agent workflow using the BeeAI framework:
import asyncio
from beeai_framework.backend.chat import ChatModel
from beeai_framework.tools.search.wikipedia import WikipediaTool
from beeai_framework.tools.weather.openmeteo import OpenMeteoTool
from beeai_framework.workflows.agent import AgentWorkflow, AgentWorkflowInput
async def main() -> None:
llm = ChatModel.from_name("ollama:llama3.1")
workflow = AgentWorkflow(name="Smart assistant")
workflow.add_agent(
name="Researcher",
role="A diligent researcher.",
instructions="You look up and provide information about a specific topic.",
tools=[WikipediaTool()],
llm=llm,
)
workflow.add_agent(
name="WeatherForecaster",
role="A weather reporter.",
instructions="You provide detailed weather reports.",
tools=[OpenMeteoTool()],
llm=llm,
)
workflow.add_agent(
name="DataSynthesizer",
role="A meticulous and creative data synthesizer",
instructions="You can combine disparate information into a final coherent summary.",
llm=llm,
)
location = "Saint-Tropez"
response = await workflow.run(
inputs=[
AgentWorkflowInput(
prompt=f"Provide a short history of {location}.",
),
AgentWorkflowInput(
prompt=f"Provide a comprehensive weather summary for {location} today.",
expected_output="Essential weather details such as chance of rain, temperature and wind. Only report information that is available.",
),
AgentWorkflowInput(
prompt=f"Summarize the historical and weather data for {location}.",
expected_output=f"A paragraph that describes the history of {location}, followed by the current weather conditions.",
),
]
).on(
"success",
lambda data, event: print(
f"\n-> Step '{data.step}' has been completed with the following outcome.\n\n{data.state.final_answer}"
),
)
print("==== Final Answer ====")
print(response.result.final_answer)
if __name__ == "__main__":
asyncio.run(main())
Source: python/examples/workflows/multi_agents_simple.py
Running the example
[!Note]
To run this example, be sure that you have installed ollama with the granite3.1-dense:8b model downloaded.
To run projects, use:
python [project_name].py
➡️ Explore more in our examples library.
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.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file beeai_framework_patched_fr-0.1.21.tar.gz.
File metadata
- Download URL: beeai_framework_patched_fr-0.1.21.tar.gz
- Upload date:
- Size: 81.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c5576c9b0628e58972d0476adba827830a590a6b5fffccf9348419f865e247e
|
|
| MD5 |
109e7992abaec8d594730b2371c58e3e
|
|
| BLAKE2b-256 |
ec6420f644d3073dab5ef7e9341bfda8a38462e0da97f030a51a32ea14384cd4
|
File details
Details for the file beeai_framework_patched_fr-0.1.21-py3-none-any.whl.
File metadata
- Download URL: beeai_framework_patched_fr-0.1.21-py3-none-any.whl
- Upload date:
- Size: 174.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0643271e22563bbcb23be7e3461fbc634712d1be5d7698baf0d29089b36c8bf
|
|
| MD5 |
75b14695b2f995615599860035750dfe
|
|
| BLAKE2b-256 |
e806106d284d83fcca516577698c4be2febf1230f012d7425582daa67b90c120
|