diff --git a/README.md b/README.md index 123925276179..41fdb6c4dde7 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ from autogen import AssistantAgent, UserProxyAgent, config_list_from_json # See https://microsoft.github.io/autogen/docs/FAQ#set-your-api-endpoints # and OAI_CONFIG_LIST_sample config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST") -# You can also set config_list directly as a list, for example, config_list = [{'model': 'gpt-4', 'api_key': ''},] +# You can also set config_list directly as a list, for example, config_list = [{'model': 'gpt-4', 'api_key': ''},] assistant = AssistantAgent("assistant", llm_config={"config_list": config_list}) user_proxy = UserProxyAgent("user_proxy", code_execution_config={"work_dir": "coding"}) user_proxy.initiate_chat(assistant, message="Plot a chart of NVDA and TESLA stock price change YTD.") diff --git a/autogen/version.py b/autogen/version.py index 569b1212f7ef..0c5c30071ab4 100644 --- a/autogen/version.py +++ b/autogen/version.py @@ -1 +1 @@ -__version__ = "0.1.10" +__version__ = "0.1.11" diff --git a/website/docs/Installation.md b/website/docs/Installation.md index cf1fc70c75e9..966ed40f1a9d 100644 --- a/website/docs/Installation.md +++ b/website/docs/Installation.md @@ -14,11 +14,11 @@ conda install pyautogen -c conda-forge ``` --> ### Optional Dependencies -1. For the best user experience and seamless code execution, we highly recommend using Docker with AutoGen. -2. Docker is a containerization platform that simplifies the setup and execution of your code. -3. If you're working in a GitHub Codespace environment, AutoGen make a easy development in environment with Docker container, which is convenient to use. +* docker - To use docker for code execution, you also need to install the python package `docker`: +For the best user experience and seamless code execution, we highly recommend using Docker with AutoGen. Docker is a containerization platform that simplifies the setup and execution of your code. Developing in a docker container, such as GitHub Codespace, also makes the development convenient. + +When running AutoGen out of a docker container, to use docker for code execution, you also need to install the python package `docker`: ```bash pip install docker ```