The fastest way to bring multi-agent workflows to production
Project description
FastAgency
The fastest way to bring multi-agent workflows to production.
Welcome to FastAgency! This guide will walk you through the initial setup and usage of FastAgency, a powerful tool that leverages the AutoGen framework to quickly build applications. FastAgency is designed to be flexible and adaptable, and we plan to extend support to additional agentic frameworks such as CrewAI in the near future. This will provide even more options for defining workflows and integrating with various AI tools.
With FastAgency, you can create interactive applications using various interfaces such as a console or Mesop.
Supported Interfaces
FastAgency currently supports workflows defined using AutoGen and provides options for different types of applications:
- Console: Use the ConsoleUI interface for command-line based interaction. This is ideal for developing and testing workflows in a text-based environment.
- Mesop: Utilize Mesop with MesopUI for web-based applications. This interface is suitable for creating web applications with a user-friendly interface.
We are also working on adding support for other frameworks, such as CrewAI, to broaden the scope and capabilities of FastAgency. Stay tuned for updates on these integrations.
Quick start
Install
To get started, you need to install FastAgency. You can do this using pip
, Python's package installer. This command installs FastAgency with support for the Mesop interface and AutoGen framework.
pip install "fastagency[autogen,mesop]"
Write Code
Imports
Depending on the interface you choose, you'll need to import different modules. These imports set up the necessary components for your application:
import os
from autogen.agentchat import ConversableAgent
from fastagency import UI, FastAgency, Workflows
from fastagency.runtimes.autogen import AutoGenWorkflows
from fastagency.ui.mesop import MesopUI
Define Workflow
You need to define the workflow that your application will use. This is where you specify how the agents interact and what they do. Here's a simple example of a workflow definition:
llm_config = {
"config_list": [
{
"model": "gpt-4o-mini",
"api_key": os.getenv("OPENAI_API_KEY"),
}
],
"temperature": 0.0,
}
wf = AutoGenWorkflows()
@wf.register(name="simple_learning", description="Student and teacher learning chat")
def simple_workflow(
wf: Workflows, ui: UI, initial_message: str, session_id: str
) -> str:
student_agent = ConversableAgent(
name="Student_Agent",
system_message="You are a student willing to learn.",
llm_config=llm_config,
)
teacher_agent = ConversableAgent(
name="Teacher_Agent",
system_message="You are a math teacher.",
llm_config=llm_config,
)
chat_result = student_agent.initiate_chat(
teacher_agent,
message=initial_message,
summary_method="reflection_with_llm",
max_turns=3,
)
return chat_result.summary
This code snippet sets up a simple learning chat between a student and a teacher. You define the agents and how they should interact, specifying how the conversation should be summarized.
Define FastAgency Application
Next, define your FastAgency application. This ties together your workflow and the interface you chose:
app = FastAgency(wf=wf, ui=MesopUI(), title="Learning Chat")
Run Application
Once everything is set up, you can run your FastAgency application using the following command:
fastagency run
However, the preferred way of running Mesop application is a Python WSGI HTTP Server such as Gunicorn. First,
you need to install it using package manager such as pip
:
pip install gunicorn
and then you can run it with:
gunicorn main:app
Output
[2024-10-01 16:18:59 +0000] [20390] [INFO] Starting gunicorn 23.0.0
[2024-10-01 16:18:59 +0000] [20390] [INFO] Listening at: http://127.0.0.1:8000 (20390)
[2024-10-01 16:18:59 +0000] [20390] [INFO] Using worker: sync
[2024-10-01 16:18:59 +0000] [20391] [INFO] Booting worker with pid: 20391
Future Plans
We are actively working on expanding FastAgency’s capabilities. In addition to supporting AutoGen, we plan to integrate support for other frameworks, such as CrewAI, to provide more flexibility and options for building applications. This will allow you to define workflows using a variety of frameworks and leverage their unique features and functionalities.
Documentation
You can find detailed documentation on the following link: fastagency.ai/latest.
Stay in touch
Please show your support and stay in touch by:
-
giving our GitHub repository a star, and
-
joining our Discord server
Your support helps us to stay in touch with you and encourages us to continue developing and improving the framework. Thank you for your support!
Contributors
Thanks to all of these amazing people who made the project better!
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
File details
Details for the file fastagency-0.3.0.dev2.tar.gz
.
File metadata
- Download URL: fastagency-0.3.0.dev2.tar.gz
- Upload date:
- Size: 87.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cbbba0c9e5f075972f0ef4f3a5334951bd857ea229a343d3b5dae3c3d668b2d |
|
MD5 | 66e73a1d7c39b1ec8e49d6f4e1438728 |
|
BLAKE2b-256 | 06edf9a436795f2adafdda3755e7145e27065bb23f14c217950f3b257f810c28 |
File details
Details for the file fastagency-0.3.0.dev2-py3-none-any.whl
.
File metadata
- Download URL: fastagency-0.3.0.dev2-py3-none-any.whl
- Upload date:
- Size: 68.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f294f646676123675d6305833527bf1741ac665d387a3a975bb21dcfebf0fad |
|
MD5 | a5fdfd82f4f354276142a08a0dad2255 |
|
BLAKE2b-256 | 54b1c840684871046cf6b6cd9ae134fad4e439ff332e34b5920595f6be9d448c |