From ccb840bfedcd1d9b3d05e64370b6a163cce45270 Mon Sep 17 00:00:00 2001 From: Maxim Saplin Date: Tue, 13 Feb 2024 17:22:43 +0300 Subject: [PATCH 1/2] Update FAQ.md --- website/docs/FAQ.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/website/docs/FAQ.md b/website/docs/FAQ.md index f4c0f2f81341..2510f4459583 100644 --- a/website/docs/FAQ.md +++ b/website/docs/FAQ.md @@ -1,5 +1,6 @@ # Frequently Asked Questions +- [Install the correct package - `pyautogen`](#install-the-correct-package---pyautogen) - [Set your API endpoints](#set-your-api-endpoints) - [Use the constructed configuration list in agents](#use-the-constructed-configuration-list-in-agents) - [Unexpected keyword argument 'base_url'](#unexpected-keyword-argument-base_url) @@ -19,6 +20,15 @@ - [When using autogen docker, is it always necessary to reinstall modules?](#when-using-autogen-docker-is-it-always-necessary-to-reinstall-modules) - [Agents are throwing due to docker not running, how can I resolve this?](#agents-are-throwing-due-to-docker-not-running-how-can-i-resolve-this) +## Install the correct package - `pyautogen` + +The name of Autogen package at PyPI is `pyautogen`: +``` +pip install pyautogen +``` + +Typical errors that you might face when using the wrong package are `AttributeError: module 'autogen' has no attribute 'Agent'`, `AttributeError: module 'autogen' has no attribute 'config_list_ from_json'` etc. + ## Set your API endpoints This documentation has been moved [here](/docs/llm_configuration). From 62d661472a0a6792c6b2a0532f5f44dc9a12914e Mon Sep 17 00:00:00 2001 From: Eric Zhu Date: Tue, 13 Feb 2024 12:56:52 -0800 Subject: [PATCH 2/2] Update FAQ.md --- website/docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/FAQ.md b/website/docs/FAQ.md index 2510f4459583..aa874c285368 100644 --- a/website/docs/FAQ.md +++ b/website/docs/FAQ.md @@ -27,7 +27,7 @@ The name of Autogen package at PyPI is `pyautogen`: pip install pyautogen ``` -Typical errors that you might face when using the wrong package are `AttributeError: module 'autogen' has no attribute 'Agent'`, `AttributeError: module 'autogen' has no attribute 'config_list_ from_json'` etc. +Typical errors that you might face when using the wrong package are `AttributeError: module 'autogen' has no attribute 'Agent'`, `AttributeError: module 'autogen' has no attribute 'config_list_from_json'` etc. ## Set your API endpoints