📖 También disponible en Español
An advanced framework for building AI-powered content generation pipelines. This project uses a multi-agent system, powered by Microsoft Autogen, to autonomously write, critique, and review articles for quality, compliance, and SEO. Create smarter, better blogs—autonomously.
The Blog Agent Framework is a plug-and-play Python library that helps you generate high-quality blog posts using a team of AI agents. Built on top of Microsoft’s powerful Autogen system, this framework mimics a professional content team: a writer, a critic, and multiple expert reviewers work together to craft concise, SEO-optimized, story-driven articles, designed to engage readers and rank well in search engines. Applies best practices in digital marketing to improve the reach, structure, and impact of each post.
Whether you're a solo blogger, content marketer, or developer, you can use this library to automate content creation or integrate it into your own API.
🧩 Modular Agent Architecture
Includes specialized agents for:
- Writer – Crafts story-driven blog posts using simple, clear language
- Content Marketing Reviewer – Improves structure, flow, and engagement
- Clarity & Ethics Reviewer – Ensures content is easy to understand and free from misleading claims
- SEO Reviewer – Optimizes for discoverability on search engines like Google and AI tools
💬 Intelligent Agent Collaboration
Each agent plays a focused role in a structured review loop, and a meta-agent brings everything together into one polished result.
📦 Use As a Library or API
- Use the library directly in your Python projects
- Or build an API on top to serve real-time blog generation for your website or content service
✅ SEO-Friendly & Reader-Focused
Designed to help your content perform well on search engines and connect with real people—especially readers with a basic or general reading level.
The project is structured as a standard Python package, making it easy to install and use.
```
.
├── blog_agent_framework/ # The main library source code
│ ├── agents/ # Contains the logic for individual AI agents
│ ├── utils/ # Utility functions and helpers
│ ├── __init__.py # Exposes the main generation function
│ └── config.py # Handles model client configuration
│
├── examples/ # Self-contained examples for users
│ ├── .env.example # Template for environment variables
│ └── run_example.py # Main script to demonstrate library usage
│
├── .gitignore # Specifies which files Git should ignore
├── LICENSE # The open-source license for the project
├── pyproject.toml # The modern configuration file for the package
└── README.md # This file!
```
Install from PyPI:
pip install blog-agent-framework
Requires Python 3.11+
Install the Blog Agent Framework directly from GitHub using pip:
pip install git+https://github.com/edilma/AI-Agent-Orchestrator.git
Here's how to quickly get started with the built-in example.
-
Navigate into the examples directory:
cd examples
-
Create your own .env file by copying the template.
# On Windows copy .env.example .env # On macOS or Linux cp .env.example .env
-
Add your OpenAi credentials to the new .env file
OPENAI_API_KEY=your_openai_key_here OPENAI_PROJECT_ID=your_project_id_here
-
Run the example script:
python run_example.py
The Blog Agent Framework simulates a collaborative writing and editing process using a team of specialized AI agents. Each agent plays a unique role in refining the blog post.
-
Writer Agent
Creates an initial blog post based on a topic prompt. The post is designed to be simple, engaging, and story-driven. -
Critic Agent
Reviews the writer's draft and offers direct, actionable feedback. This agent evaluates story structure, clarity, tone, and flow—and helps polish the final version by incorporating all key reviewer suggestions. -
SEO Reviewer
Ensures the blog includes relevant keywords, strong headings, and other on-page SEO elements to improve visibility on AI and search engines like Google and attracts organic traffic. -
Content Marketing Reviewer
Analyzes structure, engagement, and presentation. Helps make sure the blog is clear, logically organized, and engaging for readers. -
Clarity and Ethics Reviewer
Checks that the writing is easy to understand for a general audience, free of confusing or problematic language, and appropriate for public consumption.
The agents communicate intelligently to revise and refine the blog post until it meets quality standards for readability, SEO, and flow.
This project is licensed under the MIT License.
You are free to use, modify, and distribute this software for personal or commercial use, with attribution.
Created with 💻 by Edilma Riano
Helping businesses and creators use AI to work smarter and scale faster.