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 3622a29dc4ee..3ea992e00118 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/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/src/packages/index.md b/python/packages/autogen-core/docs/src/packages/index.md
index 8394072dde18..66c51ca8cdcf 100644
--- a/python/packages/autogen-core/docs/src/packages/index.md
+++ b/python/packages/autogen-core/docs/src/packages/index.md
@@ -33,7 +33,7 @@ pip install autogen-agentchat==0.4.0dev0
```
-[{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)=
@@ -48,7 +48,7 @@ Implements the core functionality of the AutoGen framework, providing basic buil
pip install autogen-core==0.4.0dev0
```
-[{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)=
@@ -63,7 +63,7 @@ Implementations of core components that interface with external services, or use
pip install autogen-ext==0.4.0dev0
```
-[{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-magentic-one)=
@@ -78,7 +78,7 @@ A generalist multi-agent softbot utilizing five agents to tackle intricate tasks
pip install autogen-magentic-one==0.1.0dev0
```
-[{fab}`github;pst-color-primary` Source](https://github.com/microsoft/agnext/tree/main/python/packages/autogen-magentic-one)
+[{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/autogen-magentic-one)
:::
(pkg-info-autogenbench)=
@@ -93,5 +93,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/) | [{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/) | [{fab}`github;pst-color-primary` Source](https://github.com/microsoft/autogen/tree/main/python/packages/agbench)
:::
diff --git a/python/packages/autogen-core/docs/src/user-guide/core-user-guide/cookbook/openai-assistant-agent.ipynb b/python/packages/autogen-core/docs/src/user-guide/core-user-guide/cookbook/openai-assistant-agent.ipynb
index cb34496c837d..09d18a78f2af 100644
--- a/python/packages/autogen-core/docs/src/user-guide/core-user-guide/cookbook/openai-assistant-agent.ipynb
+++ b/python/packages/autogen-core/docs/src/user-guide/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/src/autogen_core/application/telemetry/_tracing_config.py b/python/packages/autogen-core/src/autogen_core/application/telemetry/_tracing_config.py
index 78aff2562c7a..478712444a6f 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: Use stringified convention
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: