mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-10 04:15:00 -05:00
Replace single quotes with double quotes (#4760)
* Replace single quotes with double quotes * Fix version * formatting
This commit is contained in:
@@ -58,7 +58,7 @@ AgentChat </div>
|
||||
High-level API that includes preset agents and teams for building multi-agent systems.
|
||||
|
||||
```sh
|
||||
pip install 'autogen-agentchat==0.4.0.dev11'
|
||||
pip install "autogen-agentchat==0.4.0.dev11"
|
||||
```
|
||||
|
||||
💡 *Start here if you are looking for an API similar to AutoGen 0.2.*
|
||||
@@ -99,7 +99,7 @@ Get Started
|
||||
Provides building blocks for creating asynchronous, event driven multi-agent systems.
|
||||
|
||||
```sh
|
||||
pip install 'autogen-core==0.4.0.dev11'
|
||||
pip install "autogen-core==0.4.0.dev11"
|
||||
```
|
||||
|
||||
+++
|
||||
@@ -121,7 +121,7 @@ Get Started
|
||||
Implementations of core components that interface with external services, or use extra dependencies. For example, Docker based code execution.
|
||||
|
||||
```sh
|
||||
pip install 'autogen-ext==0.4.0.dev11'
|
||||
pip install "autogen-ext==0.4.0.dev11"
|
||||
```
|
||||
|
||||
+++
|
||||
|
||||
@@ -61,7 +61,7 @@ Install the `autogen-agentchat` package using pip:
|
||||
|
||||
```bash
|
||||
|
||||
pip install 'autogen-agentchat==0.4.0.dev11'
|
||||
pip install "autogen-agentchat==0.4.0.dev11"
|
||||
```
|
||||
|
||||
```{note}
|
||||
@@ -74,7 +74,7 @@ To use the OpenAI and Azure OpenAI models, you need to install the following
|
||||
extensions:
|
||||
|
||||
```bash
|
||||
pip install 'autogen-ext[openai]==0.4.0.dev11'
|
||||
pip install "autogen-ext[openai]==0.4.0.dev11"
|
||||
```
|
||||
|
||||
## Install Docker for Code Execution
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"pip install 'autogen-agentchat==0.4.0.dev11' 'autogen-ext[openai]==0.4.0.dev11'"
|
||||
"pip install \"autogen-agentchat==0.4.0.dev11\" \"autogen-ext[openai]==0.4.0.dev11\""
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"pip install 'autogen-ext[openai]==0.4.0.dev11'"
|
||||
"pip install \"autogen-ext[openai]==0.4.0.dev11\""
|
||||
]
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@
|
||||
},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"pip install 'autogen-ext[openai,azure]==0.4.0.dev11'"
|
||||
"pip install \"autogen-ext[openai,azure]==0.4.0.dev11\""
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ Install the `autogen-core` package using pip:
|
||||
|
||||
```bash
|
||||
|
||||
pip install 'autogen-core==0.4.0.dev11'
|
||||
pip install "autogen-core==0.4.0.dev11"
|
||||
```
|
||||
|
||||
```{note}
|
||||
|
||||
@@ -11,7 +11,7 @@ First-part maintained extensions are available in the `autogen-ext` package.
|
||||
|
||||
|
||||
```sh
|
||||
pip install 'autogen-ext==0.4.0.dev11'
|
||||
pip install "autogen-ext==0.4.0.dev11"
|
||||
```
|
||||
|
||||
Extras:
|
||||
|
||||
Reference in New Issue
Block a user