Update to dev13 (#4862)

This commit is contained in:
Jack Gerrits
2024-12-30 17:12:51 -05:00
committed by GitHub
parent cc06ec531e
commit fb1094d9c3
23 changed files with 46 additions and 40 deletions

View File

@@ -20,7 +20,7 @@
</li>
<li class="toctree-l1">
<a target="_blank" class="reference internal"
href="https://pypi.org/project/autogen-agentchat/0.4.0.dev12/">
href="https://pypi.org/project/autogen-agentchat/0.4.0.dev13/">
<i class="fa-brands fa-python"></i>
PyPi
<i class="fa-solid fa-arrow-up-right-from-square fa-2xs"></i>

View File

@@ -19,7 +19,7 @@
</a>
</li>
<li class="toctree-l1">
<a target="_blank" class="reference internal" href="https://pypi.org/project/autogen-core/0.4.0.dev12/">
<a target="_blank" class="reference internal" href="https://pypi.org/project/autogen-core/0.4.0.dev13/">
<i class="fa-brands fa-python"></i>
PyPi
<i class="fa-solid fa-arrow-up-right-from-square fa-2xs"></i>

View File

@@ -20,7 +20,7 @@
</a>
</li>
<li class="toctree-l1">
<a target="_blank" class="reference internal" href="https://pypi.org/project/autogen-ext/0.4.0.dev12/">
<a target="_blank" class="reference internal" href="https://pypi.org/project/autogen-ext/0.4.0.dev13/">
<i class="fa-brands fa-python"></i>
PyPi
<i class="fa-solid fa-arrow-up-right-from-square fa-2xs"></i>

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.dev12"
pip install "autogen-agentchat==0.4.0.dev13"
```
💡 *Start here if you are looking for an API similar to AutoGen 0.2.*
@@ -94,7 +94,7 @@ Get Started
Provides building blocks for creating asynchronous, event driven multi-agent systems.
```sh
pip install "autogen-core==0.4.0.dev12"
pip install "autogen-core==0.4.0.dev13"
```
+++
@@ -115,7 +115,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.dev12"
pip install "autogen-ext==0.4.0.dev13"
```
+++

View File

@@ -61,7 +61,7 @@ Install the `autogen-agentchat` package using pip:
```bash
pip install "autogen-agentchat==0.4.0.dev12"
pip install "autogen-agentchat==0.4.0.dev13"
```
```{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.dev12"
pip install "autogen-ext[openai]==0.4.0.dev13"
```
## Install Docker for Code Execution

View File

@@ -29,7 +29,7 @@
},
"outputs": [],
"source": [
"pip install \"autogen-agentchat==0.4.0.dev12\" \"autogen-ext[openai]==0.4.0.dev12\""
"pip install \"autogen-agentchat==0.4.0.dev13\" \"autogen-ext[openai]==0.4.0.dev13\""
]
},
{
@@ -157,7 +157,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.7"
"version": "3.12.5"
}
},
"nbformat": 4,

View File

@@ -28,7 +28,7 @@
},
"outputs": [],
"source": [
"pip install \"autogen-ext[openai]==0.4.0.dev12\""
"pip install \"autogen-ext[openai]==0.4.0.dev13\""
]
},
{
@@ -108,7 +108,7 @@
},
"outputs": [],
"source": [
"pip install \"autogen-ext[openai,azure]==0.4.0.dev12\""
"pip install \"autogen-ext[openai,azure]==0.4.0.dev13\""
]
},
{

View File

@@ -24,7 +24,7 @@
"````{note}\n",
"The distributed agent runtime requires extra dependencies, install them using:\n",
"```bash\n",
"pip install \"autogen-ext[grpc]==0.4.0.dev12\"\n",
"pip install \"autogen-ext[grpc]==0.4.0.dev13\"\n",
"```\n",
"````\n",
"\n",

View File

@@ -6,7 +6,7 @@ Install the `autogen-core` package using pip:
```bash
pip install "autogen-core==0.4.0.dev12"
pip install "autogen-core==0.4.0.dev13"
```
```{note}

View File

@@ -10,7 +10,7 @@ myst:
First-part maintained extensions are available in the `autogen-ext` package.
```sh
pip install "autogen-ext==0.4.0.dev12"
pip install "autogen-ext==0.4.0.dev13"
```
Extras:

View File

@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "autogen-core"
version = "0.4.0.dev12"
version = "0.4.0.dev13"
license = {file = "LICENSE-CODE"}
description = "Foundational interfaces and agent runtime implementation for AutoGen"
readme = "README.md"
@@ -72,7 +72,7 @@ dev = [
"autodoc_pydantic~=2.2",
"pygments",
"autogen_ext==0.4.0.dev12",
"autogen_ext==0.4.0.dev13",
# Documentation tooling
"sphinx-autobuild",