Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 0.4.1 #5029

Merged
merged 4 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/switcher.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[
{
"name": "0.4.0 (stable)",
"name": "0.4.1 (stable)",
"version": "stable",
"url": "/autogen/stable/",
"preferred": true
Expand All @@ -15,6 +15,11 @@
"version": "0.2",
"url": "/autogen/0.2/"
},
{
"name": "0.4.0",
"version": "0.4.0",
"url": "/autogen/0.4.0/"
},
{
"name": "0.4.0.dev0",
"version": "0.4.0.dev0",
Expand Down
4 changes: 2 additions & 2 deletions python/packages/autogen-agentchat/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "autogen-agentchat"
version = "0.4.0"
version = "0.4.1"
license = {file = "LICENSE-CODE"}
description = "AutoGen agents and teams library"
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"autogen-core==0.4.0",
"autogen-core==0.4.1",
"aioconsole>=0.8.1"
]

Expand Down
4 changes: 2 additions & 2 deletions python/packages/autogen-core/docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ A console-based multi-agent assistant for web and file-based tasks.
Built on AgentChat.

```bash
pip install magentic-one-cli
pip install -U magentic-one-cli
m1 "Find flights from Seattle to Paris and format the result in a table"
```

Expand All @@ -83,7 +83,7 @@ An app for prototyping and managing agents without writing code.
Built on AgentChat.

```bash
pip install autogenstudio
pip install -U autogenstudio
autogenstudio ui --port 8080 --appdir ./myapp
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ pip install "autogen-ext[openai]"
If you are using Azure OpenAI with AAD authentication, you need to install the following:

```bash
pip install "autogen-ext[azure]==0.4.0.dev13"
pip install "autogen-ext[azure]"
```
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ To use the OpenAI and Azure OpenAI models, you need to install the following
extensions:

```bash
pip install "autogen-ext[openai]==0.4.0.dev13"
pip install "autogen-ext[openai]"
```

If you are using Azure OpenAI with AAD authentication, you need to install the following:

```bash
pip install "autogen-ext[azure]==0.4.0.dev13"
pip install "autogen-ext[azure]"
```

## Install Docker for Code Execution (Optional)
Expand Down
4 changes: 2 additions & 2 deletions python/packages/autogen-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "autogen-core"
version = "0.4.0"
version = "0.4.1"
license = {file = "LICENSE-CODE"}
description = "Foundational interfaces and agent runtime implementation for AutoGen"
readme = "README.md"
Expand Down Expand Up @@ -69,7 +69,7 @@ dev = [
"pygments",
"sphinxext-rediraffe",

"autogen_ext==0.4.0",
"autogen_ext==0.4.1",

# Documentation tooling
"sphinx-autobuild",
Expand Down
10 changes: 5 additions & 5 deletions python/packages/autogen-ext/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"autogen-core==0.4.0",
"autogen-core==0.4.1",
]

[project.optional-dependencies]
Expand All @@ -24,23 +24,23 @@ azure = ["azure-core", "azure-identity"]
docker = ["docker~=7.0"]
openai = ["openai>=1.52.2", "tiktoken>=0.8.0", "aiofiles"]
file-surfer = [
"autogen-agentchat==0.4.0",
"autogen-agentchat==0.4.1",
"markitdown>=0.0.1a2",
]
web-surfer = [
"autogen-agentchat==0.4.0",
"autogen-agentchat==0.4.1",
"playwright>=1.48.0",
"pillow>=11.0.0",
"markitdown>=0.0.1a2",
]
magentic-one = [
"autogen-agentchat==0.4.0",
"autogen-agentchat==0.4.1",
"markitdown>=0.0.1a2",
"playwright>=1.48.0",
"pillow>=11.0.0",
]
video-surfer = [
"autogen-agentchat==0.4.0",
"autogen-agentchat==0.4.1",
"opencv-python>=4.5",
"ffmpeg-python",
"openai-whisper",
Expand Down
6 changes: 3 additions & 3 deletions python/packages/magentic-one-cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "magentic-one-cli"
version = "0.2.0"
version = "0.2.1"
license = {file = "LICENSE-CODE"}
description = "Magentic-One is a generalist multi-agent system, built on `AutoGen-AgentChat`, for solving complex web and file-based tasks. This package installs the `m1` command-line utility to quickly get started with Magentic-One."
readme = "README.md"
Expand All @@ -15,8 +15,8 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"autogen-agentchat>=0.4.0,<0.5",
"autogen-ext[openai,magentic-one]>=0.4.0,<0.5",
"autogen-agentchat>=0.4.1,<0.5",
"autogen-ext[openai,magentic-one]>=0.4.1,<0.5",
]

[project.scripts]
Expand Down
2 changes: 1 addition & 1 deletion python/samples/agentchat_chainlit/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
chainlit
autogen-agentchat==0.4.0
autogen-agentchat>=0.4.1,<0.5
6 changes: 3 additions & 3 deletions python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading