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
4 changes: 2 additions & 2 deletions website/blog/2024-08-29-autogen-pyfunc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down