Skip to content

Commit 81351ce

Browse files
committed
fix format issue
1 parent fee3195 commit 81351ce

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ from autogen import AssistantAgent, UserProxyAgent, config_list_from_json
8989
# See https://microsoft.github.io/autogen/docs/FAQ#set-your-api-endpoints
9090
# and OAI_CONFIG_LIST_sample
9191
config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST")
92-
# You can also set config_list directly as a list, for example, config_list = [{'model': 'gpt-4', 'api_key': '<your OpenAI API key here>'},]
92+
# You can also set config_list directly as a list, for example, config_list = [{'model': 'gpt-4', 'api_key': '<your OpenAI API key here>'},]
9393
assistant = AssistantAgent("assistant", llm_config={"config_list": config_list})
9494
user_proxy = UserProxyAgent("user_proxy", code_execution_config={"work_dir": "coding"})
9595
user_proxy.initiate_chat(assistant, message="Plot a chart of NVDA and TESLA stock price change YTD.")

website/docs/Installation.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ conda install pyautogen -c conda-forge
1414
``` -->
1515

1616
### Optional Dependencies
17-
1. For the best user experience and seamless code execution, we highly recommend using Docker with AutoGen.
18-
2. Docker is a containerization platform that simplifies the setup and execution of your code.
19-
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.
17+
* docker
2018

21-
To use docker for code execution, you also need to install the python package `docker`:
19+
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.
20+
21+
When running AutoGen out of a docker container, to use docker for code execution, you also need to install the python package `docker`:
2222
```bash
2323
pip install docker
2424
```

0 commit comments

Comments
 (0)