mirror of https://github.com/microsoft/autogen.git
Update package versions
This commit is contained in:
parent
6cfa29b018
commit
af2b5faeef
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "autogen-agentchat"
|
||||
version = "0.3.0dev0"
|
||||
version = "0.4.0dev0"
|
||||
description = "AutoGen agent and group chat library"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
@ -13,8 +13,8 @@ classifiers = [
|
|||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
dependencies = ["autogen-core",
|
||||
|
||||
dependencies = [
|
||||
"autogen-core==0.4.0dev0",
|
||||
]
|
||||
|
||||
[tool.uv]
|
||||
|
|
|
@ -46,11 +46,9 @@ Task driven, high level APIs for building multi-agent systems. Including group c
|
|||
Built with <i>core</i>.
|
||||
<p>
|
||||
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre id="codecell1" tabindex="-1">
|
||||
<a href="packages/index.html#pkg-info-autogen-agentchat">Installation instructions</a>
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
```sh
|
||||
pip install autogen-agentchat==0.4.0dev0
|
||||
```
|
||||
|
||||
<button onclick="location.href='agentchat-user-guide/guides/quickstart.html'" type="button" class="btn btn-primary">Get Started</button>
|
||||
<button onclick="location.href='reference/python/autogen_agentchat/autogen_agentchat.html'" type="button" class="btn btn-outline-secondary">API Reference</button>
|
||||
|
@ -71,11 +69,9 @@ Built with <i>core</i>.
|
|||
Primitive building blocks for creating asynchronous, event driven multi-agent systems.
|
||||
<p>
|
||||
|
||||
<div class="highlight-sh notranslate"><div class="highlight"><pre id="codecell1" tabindex="-1">
|
||||
<a href="packages/index.html#pkg-info-autogen-core">Installation instructions</a>
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
```sh
|
||||
pip install autogen-core==0.4.0dev0
|
||||
```
|
||||
|
||||
<button onclick="location.href='core-user-guide/guides/quickstart.html'" type="button" class="btn btn-primary">Get Started</button>
|
||||
<button onclick="location.href='reference/python/autogen_core/autogen_core.html'" type="button" class="btn btn-outline-secondary">API Reference</button>
|
||||
|
|
|
@ -28,9 +28,7 @@ myst:
|
|||
Library that is at a similar level of abstraction as AutoGen 0.2, including default agents and group chat.
|
||||
|
||||
```sh
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-core
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-ext
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-agentchat
|
||||
pip install autogen-agentchat==0.4.0dev0
|
||||
```
|
||||
|
||||
```{note}
|
||||
|
@ -48,7 +46,7 @@ This package is a work in progress, it will be available on PyPI when it is read
|
|||
Implements the core functionality of the AutoGen framework, providing basic building blocks for creating multi-agent systems.
|
||||
|
||||
```sh
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-core
|
||||
pip install autogen-core==0.4.0dev0
|
||||
```
|
||||
|
||||
```{note}
|
||||
|
@ -65,8 +63,7 @@ This package is a work in progress, it will be available on PyPI when it is read
|
|||
Implementations of core components that interface with external services, or use extra dependencies. For example, Docker based code execution.
|
||||
|
||||
```sh
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-core
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-ext
|
||||
pip install autogen-ext==0.4.0dev0
|
||||
```
|
||||
|
||||
```{note}
|
||||
|
@ -84,8 +81,7 @@ This package is a work in progress, it will be available on PyPI when it is read
|
|||
A generalist multi-agent softbot utilizing five agents to tackle intricate tasks involving multi-step planning and real-world actions.
|
||||
|
||||
```sh
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-core
|
||||
pip install git+https://github.com/microsoft/autogen.git#subdirectory=python/packages/autogen-team-one
|
||||
pip install autogen-team-one==0.1.0dev0
|
||||
```
|
||||
|
||||
```{note}
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "autogen-core"
|
||||
version = "0.3.dev0"
|
||||
version = "0.4.0dev0"
|
||||
description = "Foundational interfaces and agent runtime implementation for AutoGen"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "autogen-ext"
|
||||
version = "0.3.0dev0"
|
||||
version = "0.4.0dev0"
|
||||
description = "AutoGen extensions library"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
|
@ -14,7 +14,7 @@ classifiers = [
|
|||
"Operating System :: OS Independent",
|
||||
]
|
||||
dependencies = [
|
||||
"autogen-core",
|
||||
"autogen-core==0.4.0dev0",
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "team-one"
|
||||
version = "0.0.1"
|
||||
version = "0.1.0dev0"
|
||||
description = ''
|
||||
readme = "readme.md"
|
||||
requires-python = ">=3.10"
|
||||
|
|
|
@ -335,7 +335,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "autogen-agentchat"
|
||||
version = "0.3.0.dev0"
|
||||
version = "0.4.0.dev0"
|
||||
source = { editable = "packages/autogen-agentchat" }
|
||||
dependencies = [
|
||||
{ name = "autogen-core" },
|
||||
|
@ -346,7 +346,7 @@ requires-dist = [{ name = "autogen-core", editable = "packages/autogen-core" }]
|
|||
|
||||
[[package]]
|
||||
name = "autogen-core"
|
||||
version = "0.3.dev0"
|
||||
version = "0.4.0.dev0"
|
||||
source = { editable = "packages/autogen-core" }
|
||||
dependencies = [
|
||||
{ name = "aiohttp" },
|
||||
|
@ -461,7 +461,7 @@ dev = [
|
|||
|
||||
[[package]]
|
||||
name = "autogen-ext"
|
||||
version = "0.3.0.dev0"
|
||||
version = "0.4.0.dev0"
|
||||
source = { editable = "packages/autogen-ext" }
|
||||
dependencies = [
|
||||
{ name = "autogen-core" },
|
||||
|
@ -4534,7 +4534,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "team-one"
|
||||
version = "0.0.1"
|
||||
version = "0.1.0.dev0"
|
||||
source = { editable = "packages/team-one" }
|
||||
dependencies = [
|
||||
{ name = "aiofiles" },
|
||||
|
|
Loading…
Reference in New Issue