Skip to content

Commit 248fcbd

Browse files
Merge pull request #391 from yiranwu0/main
Update AG2 reference
2 parents df35172 + 4751ac4 commit 248fcbd

17 files changed

Lines changed: 46 additions & 45 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
</div>
2222

23-
PraisonAI is a production-ready Multi-AI Agents framework with self-reflection, designed to create AI Agents to automate and solve problems ranging from simple tasks to complex challenges. By integrating PraisonAI Agents, AutoGen, and CrewAI into a low-code solution, it streamlines the building and management of multi-agent LLM systems, emphasising simplicity, customisation, and effective human-agent collaboration.
23+
PraisonAI is a production-ready Multi-AI Agents framework with self-reflection, designed to create AI Agents to automate and solve problems ranging from simple tasks to complex challenges. By integrating PraisonAI Agents, AG2 (Formerly AutoGen), and CrewAI into a low-code solution, it streamlines the building and management of multi-agent LLM systems, emphasising simplicity, customisation, and effective human-agent collaboration.
2424

2525
<div align="center">
2626
<a href="https://docs.praison.ai">
@@ -548,7 +548,7 @@ uv pip install -r pyproject.toml --extra "crewai,autogen"
548548

549549
## Other Features
550550

551-
- 🔄 Use CrewAI or AutoGen Framework
551+
- 🔄 Use CrewAI or AG2 (Formerly AutoGen) Framework
552552
- 💻 Chat with ENTIRE Codebase
553553
- 🎨 Interactive UIs
554554
- 📄 YAML-based Configuration

docs/api-reference/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Features:
3030
- Built-in tools
3131
- Structured workflows
3232

33-
### AutoGen Integration
33+
### AG2 (Formerly AutoGen) Integration
3434
Requires installation with:
3535
```bash
3636
pip install "praisonai[autogen]"

docs/api.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ from praisonai.auto import AutoGenerator
2323
### praisonai.agents_generator
2424
Framework-specific agent generation and orchestration:
2525
- CrewAI support (requires `praisonai[crewai]`)
26-
- AutoGen support (requires `praisonai[autogen]`)
26+
- AG2 (Formerly AutoGen) support (requires `praisonai[autogen]`)
2727

2828
```python
2929
from praisonai.agents_generator import AgentsGenerator
@@ -51,7 +51,7 @@ pip install praisonai
5151

5252
# Framework-specific installations
5353
pip install "praisonai[crewai]" # Install with CrewAI support
54-
pip install "praisonai[autogen]" # Install with AutoGen support
54+
pip install "praisonai[autogen]" # Install with AG2 support
5555
pip install "praisonai[crewai,autogen]" # Install both frameworks
5656

5757
# Additional features
@@ -71,9 +71,9 @@ When installing with `pip install "praisonai[crewai]"`, you get:
7171
- Task delegation capabilities
7272
- Sequential and parallel task execution
7373

74-
### AutoGen
74+
### AG2 (Formerly AutoGen)
7575
When installing with `pip install "praisonai[autogen]"`, you get:
76-
- AutoGen framework support
76+
- AG2 framework support
7777
- PraisonAI tools integration
7878
- Multi-agent conversation capabilities
7979
- Code execution environment

docs/developers/wrapper.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ def basic(): # Basic Mode
6565
def advanced(): # Advanced Mode with options
6666
praisonai = PraisonAI(
6767
agent_file="agents.yaml",
68-
framework="autogen",
68+
framework="autogen", # use AG2 framework (Formerly AutoGen)
6969
)
7070
praisonai.run()
7171

7272
def auto(): # Full Automatic Mode
7373
praisonai = PraisonAI(
7474
auto="Create a movie script about car in mars",
75-
framework="autogen"
75+
framework="autogen" # use AG2 framework
7676
)
7777
print(praisonai.framework)
7878
praisonai.run()

docs/framework/autogen.mdx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
---
2-
title: "AutoGen with PraisonAI"
3-
description: "Guide for using AutoGen framework with PraisonAI, including installation, setup, and multi-agent conversation capabilities"
2+
title: "AG2 with PraisonAI"
3+
description: "Guide for using AG2 framework with PraisonAI, including installation, setup, and multi-agent conversation capabilities"
44
icon: "robot"
55
---
66

7-
# AutoGen with PraisonAI
7+
# AG2 with PraisonAI
88

