Skip to content

Commit

Permalink
Replace single quotes with double quotes (#4760)
Browse files Browse the repository at this point in the history
* Replace single quotes with double quotes

* Fix version

* formatting
  • Loading branch information
jackgerrits authored Dec 19, 2024
1 parent fb681af commit 453fe0c
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ We look forward to your contributions!
First install the packages:

```bash
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"
```

The following code uses OpenAI's GPT-4o model and you need to provide your
Expand Down
6 changes: 3 additions & 3 deletions python/packages/autogen-core/docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down Expand Up @@ -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"
```

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

+++
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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\""
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"outputs": [],
"source": [
"pip install 'autogen-ext[openai]==0.4.0.dev11'"
"pip install \"autogen-ext[openai]==0.4.0.dev11\""
]
},
{
Expand Down Expand Up @@ -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\""
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
except ImportError as e:
raise ImportError(
"Dependencies for MagenticOneCoderAgent not found. "
"Please install autogen-ext with the 'magentic-one' extra: "
"pip install 'autogen-ext[magentic-one]'"
'Please install autogen-ext with the "magentic-one" extra: '
'pip install "autogen-ext[magentic-one]"'
) from e

__all__ = ["MagenticOneCoderAgent"]
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
except ImportError as e:
raise ImportError(
"Dependencies for OpenAIAssistantAgent not found. "
"Please install autogen-ext with the 'openai' extra: "
"pip install 'autogen-ext[openai]'"
'Please install autogen-ext with the "openai" extra: '
'pip install "autogen-ext[openai]"'
) from e

__all__ = ["OpenAIAssistantAgent"]
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ACADynamicSessionsCodeExecutor(CodeExecutor):
.. code-block:: bash
pip install 'autogen-ext[azure]==0.4.0.dev11'
pip install "autogen-ext[azure]==0.4.0.dev11"
.. caution::
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class DockerCommandLineCodeExecutor(CodeExecutor):
.. code-block:: bash
pip install 'autogen-ext[docker]==0.4.0.dev11'
pip install "autogen-ext[docker]==0.4.0.dev11"
The executor first saves each code block in a file in the working
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ class OpenAIChatCompletionClient(BaseOpenAIChatCompletionClient):
.. code-block:: bash
pip install 'autogen-ext[openai]==0.4.0.dev8'
pip install "autogen-ext[openai]==0.4.0.dev11"
The following code snippet shows how to use the client with an OpenAI model:
Expand Down Expand Up @@ -989,7 +989,7 @@ class AzureOpenAIChatCompletionClient(BaseOpenAIChatCompletionClient):
.. code-block:: bash
pip install 'autogen-ext[openai,azure]==0.4.0.dev8'
pip install "autogen-ext[openai,azure]==0.4.0.dev11"
To use the client, you need to provide your deployment id, Azure Cognitive Services endpoint,
api version, and model capabilities.
Expand Down

0 comments on commit 453fe0c

Please sign in to comment.