diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 7335d00b57ad..ccc01dbfcc6a 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -1,7 +1,7 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-outside-of-docker-compose
{
- "name": "agnext devcontainer",
+ "name": "AutoGen devcontainer",
"dockerComposeFile": "docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
diff --git a/dotnet/src/Microsoft.AutoGen.Agents.Client/Microsoft.AutoGen.Agents.Client.csproj b/dotnet/src/Microsoft.AutoGen.Agents.Client/Microsoft.AutoGen.Agents.Client.csproj
index 0af9d0a1f0dd..1a79399c4aaf 100644
--- a/dotnet/src/Microsoft.AutoGen.Agents.Client/Microsoft.AutoGen.Agents.Client.csproj
+++ b/dotnet/src/Microsoft.AutoGen.Agents.Client/Microsoft.AutoGen.Agents.Client.csproj
@@ -5,7 +5,7 @@
enable
enable
AutoGen.Worker.Client
- https://github.com/microsoft/agnext
+ https://github.com/microsoft/autogen
Microsoft
AutoGen Worker Client Library
ai-agents;event-driven-agents
diff --git a/dotnet/src/Microsoft.AutoGen.Agents.Runtime/Microsoft.AutoGen.Agents.Runtime.csproj b/dotnet/src/Microsoft.AutoGen.Agents.Runtime/Microsoft.AutoGen.Agents.Runtime.csproj
index 5b7c0ca6002e..bb3fa4bc063c 100644
--- a/dotnet/src/Microsoft.AutoGen.Agents.Runtime/Microsoft.AutoGen.Agents.Runtime.csproj
+++ b/dotnet/src/Microsoft.AutoGen.Agents.Runtime/Microsoft.AutoGen.Agents.Runtime.csproj
@@ -5,7 +5,7 @@
enable
enable
AutoGen.Worker.Server
- https://github.com/microsoft/agnext
+ https://github.com/microsoft/autogen
Microsoft
AutoGen Worker Server Library
ai-agents;event-driven-agents
diff --git a/dotnet/src/Microsoft.AutoGen.Agents/Microsoft.AutoGen.Agents.csproj b/dotnet/src/Microsoft.AutoGen.Agents/Microsoft.AutoGen.Agents.csproj
index cd3f1637b887..9ce30cf06df9 100644
--- a/dotnet/src/Microsoft.AutoGen.Agents/Microsoft.AutoGen.Agents.csproj
+++ b/dotnet/src/Microsoft.AutoGen.Agents/Microsoft.AutoGen.Agents.csproj
@@ -5,7 +5,7 @@
enable
enable
AutoGen.Core
- https://github.com/microsoft/agnext
+ https://github.com/microsoft/autogen
Microsoft
AutoGenn Core Library
diff --git a/python/packages/autogen-core/README.md b/python/packages/autogen-core/README.md
index 065401e24057..1f05bd9942a1 100644
--- a/python/packages/autogen-core/README.md
+++ b/python/packages/autogen-core/README.md
@@ -1,7 +1,7 @@
# AutoGen Core
-- [Documentation](http://microsoft.github.io/agnext)
-- [Examples](https://github.com/microsoft/agnext/tree/main/python/packages/autogen-core/samples)
+- [Documentation](http://microsoft.github.io/autogen)
+- [Examples](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-core/samples)
## Package layering
diff --git a/python/packages/autogen-core/docs/drawio/layers.drawio b/python/packages/autogen-core/docs/drawio/layers.drawio
index 22789cac84ad..a0f5d3f578b0 100644
--- a/python/packages/autogen-core/docs/drawio/layers.drawio
+++ b/python/packages/autogen-core/docs/drawio/layers.drawio
@@ -19,7 +19,7 @@
-
+
diff --git a/python/packages/autogen-core/docs/src/agentchat-user-guide/guides/quickstart.ipynb b/python/packages/autogen-core/docs/src/agentchat-user-guide/guides/quickstart.ipynb
index 8ba79ecbfcfe..5fced878341f 100644
--- a/python/packages/autogen-core/docs/src/agentchat-user-guide/guides/quickstart.ipynb
+++ b/python/packages/autogen-core/docs/src/agentchat-user-guide/guides/quickstart.ipynb
@@ -353,7 +353,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "agnext",
+ "display_name": "autogen",
"language": "python",
"name": "python3"
},
diff --git a/python/packages/autogen-core/docs/src/conf.py b/python/packages/autogen-core/docs/src/conf.py
index 70f9c6018c8f..9e7edbb9d7fb 100644
--- a/python/packages/autogen-core/docs/src/conf.py
+++ b/python/packages/autogen-core/docs/src/conf.py
@@ -90,7 +90,7 @@
},
{
"name": "GitHub",
- "url": "https://github.com/microsoft/agnext",
+ "url": "https://github.com/microsoft/autogen",
"icon": "fa-brands fa-github",
},
{
@@ -111,7 +111,7 @@
html_context = {
'display_github': True,
"github_user": "microsoft",
- "github_repo": "agnext",
+ "github_repo": "autogen",
"github_version": "main",
"doc_path": "python/packages/autogen-core/docs/src/",
}
diff --git a/python/packages/autogen-core/docs/src/core-user-guide/cookbook/openai-assistant-agent.ipynb b/python/packages/autogen-core/docs/src/core-user-guide/cookbook/openai-assistant-agent.ipynb
index cb34496c837d..14ff955f9663 100644
--- a/python/packages/autogen-core/docs/src/core-user-guide/cookbook/openai-assistant-agent.ipynb
+++ b/python/packages/autogen-core/docs/src/core-user-guide/cookbook/openai-assistant-agent.ipynb
@@ -345,7 +345,7 @@
"## Using the Agent\n",
"\n",
"First we need to use the `openai` client to create the actual assistant,\n",
- "thread, and vector store. Our AGNext agent will be using these."
+ "thread, and vector store. Our autogen agent will be using these."
]
},
{
diff --git a/python/packages/autogen-core/docs/src/core-user-guide/guides/command-line-code-executors.ipynb b/python/packages/autogen-core/docs/src/core-user-guide/guides/command-line-code-executors.ipynb
index e6e8a3be3095..d05defe76c17 100644
--- a/python/packages/autogen-core/docs/src/core-user-guide/guides/command-line-code-executors.ipynb
+++ b/python/packages/autogen-core/docs/src/core-user-guide/guides/command-line-code-executors.ipynb
@@ -105,17 +105,9 @@
},
{
"cell_type": "code",
- "execution_count": 6,
+ "execution_count": null,
"metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "CommandLineCodeResult(exit_code=0, output='Hello, World!\\n', code_file='/home/ekzhu/agnext/python/packages/autogen-core/docs/src/guides/coding/tmp_code_07da107bb575cc4e02b0e1d6d99cc204.py')\n"
- ]
- }
- ],
+ "outputs": [],
"source": [
"from pathlib import Path\n",
"\n",
diff --git a/python/packages/autogen-core/docs/src/core-user-guide/guides/distributed-agent-runtime.ipynb b/python/packages/autogen-core/docs/src/core-user-guide/guides/distributed-agent-runtime.ipynb
index fabacded043d..590cbea1122d 100644
--- a/python/packages/autogen-core/docs/src/core-user-guide/guides/distributed-agent-runtime.ipynb
+++ b/python/packages/autogen-core/docs/src/core-user-guide/guides/distributed-agent-runtime.ipynb
@@ -182,7 +182,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "agnext",
+ "display_name": "autogen",
"language": "python",
"name": "python3"
},
diff --git a/python/packages/autogen-core/docs/src/core-user-guide/guides/message-and-communication.ipynb b/python/packages/autogen-core/docs/src/core-user-guide/guides/message-and-communication.ipynb
index 95c615d3e9f4..8730a0da22a5 100644
--- a/python/packages/autogen-core/docs/src/core-user-guide/guides/message-and-communication.ipynb
+++ b/python/packages/autogen-core/docs/src/core-user-guide/guides/message-and-communication.ipynb
@@ -625,7 +625,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "agnext",
+ "display_name": "autogen",
"language": "python",
"name": "python3"
},
diff --git a/python/packages/autogen-core/docs/src/core-user-guide/guides/quickstart.ipynb b/python/packages/autogen-core/docs/src/core-user-guide/guides/quickstart.ipynb
index cc489f6f76ea..d2e8d796adb3 100644
--- a/python/packages/autogen-core/docs/src/core-user-guide/guides/quickstart.ipynb
+++ b/python/packages/autogen-core/docs/src/core-user-guide/guides/quickstart.ipynb
@@ -395,7 +395,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "agnext",
+ "display_name": "autogen",
"language": "python",
"name": "python3"
},
diff --git a/python/packages/autogen-core/docs/src/packages/index.md b/python/packages/autogen-core/docs/src/packages/index.md
index 96c440f5c2c7..c038aa83a43e 100644
--- a/python/packages/autogen-core/docs/src/packages/index.md
+++ b/python/packages/autogen-core/docs/src/packages/index.md
@@ -35,7 +35,7 @@ pip install autogen-agentchat==0.4.0dev0
This package is a work in progress, it will be available on PyPI when it is ready.
```
-[{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_agentchat/autogen_agentchat.rst) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/agnext/tree/main/python/packages/autogen-agentchat)
+[{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_agentchat/autogen_agentchat.rst) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-agentchat)
:::
(pkg-info-autogen-core)=
@@ -52,7 +52,7 @@ pip install autogen-core==0.4.0dev0
```{note}
This package is a work in progress, it will be available on PyPI when it is ready.
```
-[{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_core/autogen_core.rst) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/agnext/tree/main/python/packages/autogen-core)
+[{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_core/autogen_core.rst) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-core)
:::
(pkg-info-autogen-ext)=
@@ -70,7 +70,7 @@ pip install autogen-ext==0.4.0dev0
This package is a work in progress, it will be available on PyPI when it is ready.
```
-[{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_ext/autogen_ext.rst) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/agnext/tree/main/python/packages/autogen-ext)
+[{fas}`file-code;pst-color-primary` API Reference](/reference/python/autogen_ext/autogen_ext.rst) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-ext)
:::
(pkg-info-autogen-team-one)=
@@ -88,7 +88,7 @@ pip install autogen-team-one==0.1.0dev0
This package is a work in progress, it will be available on PyPI when it is ready.
```
-[{fas}`file-code;pst-color-primary` API Reference](/reference/index.md) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/agnext/tree/main/python/packages/team-one)
+[{fas}`file-code;pst-color-primary` API Reference](/reference/index.md) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/team-one)
:::
(pkg-info-autogenbench)=
@@ -102,5 +102,5 @@ AutoGenBench is a tool for repeatedly running pre-defined AutoGen tasks in tight
pip install autogenbench
```
-[{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogenbench/) | [{fas}`file-code;pst-color-primary` API Reference](/reference/index.md) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/agnext/tree/main/python/packages/agbench)
+[{fab}`python;pst-color-primary` PyPI](https://pypi.org/project/autogenbench/) | [{fas}`file-code;pst-color-primary` API Reference](/reference/index.md) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/agbench)
:::
diff --git a/python/packages/autogen-core/src/autogen_core/application/telemetry/_tracing_config.py b/python/packages/autogen-core/src/autogen_core/application/telemetry/_tracing_config.py
index 78aff2562c7a..b7e2ec53fa21 100644
--- a/python/packages/autogen-core/src/autogen_core/application/telemetry/_tracing_config.py
+++ b/python/packages/autogen-core/src/autogen_core/application/telemetry/_tracing_config.py
@@ -174,8 +174,7 @@ def get_span_kind(
else:
return SpanKind.CLIENT
- # TODO: Once we figure out how the destinations are stringified, we can use that convention
- # https://github.com/microsoft/agnext/issues/399
+ # TODO: TODO: adopt cannonical str representation
def _get_destination_str(self, destination: MessagingDestination) -> str:
if isinstance(destination, AgentId):
return f"{destination.type}.({destination.key})-A"
diff --git a/python/packages/autogen-core/tests/regressions/test_clean_terminate.py b/python/packages/autogen-core/tests/regressions/test_clean_terminate.py
index 5ecd02fdc7ec..2613e27a11e9 100644
--- a/python/packages/autogen-core/tests/regressions/test_clean_terminate.py
+++ b/python/packages/autogen-core/tests/regressions/test_clean_terminate.py
@@ -54,10 +54,6 @@ def unregister(self, func: t.Callable[..., t.Any], /, **kwargs: t.Any) -> None:
asyncio_atexit.unregister(func, loop=loop) # type: ignore
-# From Issue #584: No EventLoop error when agents exit.
-# see: https://github.com/microsoft/agnext/issues/584
-
-
# This is a minimal implementation of a component that requires cleanup on exit.
class CleanupComponent:
def __init__(self, atexit_impl: AtExitImpl, use_async_cleanup: bool) -> None: