From e7230181390486ac14bd417a82ed7b6105c39c20 Mon Sep 17 00:00:00 2001 From: AG2AI-Admin Date: Fri, 18 Jul 2025 15:07:26 -0400 Subject: [PATCH] Migrate from pyautogen to ag2 library --- website/blog/2024-08-29-autogen-pyfunc/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/blog/2024-08-29-autogen-pyfunc/index.md b/website/blog/2024-08-29-autogen-pyfunc/index.md index 715cdf1d50..040eed6f9f 100644 --- a/website/blog/2024-08-29-autogen-pyfunc/index.md +++ b/website/blog/2024-08-29-autogen-pyfunc/index.md @@ -21,12 +21,12 @@ AutoGen is an open-source programming framework designed for building agent-base ## Setup -First, let's install the required dependencies. Note that pyautogen requires `python>=3.9`. +First, let's install the required dependencies. Note that ag2 requires `python>=3.9`. ### Environment Setup ```shell -%pip install pyautogen mlflow -U -q +%pip install ag2 mlflow -U -q ``` We must also get API credentials to use an LLM. For this tutorial, we'll be using OpenAI. Note that a great way to securely pass tokens to your interactive python environment is via the [getpass](https://docs.python.org/3/library/getpass.html) package.