Skip to content

Commit 8707729

Browse files
authoredDec 6, 2024
dev9 (#4585)
* dev9
1 parent afaf2c1 commit 8707729

File tree

19 files changed

+595
-589
lines changed

19 files changed

+595
-589
lines changed
 

‎.github/workflows/docs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
{ ref: "v0.4.0.dev6", dest-dir: "0.4.0.dev6" },
4242
{ ref: "v0.4.0.dev7", dest-dir: "0.4.0.dev7" },
4343
{ ref: "v0.4.0.dev8", dest-dir: "0.4.0.dev8" },
44+
{ ref: "v0.4.0.dev9", dest-dir: "0.4.0.dev9" },
4445
]
4546
steps:
4647
- name: Checkout

‎CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ We will update verion numbers according to the following rules:
4949

5050
1. Create a PR that updates the version numbers across the codebase ([example](https://github.com/microsoft/autogen/pull/4359))
5151
2. The docs CI will fail for the PR, but this is expected and will be resolved in the next step
52-
2. After merging the PR, create and push a tag that corresponds to the new verion. For example, for `0.4.0.dev8`:
53-
- `git tag 0.4.0.dev8 && git push origin 0.4.0.dev8`
52+
2. After merging the PR, create and push a tag that corresponds to the new verion. For example, for `0.4.0.dev9`:
53+
- `git tag 0.4.0.dev9 && git push origin 0.4.0.dev9`
5454
3. Restart the docs CI by finding the failed [job corresponding to the `push` event](https://github.com/microsoft/autogen/actions/workflows/docs.yml) and restarting all jobs
5555
4. Run [this](https://github.com/microsoft/autogen/actions/workflows/single-python-package.yml) workflow for each of the packages that need to be released and get an approval for the release for it to run
5656

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[![Twitter](https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40pyautogen)](https://twitter.com/pyautogen) [![LinkedIn](https://img.shields.io/badge/LinkedIn-Company?style=flat&logo=linkedin&logoColor=white)](https://www.linkedin.com/company/105812540)
77
[![GitHub Discussions](https://img.shields.io/badge/Discussions-Q%26A-green?logo=github)](https://github.com/microsoft/autogen/discussions) [![0.2 Docs](https://img.shields.io/badge/Docs-0.2-blue)](https://microsoft.github.io/autogen/0.2/) [![0.4 Docs](https://img.shields.io/badge/Docs-0.4-blue)](https://microsoft.github.io/autogen/dev/)
8-
[![PyPi autogen-core](https://img.shields.io/badge/PyPi-autogen--core-blue?logo=pypi)](https://pypi.org/project/autogen-core/0.4.0.dev8/) [![PyPi autogen-agentchat](https://img.shields.io/badge/PyPi-autogen--agentchat-blue?logo=pypi)](https://pypi.org/project/autogen-agentchat/0.4.0.dev8/) [![PyPi autogen-ext](https://img.shields.io/badge/PyPi-autogen--ext-blue?logo=pypi)](https://pypi.org/project/autogen-ext/0.4.0.dev8/)
8+
[![PyPi autogen-core](https://img.shields.io/badge/PyPi-autogen--core-blue?logo=pypi)](https://pypi.org/project/autogen-core/0.4.0.dev9/) [![PyPi autogen-agentchat](https://img.shields.io/badge/PyPi-autogen--agentchat-blue?logo=pypi)](https://pypi.org/project/autogen-agentchat/0.4.0.dev9/) [![PyPi autogen-ext](https://img.shields.io/badge/PyPi-autogen--ext-blue?logo=pypi)](https://pypi.org/project/autogen-ext/0.4.0.dev9/)
99

1010
</div>
1111

@@ -105,7 +105,7 @@ We look forward to your contributions!
105105
First install the packages:
106106

107107
```bash
108-
pip install 'autogen-agentchat==0.4.0.dev8' 'autogen-ext[openai]==0.4.0.dev8'
108+
pip install 'autogen-agentchat==0.4.0.dev9' 'autogen-ext[openai]==0.4.0.dev9'
109109
```
110110

111111
The following code uses OpenAI's GPT-4o model and you need to provide your

‎docs/switcher.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@
5151
{
5252
"name": "0.4.0.dev8",
5353
"version": "0.4.0.dev8",
54-
"url": "/autogen/0.4.0.dev8/",
54+
"url": "/autogen/0.4.0.dev8/"
55+
},
56+
{
57+
"name": "0.4.0.dev9",
58+
"version": "0.4.0.dev9",
59+
"url": "/autogen/0.4.0.dev9/",
5560
"preferred": true
5661
}
5762
]

‎python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# AutoGen Python packages
22

33
[![0.4 Docs](https://img.shields.io/badge/Docs-0.4-blue)](https://microsoft.github.io/autogen/dev/)
4-
[![PyPi autogen-core](https://img.shields.io/badge/PyPi-autogen--core-blue?logo=pypi)](https://pypi.org/project/autogen-core/0.4.0.dev8/) [![PyPi autogen-agentchat](https://img.shields.io/badge/PyPi-autogen--agentchat-blue?logo=pypi)](https://pypi.org/project/autogen-agentchat/0.4.0.dev8/) [![PyPi autogen-ext](https://img.shields.io/badge/PyPi-autogen--ext-blue?logo=pypi)](https://pypi.org/project/autogen-ext/0.4.0.dev8/)
4+
[![PyPi autogen-core](https://img.shields.io/badge/PyPi-autogen--core-blue?logo=pypi)](https://pypi.org/project/autogen-core/0.4.0.dev9/) [![PyPi autogen-agentchat](https://img.shields.io/badge/PyPi-autogen--agentchat-blue?logo=pypi)](https://pypi.org/project/autogen-agentchat/0.4.0.dev9/) [![PyPi autogen-ext](https://img.shields.io/badge/PyPi-autogen--ext-blue?logo=pypi)](https://pypi.org/project/autogen-ext/0.4.0.dev9/)
55

66
This directory works as a single `uv` workspace containing all project packages. See [`packages`](./packages/) to discover all project packages.
77

‎python/packages/autogen-agentchat/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "autogen-agentchat"
7-
version = "0.4.0.dev8"
7+
version = "0.4.0.dev9"
88
license = {file = "LICENSE-CODE"}
99
description = "AutoGen agents and teams library"
1010
readme = "README.md"
@@ -15,7 +15,7 @@ classifiers = [
1515
"Operating System :: OS Independent",
1616
]
1717
dependencies = [
18-
"autogen-core==0.4.0.dev8",
18+
"autogen-core==0.4.0.dev9",
1919
]
2020

2121
[tool.uv]

‎python/packages/autogen-core/docs/src/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ AgentChat </div>
5656
High-level API that includes preset agents and teams for building multi-agent systems.
5757

5858
```sh
59-
pip install 'autogen-agentchat==0.4.0.dev8'
59+
pip install 'autogen-agentchat==0.4.0.dev9'
6060
```
6161

6262
💡 *Start here if you are looking for an API similar to AutoGen 0.2.*
@@ -77,7 +77,7 @@ Get Started
7777
Provides building blocks for creating asynchronous, event driven multi-agent systems.
7878

7979
```sh
80-
pip install 'autogen-core==0.4.0.dev8'
80+
pip install 'autogen-core==0.4.0.dev9'
8181
```
8282

8383
+++

‎python/packages/autogen-core/docs/src/packages/index.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ myst:
3131
Library that is at a similar level of abstraction as AutoGen 0.2, including default agents and group chat.
3232

3333
```sh
34-
pip install 'autogen-agentchat==0.4.0.dev8'
34+
pip install 'autogen-agentchat==0.4.0.dev9'
3535
```
3636

37-
[{fas}`circle-info;pst-color-primary` User Guide](/user-guide/agentchat-user-guide/index.md) | [{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_agentchat.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-agentchat/0.4.0.dev8/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-agentchat)
37+
[{fas}`circle-info;pst-color-primary` User Guide](/user-guide/agentchat-user-guide/index.md) | [{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_agentchat.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-agentchat/0.4.0.dev9/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-agentchat)
3838
:::
3939

4040
(pkg-info-autogen-core)=
@@ -46,10 +46,10 @@ pip install 'autogen-agentchat==0.4.0.dev8'
4646
Implements the core functionality of the AutoGen framework, providing basic building blocks for creating multi-agent systems.
4747

4848
```sh
49-
pip install 'autogen-core==0.4.0.dev8'
49+
pip install 'autogen-core==0.4.0.dev9'
5050
```
5151

52-
[{fas}`circle-info;pst-color-primary` User Guide](/user-guide/core-user-guide/index.md) | [{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_core.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-core/0.4.0.dev8/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-core)
52+
[{fas}`circle-info;pst-color-primary` User Guide](/user-guide/core-user-guide/index.md) | [{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_core.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-core/0.4.0.dev9/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-core)
5353
:::
5454

5555
(pkg-info-autogen-ext)=
@@ -61,7 +61,7 @@ pip install 'autogen-core==0.4.0.dev8'
6161
Implementations of core components that interface with external services, or use extra dependencies. For example, Docker based code execution.
6262

6363
```sh
64-
pip install 'autogen-ext==0.4.0.dev8'
64+
pip install 'autogen-ext==0.4.0.dev9'
6565
```
6666

6767
Extras:
@@ -71,7 +71,7 @@ Extras:
7171
- `docker` needed for {py:class}`~autogen_ext.code_executors.docker.DockerCommandLineCodeExecutor`
7272
- `openai` needed for {py:class}`~autogen_ext.models.OpenAIChatCompletionClient`
7373

74-
[{fas}`circle-info;pst-color-primary` User Guide](/user-guide/extensions-user-guide/index.md) | [{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_ext.agents.web_surfer.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-ext/0.4.0.dev8/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-ext)
74+
[{fas}`circle-info;pst-color-primary` User Guide](/user-guide/extensions-user-guide/index.md) | [{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_ext.agents.web_surfer.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-ext/0.4.0.dev9/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-ext)
7575
:::
7676

7777
(pkg-info-autogen-magentic-one)=

‎python/packages/autogen-core/docs/src/user-guide/agentchat-user-guide/installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Install the `autogen-agentchat` package using pip:
6161

6262
```bash
6363

64-
pip install 'autogen-agentchat==0.4.0.dev8'
64+
pip install 'autogen-agentchat==0.4.0.dev9'
6565
```
6666

6767
```{note}
@@ -74,7 +74,7 @@ To use the OpenAI and Azure OpenAI models, you need to install the following
7474
extensions:
7575

7676
```bash
77-
pip install 'autogen-ext[openai]==0.4.0.dev8'
77+
pip install 'autogen-ext[openai]==0.4.0.dev9'
7878
```
7979

8080
## Install Docker for Code Execution

0 commit comments

Comments
 (0)
Please sign in to comment.