Skip to content

Commit f10e5cf

Browse files
authored
Merge pull request microsoft#34 from autogen-ai/move
moved the package in notebooks from pyautogen to autogen
2 parents c1ee997 + 066997d commit f10e5cf

32 files changed

+55
-55
lines changed

notebook/JSON_mode_example.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"JSON mode is a feature of OpenAI API, however strong models (such as Claude 3 Opus), can generate appropriate json as well.\n",
3030
"AutoGen requires `Python>=3.8`. To run this notebook example, please install:\n",
3131
"```bash\n",
32-
"pip install pyautogen\n",
32+
"pip install autogen\n",
3333
"```"
3434
]
3535
},
@@ -40,7 +40,7 @@
4040
"outputs": [],
4141
"source": [
4242
"%%capture --no-stderr\n",
43-
"# %pip install \"pyautogen>=0.2.3\"\n",
43+
"# %pip install \"autogen>=0.3.0\"\n",
4444
"\n",
4545
"# In Your OAI_CONFIG_LIST file, you must have two configs,\n",
4646
"# one with: \"response_format\": { \"type\": \"text\" }\n",

notebook/agentchat_RetrieveChat.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2929
"\n",
3030
"```bash\n",
31-
"pip install pyautogen[retrievechat] flaml[automl]\n",
31+
"pip install autogen[retrievechat] flaml[automl]\n",
3232
"```\n",
3333
"\n",
3434
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_RetrieveChat_mongodb.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2323
"\n",
2424
"```bash\n",
25-
"pip install pyautogen[retrievechat-mongodb] flaml[automl]\n",
25+
"pip install autogen[retrievechat-mongodb] flaml[automl]\n",
2626
"```\n",
2727
"\n",
2828
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_RetrieveChat_pgvector.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2525
"\n",
2626
"```bash\n",
27-
"pip install pyautogen[retrievechat-pgvector] flaml[automl]\n",
27+
"pip install autogen[retrievechat-pgvector] flaml[automl]\n",
2828
"```\n",
2929
"\n",
3030
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_RetrieveChat_qdrant.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2222
"\n",
2323
"```bash\n",
24-
"pip install \"pyautogen[retrievechat-qdrant]\" \"flaml[automl]\"\n",
24+
"pip install \"autogen[retrievechat-qdrant]\" \"flaml[automl]\"\n",
2525
"```\n",
2626
"\n",
2727
"For more information, please refer to the [installation guide](/docs/installation/).\n",
@@ -43,7 +43,7 @@
4343
}
4444
],
4545
"source": [
46-
"%pip install \"pyautogen[retrievechat-qdrant]\" \"flaml[automl]\" -q"
46+
"%pip install \"autogen[retrievechat-qdrant]\" \"flaml[automl]\" -q"
4747
]
4848
},
4949
{

notebook/agentchat_lmm_llava.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"source": [
2727
"### Before everything starts, install AutoGen with the `lmm` option\n",
2828
"```bash\n",
29-
"pip install \"pyautogen[lmm]>=0.2.3\"\n",
29+
"pip install \"autogen[lmm]>=0.3.0\"\n",
3030
"```"
3131
]
3232
},

