Replace single quotes with double quotes (#4760)

* Replace single quotes with double quotes

* Fix version

* formatting
This commit is contained in:
Jack Gerrits
2024-12-19 14:21:51 -05:00
committed by GitHub
parent fb681af275
commit 453fe0cafd
12 changed files with 19 additions and 19 deletions

View File

@@ -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"
```
+++

View File

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

View File

@@ -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\""
]
},
{

View File

@@ -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\""
]
},
{

View File

@@ -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}

View File

@@ -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: