Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Autogen-cookbook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This cookbook demonstrates the usage of Microsoft's AutoGen framework for buildi

1. Install required dependencies:
```bash
pip install pyautogen pandas matplotlib jupyter
pip install ag2 pandas matplotlib jupyter
```
Comment on lines 24 to 26
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Verify that ag2 is the correct published package and migrate all remaining references

pip install ag2 … will break if the package on PyPI is named differently (e.g., ag2-ai, ag2ai, etc.).
Before merging, please confirm the exact package name and update:

  1. All notebooks / example scripts that still import pyautogen or autogen.
  2. The “Additional Resources” section, which still links to the original AutoGen docs.

🏁 Script executed:

#!/bin/bash
# Confirm that a package named "ag2" exists on PyPI and print its latest version.
curl -s https://pypi.org/pypi/ag2/json | jq '.info.version'

Length of output: 67


🏁 Script executed:

#!/bin/bash
# Search for remaining references to the old package names in code and notebooks
rg -n -e 'import pyautogen' -e 'from pyautogen' -e 'import autogen' -e 'from autogen'

Length of output: 223


🏁 Script executed:

#!/bin/bash
# Extract the “Additional Resources” section from the README
rg -n '# Additional Resources' -A10 Autogen-cookbook/README.md

Length of output: 229


Update remaining autogen references and docs links to ag2

We’ve confirmed that the ag2 package (v0.9.6) exists on PyPI. Please migrate all leftover references:

🤖 Prompt for AI Agents
In Autogen-cookbook/README.md around lines 24 to 26, update all remaining
references from "autogen" to "ag2". Specifically, replace the installation
command to use "ag2" instead of "autogen" if present, and in the Additional
Resources section, replace the AutoGen documentation and GitHub links with the
corresponding ag2 PyPI and GitHub URLs. Ensure all mentions and links reflect
the new package name and locations.


2. Launch Jupyter Notebook:
Expand Down