Skip to content

Commit 4751ac4

Browse files
committed
update reference
1 parent eaaeb6e commit 4751ac4

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

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/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

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

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

2323
# For both frameworks

docs/tools/custom.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ To run the PraisonAI tool, simply type the following command in your terminal:
7171
praisonai
7272
```
7373

74-
If you want to run the `autogen` framework, use:
74+
If you want to run the AG2 framework (Formerly AutoGen), use:
7575

7676
```bash
7777
praisonai --framework autogen

docs/ui/code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ PraisonAI Code helps you to interact with your whole codebase using the power of
2020

2121
| Interface | Description | URL |
2222
|---|---|---|
23-
| **UI** | Multi Agents such as CrewAI or AutoGen | [https://docs.praison.ai/ui/ui](https://docs.praison.ai/ui/ui) |
23+
| **UI** | Multi Agents such as CrewAI or AG2 | [https://docs.praison.ai/ui/ui](https://docs.praison.ai/ui/ui) |
2424
| **Chat** | Chat with 100+ LLMs, single AI Agent | [https://docs.praison.ai/ui/chat](https://docs.praison.ai/ui/chat) |
2525
| **Code** | Chat with entire Codebase, single AI Agent | [https://docs.praison.ai/ui/code](https://docs.praison.ai/ui/code) |
2626

setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ print_message() {
1212
print_usage() {
1313
echo "Usage: $0 [-u|--ui] [-c|--chat] [-d|--code] [-r|--realtime] [-a|--all] [--run] [--quick] [--model MODEL] [--base URL]"
1414
echo "Options:"
15-
echo " -u, --ui Install UI dependencies for Multi Agents (CrewAI/AutoGen)"
15+
echo " -u, --ui Install UI dependencies for Multi Agents (CrewAI/AG2)"
1616
echo " -c, --chat Install Chat interface for single AI Agent"
1717
echo " -d, --code Install Code interface for codebase interaction"
1818
echo " -r, --realtime Install Realtime voice interaction interface"
@@ -97,8 +97,8 @@ run_ui_interface() {
9797
if [ -z "$prompt" ]; then
9898
prompt="create a movie script about dog in moon"
9999
fi
100-
read -p "Use AutoGen framework? (y/N): " use_autogen
101-
if [[ $use_autogen =~ ^[Yy]$ ]]; then
100+
read -p "Use AG2 (Formerly AutoGen) framework? (y/N): " use_ag2
101+
if [[ $use_ag2 =~ ^[Yy]$ ]]; then
102102
praisonai --framework autogen --init "$prompt"
103103
else
104104
praisonai --init "$prompt"

0 commit comments

Comments
 (0)