mirror of
https://github.com/microsoft/autogen.git
synced 2025-12-25 14:09:00 +00:00
Update version to 0.4.0.dev3 (#4043)
This commit is contained in:
parent
4fec22ddc5
commit
4e5f3ababe
1
.github/workflows/docs.yml
vendored
1
.github/workflows/docs.yml
vendored
@ -35,6 +35,7 @@ jobs:
|
||||
{ ref: "v0.4.0.dev0", dest-dir: "0.4.0.dev0" },
|
||||
{ ref: "v0.4.0.dev1", dest-dir: "0.4.0.dev1" },
|
||||
{ ref: "v0.4.0.dev2", dest-dir: "0.4.0.dev2" },
|
||||
{ ref: "v0.4.0.dev3", dest-dir: "0.4.0.dev3" },
|
||||
]
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
||||
24
README.md
24
README.md
@ -101,7 +101,7 @@ We look forward to your contributions!
|
||||
First install the packages:
|
||||
|
||||
```bash
|
||||
pip install autogen-agentchat==0.4.0.dev2 autogen-ext==0.4.0.dev2
|
||||
pip install 'autogen-agentchat==0.4.0.dev3' 'autogen-ext[docker]==0.4.0.dev3'
|
||||
```
|
||||
|
||||
The following code uses code execution, you need to have [Docker installed](https://docs.docker.com/engine/install/)
|
||||
@ -109,17 +109,11 @@ and running on your machine.
|
||||
|
||||
```python
|
||||
import asyncio
|
||||
import logging
|
||||
from autogen_agentchat import EVENT_LOGGER_NAME
|
||||
from autogen_agentchat.agents import CodeExecutorAgent, CodingAssistantAgent
|
||||
from autogen_agentchat.logging import ConsoleLogHandler
|
||||
from autogen_agentchat.teams import RoundRobinGroupChat, StopMessageTermination
|
||||
from autogen_ext.code_executor.docker_executor import DockerCommandLineCodeExecutor
|
||||
from autogen_ext.models import OpenAIChatCompletionClient
|
||||
|
||||
logger = logging.getLogger(EVENT_LOGGER_NAME)
|
||||
logger.addHandler(ConsoleLogHandler())
|
||||
logger.setLevel(logging.INFO)
|
||||
from autogen_agentchat.agents import CodeExecutorAgent, CodingAssistantAgent
|
||||
from autogen_agentchat.teams import RoundRobinGroupChat
|
||||
from autogen_agentchat.task import TextMentionTermination
|
||||
|
||||
async def main() -> None:
|
||||
async with DockerCommandLineCodeExecutor(work_dir="coding") as code_executor:
|
||||
@ -127,11 +121,13 @@ async def main() -> None:
|
||||
coding_assistant_agent = CodingAssistantAgent(
|
||||
"coding_assistant", model_client=OpenAIChatCompletionClient(model="gpt-4o", api_key="YOUR_API_KEY")
|
||||
)
|
||||
group_chat = RoundRobinGroupChat([coding_assistant_agent, code_executor_agent])
|
||||
result = await group_chat.run(
|
||||
task="Create a plot of NVDIA and TSLA stock returns YTD from 2024-01-01 and save it to 'nvidia_tesla_2024_ytd.png'.",
|
||||
termination_condition=StopMessageTermination(),
|
||||
termination = TextMentionTermination("TERMINATE")
|
||||
group_chat = RoundRobinGroupChat([coding_assistant_agent, code_executor_agent], termination_condition=termination)
|
||||
stream = group_chat.run_stream(
|
||||
"Create a plot of NVDIA and TSLA stock returns YTD from 2024-01-01 and save it to 'nvidia_tesla_2024_ytd.png'."
|
||||
)
|
||||
async for message in stream:
|
||||
print(message)
|
||||
|
||||
asyncio.run(main())
|
||||
```
|
||||
|
||||
@ -21,7 +21,12 @@
|
||||
{
|
||||
"name": "0.4.0.dev2",
|
||||
"version": "0.4.0.dev2",
|
||||
"url": "/autogen/0.4.0.dev2/",
|
||||
"url": "/autogen/0.4.0.dev2/"
|
||||
},
|
||||
{
|
||||
"name": "0.4.0.dev3",
|
||||
"version": "0.4.0.dev3",
|
||||
"url": "/autogen/0.4.0.dev3/",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
|
||||
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "autogen-agentchat"
|
||||
version = "0.4.0.dev2"
|
||||
version = "0.4.0.dev3"
|
||||
license = {file = "LICENSE-CODE"}
|
||||
description = "AutoGen agents and teams library"
|
||||
readme = "README.md"
|
||||
@ -15,7 +15,7 @@ classifiers = [
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
dependencies = [
|
||||
"autogen-core==0.4.0.dev2",
|
||||
"autogen-core==0.4.0.dev3",
|
||||
]
|
||||
|
||||
[tool.uv]
|
||||
|
||||
@ -61,7 +61,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.dev2
|
||||
pip install autogen-agentchat==0.4.0.dev3
|
||||
```
|
||||
|
||||
💡 *Start here if you are looking for an API similar to AutoGen 0.2*
|
||||
@ -82,7 +82,7 @@ Get Started
|
||||
Provides building blocks for creating asynchronous, event driven multi-agent systems.
|
||||
|
||||
```sh
|
||||
pip install autogen-core==0.4.0.dev2
|
||||
pip install autogen-core==0.4.0.dev3
|
||||
```
|
||||
|
||||
+++
|
||||
|
||||
@ -29,10 +29,10 @@ myst:
|
||||
Library that is at a similar level of abstraction as AutoGen 0.2, including default agents and group chat.
|
||||
|
||||
```sh
|
||||
pip install autogen-agentchat==0.4.0.dev2
|
||||
pip install autogen-agentchat==0.4.0.dev3
|
||||
```
|
||||
|
||||
[{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/autogen_agentchat.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-agentchat/0.4.0.dev2/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-agentchat)
|
||||
[{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/autogen_agentchat.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-agentchat/0.4.0.dev3/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-agentchat)
|
||||
:::
|
||||
|
||||
(pkg-info-autogen-core)=
|
||||
@ -44,10 +44,10 @@ pip install autogen-agentchat==0.4.0.dev2
|
||||
Implements the core functionality of the AutoGen framework, providing basic building blocks for creating multi-agent systems.
|
||||
|
||||
```sh
|
||||
pip install autogen-core==0.4.0.dev2
|
||||
pip install autogen-core==0.4.0.dev3
|
||||
```
|
||||
|
||||
[{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/autogen_core.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-core/0.4.0.dev2/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-core)
|
||||
[{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/autogen_core.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-core/0.4.0.dev3/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-core)
|
||||
:::
|
||||
|
||||
(pkg-info-autogen-ext)=
|
||||
@ -59,7 +59,7 @@ pip install autogen-core==0.4.0.dev2
|
||||
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.dev2
|
||||
pip install autogen-ext==0.4.0.dev3
|
||||
```
|
||||
|
||||
Extras:
|
||||
@ -69,7 +69,7 @@ Extras:
|
||||
- `docker` needed for {py:class}`~autogen_ext.code_executors.DockerCommandLineCodeExecutor`
|
||||
- `openai` needed for {py:class}`~autogen_ext.models.OpenAIChatCompletionClient`
|
||||
|
||||
[{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/autogen_ext.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-ext/0.4.0.dev2/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-ext)
|
||||
[{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/autogen_ext.rst) | [{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogen-ext/0.4.0.dev3/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-ext)
|
||||
:::
|
||||
|
||||
(pkg-info-autogen-magentic-one)=
|
||||
|
||||
@ -61,7 +61,7 @@ Install the `autogen-agentchat` package using pip:
|
||||
|
||||
```bash
|
||||
|
||||
pip install autogen-agentchat==0.4.0.dev2
|
||||
pip install autogen-agentchat==0.4.0.dev3
|
||||
```
|
||||
|
||||
## Install Docker for Code Execution
|
||||
|
||||
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "autogen-core"
|
||||
version = "0.4.0.dev2"
|
||||
version = "0.4.0.dev3"
|
||||
license = {file = "LICENSE-CODE"}
|
||||
description = "Foundational interfaces and agent runtime implementation for AutoGen"
|
||||
readme = "README.md"
|
||||
|
||||
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "autogen-ext"
|
||||
version = "0.4.0.dev2"
|
||||
version = "0.4.0.dev3"
|
||||
license = {file = "LICENSE-CODE"}
|
||||
description = "AutoGen extensions library"
|
||||
readme = "README.md"
|
||||
@ -15,7 +15,7 @@ classifiers = [
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
dependencies = [
|
||||
"autogen-core==0.4.0.dev2",
|
||||
"autogen-core==0.4.0.dev3",
|
||||
]
|
||||
|
||||
|
||||
|
||||
6
python/uv.lock
generated
6
python/uv.lock
generated
@ -360,7 +360,7 @@ wheels = [
|
||||
|
||||
[[package]]
|
||||
name = "autogen-agentchat"
|
||||
version = "0.4.0.dev2"
|
||||
version = "0.4.0.dev3"
|
||||
source = { editable = "packages/autogen-agentchat" }
|
||||
dependencies = [
|
||||
{ name = "autogen-core" },
|
||||
@ -371,7 +371,7 @@ requires-dist = [{ name = "autogen-core", editable = "packages/autogen-core" }]
|
||||
|
||||
[[package]]
|
||||
name = "autogen-core"
|
||||
version = "0.4.0.dev2"
|
||||
version = "0.4.0.dev3"
|
||||
source = { editable = "packages/autogen-core" }
|
||||
dependencies = [
|
||||
{ name = "aiohttp" },
|
||||
@ -484,7 +484,7 @@ dev = [
|
||||
|
||||
[[package]]
|
||||
name = "autogen-ext"
|
||||
version = "0.4.0.dev2"
|
||||
version = "0.4.0.dev3"
|
||||
source = { editable = "packages/autogen-ext" }
|
||||
dependencies = [
|
||||
{ name = "autogen-core" },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user