notebook/agentchat_nested_chats_chess.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"source": [
4040
"## Installation\n",
4141
"\n",
42-
"First you need to install the `pyautogen` and `chess` packages to use AutoGen."
42+
"First you need to install the `autogen` and `chess` packages to use AutoGen."
4343
]
4444
},
4545
{
@@ -48,7 +48,7 @@
4848
"metadata": {},
4949
"outputs": [],
5050
"source": [
51-
"! pip install -qqq pyautogen chess"
51+
"! pip install -qqq autogen chess"
5252
]
5353
},
5454
{

notebook/agentchat_nested_sequential_chats.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"\n",
1616
"\\:\\:\\:info Requirements\n",
1717
"\n",
18-
"Install `pyautogen`:\n",
18+
"Install `autogen`:\n",
1919
"```bash\n",
20-
"pip install pyautogen\n",
20+
"pip install autogen\n",
2121
"```\n",
2222
"\n",
2323
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_oai_assistant_groupchat.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"AutoGen requires `Python>=3.8`. To run this notebook example, please install:\n",
1717
"````{=mdx}\n",
1818
":::info Requirements\n",
19-
"Install `pyautogen`:\n",
19+
"Install `autogen`:\n",
2020
"```bash\n",
21-
"pip install pyautogen\n",
21+
"pip install autogen\n",
2222
"```\n",
2323
"\n",
2424
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_oai_code_interpreter.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"AutoGen requires `Python>=3.8`. To run this notebook example, please install:\n",
1313
"````{=mdx}\n",
1414
":::info Requirements\n",
15-
"Install `pyautogen`:\n",
15+
"Install `autogen`:\n",
1616
"```bash\n",
17-
"pip install pyautogen\n",
17+
"pip install autogen\n",
1818
"```\n",
1919
"\n",
2020
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_planning.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"\n",
1919
"## Requirements\n",
2020
"\n",
21-
"AutoGen requires `Python>=3.8`. To run this notebook example, please install pyautogen and docker:\n",
21+
"AutoGen requires `Python>=3.8`. To run this notebook example, please install autogen and docker:\n",
2222
"```bash\n",
23-
"pip install pyautogen docker\n",
23+
"pip install autogen docker\n",
2424
"```"
2525
]
2626
},
@@ -37,7 +37,7 @@
3737
},
3838
"outputs": [],
3939
"source": [
40-
"# %pip install \"pyautogen>=0.2.3\" docker"
40+
"# %pip install \"autogen\" docker"
4141
]
4242
},
4343
{

notebook/agentchat_society_of_mind.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"\n",
1818
"````{=mdx}\n",
1919
":::info Requirements\n",
20-
"Install `pyautogen`:\n",
20+
"Install `autogen`:\n",
2121
"```bash\n",
22-
"pip install pyautogen\n",
22+
"pip install autogen\n",
2323
"```\n",
2424
"\n",
2525
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_stream.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"\n",
2121
"AutoGen requires `Python>=3.8`. To run this notebook example, please install:\n",
2222
"```bash\n",
23-
"pip install pyautogen\n",
23+
"pip install autogen\n",
2424
"```"
2525
]
2626
},
@@ -37,7 +37,7 @@
3737
},
3838
"outputs": [],
3939
"source": [
40-
"# %pip install \"pyautogen>=0.2.3\""
40+
"# %pip install \"autogen\""
4141
]
4242
},
4343
{

notebook/agentchat_surfer.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"\n",
1616
"AutoGen requires `Python>=3.8`. To run this notebook example, please install AutoGen with the optional `websurfer` dependencies:\n",
1717
"```bash\n",
18-
"pip install \"pyautogen[websurfer]\"\n",
18+
"pip install \"autogen[websurfer]\"\n",
1919
"```"
2020
]
2121
},
@@ -25,7 +25,7 @@
2525
"metadata": {},
2626
"outputs": [],
2727
"source": [
28-
"%pip install --quiet \"pyautogen[websurfer]\""
28+
"%pip install --quiet \"autogen[websurfer]\""
2929
]
3030
},
3131
{

notebook/agentchat_teachability.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2323
"\n",
2424
"```bash\n",
25-
"pip install pyautogen[teachable]\n",
25+
"pip install autogen[teachable]\n",
2626
"```\n",
2727
"\n",
2828
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_teachable_oai_assistants.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"\n",
2121
"AutoGen requires `Python>=3.8`. To run this notebook example, please install the [teachable] option.\n",
2222
"```bash\n",
23-
"pip install \"pyautogen[teachable]\"\n",
23+
"pip install \"autogen[teachable]\"\n",
2424
"```"
2525
]
2626
},
@@ -31,7 +31,7 @@
3131
"outputs": [],
3232
"source": [
3333
"%%capture --no-stderr\n",
34-
"# %pip install \"pyautogen[teachable]\""
34+
"# %pip install \"autogen[teachable]\""
3535
]
3636
},
3737
{

notebook/agentchat_teaching.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"\n",
1919
"````{=mdx}\n",
2020
":::info Requirements\n",
21-
"Install `pyautogen`:\n",
21+
"Install `autogen`:\n",
2222
"```bash\n",
23-
"pip install pyautogen\n",
23+
"pip install autogen\n",
2424
"```\n",
2525
"\n",
2626
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_transform_messages.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"\n",
1313
"````{=mdx}\n",
1414
":::info Requirements\n",
15-
"Install `pyautogen`:\n",
15+
"Install `autogen`:\n",
1616
"```bash\n",
17-
"pip install pyautogen\n",
17+
"pip install autogen\n",
1818
"```\n",
1919
"\n",
2020
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_two_users.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"\n",
2020
"AutoGen requires `Python>=3.8`. To run this notebook example, please install:\n",
2121
"```bash\n",
22-
"pip install pyautogen\n",
22+
"pip install autogen\n",
2323
"```"
2424
]
2525
},
@@ -36,7 +36,7 @@
3636
},
3737
"outputs": [],
3838
"source": [
39-
"# %pip install \"pyautogen>=0.2.3\""
39+
"# %pip install \"autogen\""
4040
]
4141
},
4242
{

notebook/agentchat_video_transcript_translate_with_whisper.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2424
"\n",
2525
"```bash\n",
26-
"pip install pyautogen openai openai-whisper\n",
26+
"pip install autogen openai openai-whisper\n",
2727
"```\n",
2828
"\n",
2929
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_web_info.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"\n",
2323
"## Requirements\n",
2424
"\n",
25-
"AutoGen requires `Python>=3.8`. To run this notebook example, please install pyautogen and docker:\n",
25+
"AutoGen requires `Python>=3.8`. To run this notebook example, please install autogen and docker:\n",
2626
"```bash\n",
27-
"pip install pyautogen docker\n",
27+
"pip install autogen docker\n",
2828
"```"
2929
]
3030
},
@@ -41,7 +41,7 @@
4141
},
4242
"outputs": [],
4343
"source": [
44-
"# %pip install \"pyautogen>=0.2.3\" docker"
44+
"# %pip install \"autogen\" docker"
4545
]
4646
},
4747
{

notebook/agentchat_webscraping_with_apify.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"metadata": {},
2424
"outputs": [],
2525
"source": [
26-
"! pip install -qqq pyautogen apify-client"
26+
"! pip install -qqq autogen apify-client"
2727
]
2828
},
2929
{

notebook/agentchat_websockets.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
2727
"\n",
2828
"```bash\n",
29-
"pip install pyautogen[websockets] fastapi uvicorn\n",
29+
"pip install autogen[websockets] fastapi uvicorn\n",
3030
"```\n",
3131
"\n",
3232
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/agentchat_with_memory.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"source": [
1818
"This notebook demonstrates an intelligent customer service chatbot system that combines:\n",
1919
"\n",
20-
"- PyAutoGen for conversational agents\n",
20+
"- AutoGen for conversational agents\n",
2121
"- Mem0 for memory management\n",
2222
"\n",
2323
"[Mem0](https://www.mem0.ai/) provides a smart, self-improving memory layer for Large Language Models (LLMs), enabling developers to create personalized AI experiences that evolve with each user interaction. Refer [docs](https://docs.mem0.ai/overview) for more information.\n",
@@ -38,7 +38,7 @@
3838
"Some extra dependencies are needed for this notebook, which can be installed via pip:\n",
3939
"\n",
4040
"```bash\n",
41-
"pip install pyautogen mem0ai\n",
41+
"pip install autogen mem0ai\n",
4242
"```\n",
4343
"\n",
4444
"For more information, please refer to the [installation guide](/docs/installation/).\n",

notebook/async_human_input.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"outputs": [],
2121
"source": [
22-
"%pip install \"pyautogen>=0.2.3\" chromadb sentence_transformers tiktoken pypdf nest-asyncio"
22+
"%pip install \"autogen\" chromadb sentence_transformers tiktoken pypdf nest-asyncio"
2323
]
2424
},
2525
{

notebook/autobuild_agent_library.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"source": [
2525
"## Requirement\n",
2626
"\n",
27-
"AutoBuild require `pyautogen[autobuild]`, which can be installed by the following command:"
27+
"AutoBuild require `autogen[autobuild]`, which can be installed by the following command:"
2828
]
2929
},
3030
{
@@ -36,7 +36,7 @@
3636
},
3737
"outputs": [],
3838
"source": [
39-
"%pip install pyautogen[autobuild]"
39+
"%pip install autogen[autobuild]"
4040
]
4141
},
4242
{

notebook/autobuild_basic.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"source": [
2727
"## Requirement\n",
2828
"\n",
29-
"AutoBuild require `pyautogen[autobuild]`, which can be installed by the following command:"
29+
"AutoBuild require `autogen[autobuild]`, which can be installed by the following command:"
3030
]
3131
},
3232
{
@@ -38,7 +38,7 @@
3838
},
3939
"outputs": [],
4040
"source": [
41-
"%pip install pyautogen[autobuild]"
41+
"%pip install autogen[autobuild]"
4242
]
4343
},
4444
{

notebook/autogen_uniformed_api_calling.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"By default, AutoGen is installed with OpenAI support.\n",
3636
" \n",
3737
"```bash\n",
38-
"pip install pyautogen[gemini,anthropic,mistral,together]\n",
38+
"pip install autogen[gemini,anthropic,mistral,together]\n",
3939
"```\n",
4040
"\n",
4141
"\n",

0 commit comments

Comments
 (0)