9-
Low-code solution to run AutoGen with integrated tools and features.
9+
Low-code solution to run AG2 with integrated tools and features.
10+
AutoGen is being evolved into AG2, check the new look [here](https://docs.ag2.ai/docs/Home/)
1011

1112
## Installation
1213

@@ -16,7 +17,7 @@ pip install "praisonai[autogen]"
1617
```
1718

1819
This installation includes:
19-
- AutoGen framework
20+
- AG2 framework
2021
- PraisonAI tools integration
2122
- Multi-agent conversation capabilities
2223
- Code execution environment
@@ -27,7 +28,7 @@ This installation includes:
2728
# Set your OpenAI API key
2829
export OPENAI_API_KEY=xxxxxxxxxx
2930

30-
# Initialize with AutoGen
31+
# Initialize with AG2
3132
praisonai --framework autogen --init "Create a Movie Script About Cat in Mars"
3233

3334
# Run the agents

docs/home.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Praison AI"
33
sidebarTitle: "Home"
4-
description: "Comprehensive guide to PraisonAI - an AI Agents Framework with Self Reflection, combining PraisonAI Agents, AutoGen, and CrewAI for building multi-agent LLM systems"
4+
description: "Comprehensive guide to PraisonAI - an AI Agents Framework with Self Reflection, combining PraisonAI Agents, AG2 (Formerly AutoGen), and CrewAI for building multi-agent LLM systems"
55
icon: "house"
66
openGraph:
77
url: "/"
@@ -46,7 +46,7 @@ seo:
4646
</div>
4747

4848
<Tip>
49-
PraisonAI combines PraisonAI Agents, AutoGen, and CrewAI into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration.
49+
PraisonAI combines PraisonAI Agents, AG2 (Formerly AutoGen), and CrewAI into a low-code solution for building and managing multi-agent LLM systems, focusing on simplicity, customization, and efficient human-agent collaboration.
5050
</Tip>
5151

5252
## Key Features
@@ -56,7 +56,7 @@ seo:
5656
Automated creation and management of AI agents with self-reflection capabilities
5757
</Card>
5858
<Card title="Framework Integration" icon="puzzle-piece">
59-
Seamless integration with CrewAI and AutoGen frameworks
59+
Seamless integration with CrewAI and AG2 frameworks
6060
</Card>
6161
<Card title="LLM Support" icon="brain">
6262
Support for 100+ Language Learning Models
@@ -301,8 +301,8 @@ seo:
301301
<Card title="CrewAI Framework" icon="users-gear" href="/framework/crewai">
302302
Build collaborative AI teams with CrewAI integration
303303
</Card>
304-
<Card title="AutoGen Framework" icon="robot" href="/framework/autogen">
305-
Create autonomous agent networks using AutoGen
304+
<Card title="AG2 Framework" icon="robot" href="/framework/autogen">
305+
Create autonomous agent networks using AG2 (Formerly AutoGen)
306306
</Card>
307307
<Card title="Multimodal Agents" icon="icons" href="/framework/multimodalagents">
308308
Work with agents that can process text, images, and other data types
@@ -316,7 +316,7 @@ seo:
316316

317317
<CardGroup cols={3}>
318318
<Card title="Multi Agents UI" icon="users" href="/ui/ui">
319-
Work with CrewAI or AutoGen multi-agent systems
319+
Work with CrewAI or AG2 multi-agent systems
320320
</Card>
321321
<Card title="Chat Interface" icon="comments" href="/ui/chat">
322322
Chat with 100+ LLMs using a single AI Agent

docs/index.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Praison AI"
33
sidebarTitle: "Home"
4-
description: "PraisonAI is a production-ready Multi-AI Agents framework with self-reflection, designed to create AI Agents to automate and solve problems ranging from simple tasks to complex challenges. By integrating PraisonAI Agents, AutoGen, and CrewAI into a low-code solution, it streamlines the building and management of multi-agent LLM systems, emphasising simplicity, customisation, and effective human-agent collaboration."
4+
description: "PraisonAI is a production-ready Multi-AI Agents framework with self-reflection, designed to create AI Agents to automate and solve problems ranging from simple tasks to complex challenges. By integrating PraisonAI Agents, AG2 (Formerly AutoGen), and CrewAI into a low-code solution, it streamlines the building and management of multi-agent LLM systems, emphasising simplicity, customisation, and effective human-agent collaboration."
55
icon: "house"
66
openGraph:
77
url: "/"
@@ -45,7 +45,7 @@ seo:
4545
Automated creation and management of AI agents with self-reflection capabilities
4646
</Card>
4747
<Card title="Framework Integration" icon="puzzle-piece">
48-
Seamless integration with CrewAI and AutoGen frameworks
48+
Seamless integration with CrewAI and AG2 frameworks
4949
</Card>
5050
<Card title="LLM Support" icon="brain">
5151
Support for 100+ Language Learning Models
@@ -711,8 +711,8 @@ flowchart LR
711711
<Card title="CrewAI Framework" icon="users-gear" href="/framework/crewai">
712712
Build collaborative AI teams with CrewAI integration
713713
</Card>
714-
<Card title="AutoGen Framework" icon="robot" href="/framework/autogen">
715-
Create autonomous agent networks using AutoGen
714+
<Card title="AG2 Framework" icon="robot" href="/framework/autogen">
715+
Create autonomous agent networks using AG2 (Formerly AutoGen)
716716
</Card>
717717
<Card title="Multimodal Agents" icon="icons" href="/framework/multimodalagents">
718718
Work with agents that can process text, images, and other data types
@@ -726,7 +726,7 @@ flowchart LR
726726

727727
<CardGroup cols={3}>
728728
<Card title="Multi Agents UI" icon="users" href="/ui/ui">
729-
Work with CrewAI or AutoGen multi-agent systems
729+
Work with CrewAI or AG2 multi-agent systems
730730
</Card>
731731
<Card title="Chat Interface" icon="comments" href="/ui/chat">
732732
Chat with 100+ LLMs using a single AI Agent

docs/nocode/auto.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: "Auto Generation Mode"
3-
description: "Guide to PraisonAI's automatic agent generation feature, supporting both CrewAI and AutoGen frameworks for automated task execution"
3+
description: "Guide to PraisonAI's automatic agent generation feature, supporting both CrewAI and AG2 frameworks for automated task execution"
44
icon: "robot"
55
---
66

7-
PraisonAI supports automatic agent generation with PraisonAI Agents, CrewAI and AutoGen frameworks.
7+
PraisonAI supports automatic agent generation with PraisonAI Agents, CrewAI and AG2 frameworks.
88

99
## Installation
1010

@@ -17,7 +17,7 @@ pip install praisonai
1717
# For CrewAI
1818
pip install "praisonai[crewai]"
1919

20-
# For AutoGen
20+
# For AG2 (Formerly AutoGen)
2121
pip install "praisonai[autogen]"
2222

2323
# For both frameworks
@@ -36,7 +36,7 @@ praisonai --auto "create a movie script about Dog in Moon"
3636
praisonai --framework crewai --auto "create a movie script about Dog in Moon"
3737
```
3838

39-
### With AutoGen
39+
### With AG2
4040
```bash
4141
praisonai --framework autogen --auto "create a movie script about Dog in Moon"
4242
```
@@ -49,7 +49,7 @@ praisonai --framework autogen --auto "create a movie script about Dog in Moon"
4949
- Built-in tools integration
5050
- Structured agent-task relationships
5151

52-
### AutoGen
52+
### AG2 (Formerly AutoGen)
5353
- Multi-agent conversation capabilities
5454
- Code execution environment
5555
- Built-in tools integration

docs/nocode/installation.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ Includes:
2828
- Task delegation capabilities
2929
- Sequential and parallel task execution
3030

31-
### AutoGen Support
31+
### AG2 Support
3232
```bash
3333
pip install "praisonai[autogen]"
3434
```
3535

3636
Includes:
37-
- AutoGen framework
37+
- AG2 framework
3838
- PraisonAI tools integration
3939
- Multi-agent conversation capabilities
4040
- Code execution environment

docs/nocode/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ icon: "hand-wave"
2121
Create and orchestrate sophisticated multi-agent systems with ease
2222
</Card>
2323
<Card title="Framework Integration" icon="puzzle-piece">
24-
Seamlessly integrates AutoGen and CrewAI capabilities
24+
Seamlessly integrates AG2 and CrewAI capabilities
2525
</Card>
2626
<Card title="Low-Code Design" icon="code">
2727
Build complex AI systems with minimal coding required

0 commit comments

Comments
 (0)