FAQ, highlight the correct package name is pyautogen (#1665)

* Update FAQ.md

* Update FAQ.md

---------

Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
This commit is contained in:
Maxim Saplin
2024-02-14 00:00:08 +03:00
committed by GitHub
parent 81fc749ead
commit 31a732ff46

View File

@@ -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).