From 5c5f466e23fb792fefbd490e514b57205ac6133d Mon Sep 17 00:00:00 2001
From: Qingyun Wu
diff --git a/autogen/agentchat/contrib/agent_optimizer.py b/autogen/agentchat/contrib/agent_optimizer.py
index b93b19292c..57a561cf84 100644
--- a/autogen/agentchat/contrib/agent_optimizer.py
+++ b/autogen/agentchat/contrib/agent_optimizer.py
@@ -244,7 +244,7 @@ def step(self):
"""
One step of training. It will return register_for_llm and register_for_executor at each iteration,
which are subsequently utilized to update the assistant and executor agents, respectively.
- See example: https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_agentoptimizer.ipynb
+ See example: https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_agentoptimizer.ipynb
"""
performance = sum(sum(d.values()) for d in self._trial_conversations_performance) / len(
self._trial_conversations_performance
diff --git a/dotnet/README.md b/dotnet/README.md
index baf2206a0c..1920b21884 100644
--- a/dotnet/README.md
+++ b/dotnet/README.md
@@ -1,6 +1,6 @@
### AutoGen for .NET
-[![dotnet-ci](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml)
+[![dotnet-ci](https://github.com/ag2labs/ag2/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/ag2labs/ag2/actions/workflows/dotnet-build.yml)
[![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core)
> [!NOTE]
@@ -45,7 +45,7 @@ await userProxyAgent.InitiateChatAsync(
```
#### Samples
-You can find more examples under the [sample project](https://github.com/autogenhub/autogen/tree/dotnet/dotnet/sample/AutoGen.BasicSamples).
+You can find more examples under the [sample project](https://github.com/ag2labs/ag2/tree/dotnet/dotnet/sample/AutoGen.BasicSamples).
#### Functionality
- ConversableAgent
diff --git a/dotnet/nuget/NUGET.md b/dotnet/nuget/NUGET.md
index 7df735e5b1..701b82f4a1 100644
--- a/dotnet/nuget/NUGET.md
+++ b/dotnet/nuget/NUGET.md
@@ -1,8 +1,8 @@
### About AutoGen for .NET
-`AutoGen for .NET` is the official .NET SDK for [AutoGen](https://github.com/autogenhub/autogen). It enables you to create LLM agents and construct multi-agent workflows with ease. It also provides integration with popular platforms like OpenAI, Semantic Kernel, and LM Studio.
+`AutoGen for .NET` is the official .NET SDK for [AutoGen](https://github.com/ag2labs/ag2). It enables you to create LLM agents and construct multi-agent workflows with ease. It also provides integration with popular platforms like OpenAI, Semantic Kernel, and LM Studio.
### Gettings started
- Find documents and examples on our [document site](https://autogenhub.github.io/autogen-for-net/)
- Join our [Discord channel](https://discord.gg/pAbnFJrkgZ) to get help and discuss with the community
-- Report a bug or request a feature by creating a new issue in our [github repo](https://github.com/autogenhub/autogen)
+- Report a bug or request a feature by creating a new issue in our [github repo](https://github.com/ag2labs/ag2)
- Consume the nightly build package from one of the [nightly build feeds](https://autogenhub.github.io/autogen-for-net/articles/Installation.html#nighly-build)
\ No newline at end of file
diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs
index 8699344372..24bf41ec66 100644
--- a/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs
+++ b/dotnet/sample/AutoGen.Anthropic.Samples/Anthropic_Agent_With_Prompt_Caching.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs
index 9dc60efcc2..56374f9546 100644
--- a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs
+++ b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs
index 945d52e24e..4f1d3c2360 100644
--- a/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs
+++ b/dotnet/sample/AutoGen.Anthropic.Samples/Create_Anthropic_Agent_With_Tool.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs b/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs
index eb6fabd279..da0393d9e5 100644
--- a/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs
+++ b/dotnet/sample/AutoGen.Anthropic.Samples/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs
index a27e11a2df..a68830e790 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/AgentCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs
index 989c003e02..768bde2566 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/BuildInMessageCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs
index 97d24da198..765364fed7 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/CreateAnAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs
index 877813808d..d2b1229806 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/FunctionCallCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs
index 1a8f51d9d9..d9f739afec 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/GetStartCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs
index 7bdee2931a..283130cf93 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MiddlewareAgentCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs
index 721be6541e..cbad38be83 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/MistralAICodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs
index 6014f4671d..3b2d53aa53 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/OpenAICodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs
index 4fe6c806ba..58654921b8 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/PrintMessageMiddlewareCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs
index 15206cb2d9..c90329f964 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/RunCodeSnippetCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs
index 622be6d1c7..7e1a6c25b0 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/SemanticKernelCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs
index b2576fc352..7bf9759bf6 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/TypeSafeFunctionCallCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs
index f7d201ad1c..8e8d7fe9a2 100644
--- a/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/CodeSnippet/UserProxyAgentCodeSnippet.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs b/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs
index 08dbf1b17d..afe2ec7835 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example01_AssistantAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs b/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs
index b9035f54dd..263c3e3a5d 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example02_TwoAgent_MathChat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs b/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs
index 9c568e398a..cf62bb1a22 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example03_Agent_FunctionCall.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs b/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs
index 817ddd7a49..b0f0dd3da3 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example04_Dynamic_GroupChat_Coding_Task.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs b/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs
index 9cd0526a90..e5a75ad420 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example05_Dalle_And_GPT4V.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs b/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs
index ef8a166e21..72c9d09c2b 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example06_UserProxyAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs b/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs
index b0667cdc0b..cc6c693d73 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs b/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs
index a9b5102661..5b1cdfa0a1 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example08_LMStudio.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs b/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs
index 7432046e38..57ab29aef2 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example09_LMStudio_FunctionCall.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs b/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs
index 03152f8059..08db7696ce 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example10_SemanticKernel.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs b/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs
index 8e673447a0..63231e7b05 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs b/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs
index 3bd5e870ef..f78f19916a 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example12_TwoAgent_Fill_Application.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs b/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs
index 0761fc3aa1..2f3680ab79 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example13_OpenAIAgent_JsonMode.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs b/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs
index bd363c681e..44c7f4bff9 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs b/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs
index e508cf8b6f..7c83ba48c6 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example15_GPT4V_BinaryDataImageMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs b/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs
index fcdc906256..d4f8b6d7de 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example16_OpenAIChatAgent_ConnectToThirdPartyBackend.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs b/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs
index a64b6a088b..35444a4b4f 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Example17_ReActAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs
index 81769fdd6d..dfd3845a96 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Agent_Middleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs
index 0c43f9c824..fd055e33d4 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs
index 95ce327ba0..0919a429e7 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Dynamic_Group_Chat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs
index 2adfe244eb..aa49297d81 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/FSM_Group_Chat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs
index 7d842f309c..6657ad5a3c 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs
index 58994c6037..bd562bcd2d 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Streaming_Tool_Call.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs
index bca5e41665..582fc34ebe 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs b/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs
index dc2491e89b..a1c5a40a43 100644
--- a/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs b/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs
index ace6b2a026..846231019d 100644
--- a/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/LLMConfiguration.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.BasicSamples/Program.cs b/dotnet/sample/AutoGen.BasicSamples/Program.cs
index cbb8f641c5..fb7af192ad 100644
--- a/dotnet/sample/AutoGen.BasicSamples/Program.cs
+++ b/dotnet/sample/AutoGen.BasicSamples/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs
index eb1a98f841..b463028abd 100644
--- a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs
+++ b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs
index 2573fce8e8..6b0ad50ac5 100644
--- a/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs
+++ b/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs
index 172fc6ee5c..d886ee4fe4 100644
--- a/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs
+++ b/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs b/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs
index 2a1985870a..73cdb63886 100644
--- a/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs
+++ b/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Gemini.Sample/Program.cs b/dotnet/sample/AutoGen.Gemini.Sample/Program.cs
index f1529c133e..9f540a8ed4 100644
--- a/dotnet/sample/AutoGen.Gemini.Sample/Program.cs
+++ b/dotnet/sample/AutoGen.Gemini.Sample/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs
index 3176e3ab59..cc3be98190 100644
--- a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs
+++ b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs
index 535af68ebc..d4ef173633 100644
--- a/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs
+++ b/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.Ollama.Sample/Program.cs b/dotnet/sample/AutoGen.Ollama.Sample/Program.cs
index 26b16485d6..1100ac3bb7 100644
--- a/dotnet/sample/AutoGen.Ollama.Sample/Program.cs
+++ b/dotnet/sample/AutoGen.Ollama.Sample/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs
index 123ebe6d87..3798937595 100644
--- a/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs
+++ b/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs
index 1038ec7492..8923d5f6df 100644
--- a/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs
+++ b/dotnet/sample/AutoGen.OpenAI.Sample/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs
index c3ded0755a..b41f53e8b5 100644
--- a/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs
+++ b/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs b/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs
index 10c4a69ebe..48694c8d2d 100644
--- a/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs
+++ b/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs
index 776035a7e0..f65fb99140 100644
--- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs
+++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs
index 42b34a5667..2e21692336 100644
--- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs
+++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs
index 79d5da90c5..a39886c1ca 100644
--- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs
+++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs
index 7e5d252fa1..e81c528e6d 100644
--- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs
+++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Bing_Search_With_Semantic_Kernel_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs
index d3b54b8e8c..7fde42bf92 100644
--- a/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs
+++ b/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs b/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs
index 86828343f0..234474c11e 100644
--- a/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs
+++ b/dotnet/sample/AutoGen.WebAPI.Sample/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs b/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs
index e850f6db1e..f6c978d3de 100644
--- a/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs
+++ b/dotnet/src/AutoGen.Anthropic/Agent/AnthropicClientAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs b/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs
index 91729a46f8..6c76702d67 100644
--- a/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs
+++ b/dotnet/src/AutoGen.Anthropic/AnthropicClient.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs b/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs
index f5936cb07e..1847257318 100644
--- a/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs
+++ b/dotnet/src/AutoGen.Anthropic/Converters/ContentBaseConverter.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs b/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs
index 50f743ef7e..b924ee8185 100644
--- a/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs
+++ b/dotnet/src/AutoGen.Anthropic/Converters/JsonPropertyNameEnumCoverter.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs b/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs
index 6a78e781cf..7e1efff4de 100644
--- a/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs
+++ b/dotnet/src/AutoGen.Anthropic/Converters/SystemMessageConverter.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs
index d977f829c2..94137f3941 100644
--- a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs
+++ b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionRequest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs
index 5d2781ecd0..e63b567638 100644
--- a/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs
+++ b/dotnet/src/AutoGen.Anthropic/DTO/ChatCompletionResponse.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/DTO/Content.cs b/dotnet/src/AutoGen.Anthropic/DTO/Content.cs
index 8667d6da29..9f9ac5a52c 100644
--- a/dotnet/src/AutoGen.Anthropic/DTO/Content.cs
+++ b/dotnet/src/AutoGen.Anthropic/DTO/Content.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs b/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs
index ad15529e8e..4de0fb1f60 100644
--- a/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs
+++ b/dotnet/src/AutoGen.Anthropic/DTO/ErrorResponse.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs b/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs
index a53d0726d7..cc39ed5466 100644
--- a/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs
+++ b/dotnet/src/AutoGen.Anthropic/DTO/Tool.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs b/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs
index 74c09517f7..046b000f0f 100644
--- a/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs
+++ b/dotnet/src/AutoGen.Anthropic/DTO/ToolChoice.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs b/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs
index 33f5208694..018a883abb 100644
--- a/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs
+++ b/dotnet/src/AutoGen.Anthropic/Extensions/AnthropicAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs b/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs
index 4b53db6f36..6527df8ace 100644
--- a/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs
+++ b/dotnet/src/AutoGen.Anthropic/Middleware/AnthropicMessageConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs b/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs
index 1c5f459bba..999f567adb 100644
--- a/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs
+++ b/dotnet/src/AutoGen.Anthropic/Utils/AnthropicConstants.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs b/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs
index 69b75d443d..6eef9483a2 100644
--- a/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs
+++ b/dotnet/src/AutoGen.AzureAIInference/Agent/ChatCompletionsClientAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs b/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs
index ddb885ef6e..3f7fe93eb8 100644
--- a/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs
+++ b/dotnet/src/AutoGen.AzureAIInference/Extension/ChatComptionClientAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs
index c7d47e8e52..2365f0fe5d 100644
--- a/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs
+++ b/dotnet/src/AutoGen.AzureAIInference/Extension/FunctionContractExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs b/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs
index 8c821068f5..fd8911377e 100644
--- a/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs
+++ b/dotnet/src/AutoGen.AzureAIInference/Middleware/AzureAIInferenceChatRequestMessageConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs b/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs
index e9b99ce585..938ef45fa5 100644
--- a/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs
+++ b/dotnet/src/AutoGen.Core/Agent/DefaultReplyAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs b/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs
index 3d7999f0ca..cfb4367cbb 100644
--- a/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs
+++ b/dotnet/src/AutoGen.Core/Agent/GroupChatManager.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/IAgent.cs b/dotnet/src/AutoGen.Core/Agent/IAgent.cs
index 2a96c63c38..4b781bf484 100644
--- a/dotnet/src/AutoGen.Core/Agent/IAgent.cs
+++ b/dotnet/src/AutoGen.Core/Agent/IAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs b/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs
index 1c29246f7c..15e4ecb86b 100644
--- a/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs
+++ b/dotnet/src/AutoGen.Core/Agent/IMiddlewareAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs b/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs
index c9c45e6476..07a0140c4f 100644
--- a/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs
+++ b/dotnet/src/AutoGen.Core/Agent/IStreamingAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs b/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs
index 3259c74cb9..c05cdcdfda 100644
--- a/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs
+++ b/dotnet/src/AutoGen.Core/Agent/MiddlewareAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs b/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs
index 5838aaba39..cdef8337e5 100644
--- a/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs
+++ b/dotnet/src/AutoGen.Core/Agent/MiddlewareStreamingAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs b/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs
index 9f02aa4178..c4d29ea1f0 100644
--- a/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs
+++ b/dotnet/src/AutoGen.Core/Extension/AgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs b/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs
index 5987ac3bd8..2223cf7ea5 100644
--- a/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs
+++ b/dotnet/src/AutoGen.Core/Extension/GroupChatExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs b/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs
index f9c39925a9..fc31fda6e1 100644
--- a/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs
+++ b/dotnet/src/AutoGen.Core/Extension/MessageExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs b/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs
index 93143faa52..dd77ce6736 100644
--- a/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs
+++ b/dotnet/src/AutoGen.Core/Extension/MiddlewareExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs b/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs
index d813bed0d1..2de39a517e 100644
--- a/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs
+++ b/dotnet/src/AutoGen.Core/Extension/PrintMessageMiddlewareExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs b/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs
index 11a915cac5..4fe90755f5 100644
--- a/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs
+++ b/dotnet/src/AutoGen.Core/Extension/StreamingMiddlewareExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs b/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs
index cc344d83f4..ab73e3c308 100644
--- a/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs
+++ b/dotnet/src/AutoGen.Core/Function/FunctionAttribute.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/GroupChat/Graph.cs b/dotnet/src/AutoGen.Core/GroupChat/Graph.cs
index 0cc807b29b..71eea7f3d0 100644
--- a/dotnet/src/AutoGen.Core/GroupChat/Graph.cs
+++ b/dotnet/src/AutoGen.Core/GroupChat/Graph.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs b/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs
index 84f55fad2b..2c42065d82 100644
--- a/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs
+++ b/dotnet/src/AutoGen.Core/GroupChat/GroupChat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs b/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs
index 7c1ae9f95c..84ad8979d0 100644
--- a/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs
+++ b/dotnet/src/AutoGen.Core/GroupChat/IGroupChat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs b/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs
index 62347cc13e..4a842d8ecc 100644
--- a/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs
+++ b/dotnet/src/AutoGen.Core/GroupChat/RoundRobinGroupChat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/ILLMConfig.cs b/dotnet/src/AutoGen.Core/ILLMConfig.cs
index c865bdfaa9..cb7bc88fc8 100644
--- a/dotnet/src/AutoGen.Core/ILLMConfig.cs
+++ b/dotnet/src/AutoGen.Core/ILLMConfig.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs b/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs
index 9e50c96e4e..655d065a22 100644
--- a/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/AggregateMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/IMessage.cs b/dotnet/src/AutoGen.Core/Message/IMessage.cs
index 809d83db51..fe0b62b38f 100644
--- a/dotnet/src/AutoGen.Core/Message/IMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/IMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/ImageMessage.cs b/dotnet/src/AutoGen.Core/Message/ImageMessage.cs
index 4f55fdbb3e..5f4c877b4d 100644
--- a/dotnet/src/AutoGen.Core/Message/ImageMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/ImageMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/Message.cs b/dotnet/src/AutoGen.Core/Message/Message.cs
index ea091b0b7b..6c009720af 100644
--- a/dotnet/src/AutoGen.Core/Message/Message.cs
+++ b/dotnet/src/AutoGen.Core/Message/Message.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs b/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs
index f5e16899bb..fb764f7d68 100644
--- a/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs
+++ b/dotnet/src/AutoGen.Core/Message/MessageEnvelope.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs b/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs
index a2269ac56a..87aeb05df6 100644
--- a/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/MultiModalMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/Role.cs b/dotnet/src/AutoGen.Core/Message/Role.cs
index 107b543f44..8c15f1b11d 100644
--- a/dotnet/src/AutoGen.Core/Message/Role.cs
+++ b/dotnet/src/AutoGen.Core/Message/Role.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/TextMessage.cs b/dotnet/src/AutoGen.Core/Message/TextMessage.cs
index 2a6759ede4..616b7699ee 100644
--- a/dotnet/src/AutoGen.Core/Message/TextMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/TextMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs b/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs
index 3f91773dbf..1faee9f357 100644
--- a/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/ToolCallAggregateMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs b/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs
index 846c0ea08d..4ce66becf9 100644
--- a/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/ToolCallMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs b/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs
index f5882e64f5..c3b9d9e16a 100644
--- a/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs
+++ b/dotnet/src/AutoGen.Core/Message/ToolCallResultMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs
index bac1cdccff..5a61ad50d2 100644
--- a/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs
+++ b/dotnet/src/AutoGen.Core/Middleware/DelegateMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs
index 720327153e..d2fd4f5be5 100644
--- a/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs
+++ b/dotnet/src/AutoGen.Core/Middleware/FunctionCallMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs
index b40c87f57e..a49faa54ce 100644
--- a/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs
+++ b/dotnet/src/AutoGen.Core/Middleware/IMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs
index 5f67f2b0c0..4a0e47e78d 100644
--- a/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs
+++ b/dotnet/src/AutoGen.Core/Middleware/IStreamingMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs b/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs
index 3d18d0defe..915a1d0b46 100644
--- a/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs
+++ b/dotnet/src/AutoGen.Core/Middleware/MiddlewareContext.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs b/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs
index a3a13b1edf..38ba0ed562 100644
--- a/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs
+++ b/dotnet/src/AutoGen.Core/Middleware/PrintMessageMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs
index fb43ea6c11..383247fcdb 100644
--- a/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs
+++ b/dotnet/src/AutoGen.Core/Orchestrator/IOrchestrator.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs
index 717da1b00e..014b42a26e 100644
--- a/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs
+++ b/dotnet/src/AutoGen.Core/Orchestrator/RolePlayOrchestrator.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs
index 8afcbeb00e..44e288a38f 100644
--- a/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs
+++ b/dotnet/src/AutoGen.Core/Orchestrator/RoundRobinOrchestrator.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs b/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs
index ba75a77729..be9239545d 100644
--- a/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs
+++ b/dotnet/src/AutoGen.Core/Orchestrator/WorkflowOrchestrator.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs
index a735b567d0..63e01b015e 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveFunction.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs
index ba3e98c657..02b47d0263 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveKernelBuilder.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs
index f10102b81c..faf06e975e 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/DotnetInteractiveStdioKernelConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs b/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs
index 7bfd07e668..4300e1cd13 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/Extension/AgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs b/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs
index f1a7b8cbfb..35a011f346 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/Extension/KernelExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs b/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs
index ab825dadeb..1bd2096af7 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/Extension/MessageExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs b/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs b/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs
index 7b4f17e9d7..c33e516588 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/InProccessDotnetInteractiveKernelBuilder.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs b/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs
index 0c6fb947b3..068703cb3b 100644
--- a/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs
+++ b/dotnet/src/AutoGen.DotnetInteractive/InteractiveService.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs
index 9e3c67a2da..40f45cacaa 100644
--- a/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs
+++ b/dotnet/src/AutoGen.Gemini/Extension/FunctionContractExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs b/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs
index ccaa4313bb..79ca8ab484 100644
--- a/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs
+++ b/dotnet/src/AutoGen.Gemini/GeminiChatAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs b/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs
index 6792866722..ef3effeece 100644
--- a/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs
+++ b/dotnet/src/AutoGen.Gemini/GoogleGeminiClient.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/IGeminiClient.cs b/dotnet/src/AutoGen.Gemini/IGeminiClient.cs
index 0bc8e805e0..0f4501a48a 100644
--- a/dotnet/src/AutoGen.Gemini/IGeminiClient.cs
+++ b/dotnet/src/AutoGen.Gemini/IGeminiClient.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs b/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs
index 157c21484b..5c89394b4b 100644
--- a/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs
+++ b/dotnet/src/AutoGen.Gemini/Middleware/GeminiAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs b/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs
index 9e138319e4..3bef30572d 100644
--- a/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs
+++ b/dotnet/src/AutoGen.Gemini/Middleware/GeminiMessageConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs b/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs
index 1ca669afbe..b10cf620a8 100644
--- a/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs
+++ b/dotnet/src/AutoGen.Gemini/VertexGeminiClient.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs b/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs
+++ b/dotnet/src/AutoGen.LMStudio/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs b/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs
index fe1651deb2..f135c3a96f 100644
--- a/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs
+++ b/dotnet/src/AutoGen.LMStudio/LMStudioAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs b/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs
index 5b5606f0bf..00b424b07f 100644
--- a/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs
+++ b/dotnet/src/AutoGen.LMStudio/LMStudioConfig.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs b/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs
index 2c81218032..8fb9f4bbdb 100644
--- a/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs
+++ b/dotnet/src/AutoGen.Mistral/Agent/MistralClientAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs b/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs
index 230030575b..78c90dce0c 100644
--- a/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs
+++ b/dotnet/src/AutoGen.Mistral/Converters/JsonPropertyNameEnumConverter.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs
index 8910438817..62c35e8b73 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionRequest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs
index 5747af23bb..2c27346de3 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/ChatCompletionResponse.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs b/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs
index f231760f33..c901da7939 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/ChatMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs b/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs
index aa6b9f6290..865abbe4cc 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/Choice.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Error.cs b/dotnet/src/AutoGen.Mistral/DTOs/Error.cs
index c915ac24a5..53e4d0cef6 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/Error.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/Error.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs b/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs
index c2ca4b8068..f996b7c258 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/ErrorResponse.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs b/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs
index c0d439bcbb..44e5e8fadb 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/FunctionDefinition.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Model.cs b/dotnet/src/AutoGen.Mistral/DTOs/Model.cs
index 0a6ab09434..104550cb89 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/Model.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/Model.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs b/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs
index 5410bb76eb..ac68cafef9 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/ResponseFormat.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs b/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs
index 7881f43dc5..b9bc45a370 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/Tool.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs b/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs
index 95c61ec9c5..8d9dce8cf6 100644
--- a/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs
+++ b/dotnet/src/AutoGen.Mistral/DTOs/Usage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs
index 0895037962..d8311a7f5a 100644
--- a/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs
+++ b/dotnet/src/AutoGen.Mistral/Extension/FunctionContractExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs b/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs
index 62d83ff4e6..4535405424 100644
--- a/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs
+++ b/dotnet/src/AutoGen.Mistral/Extension/MistralAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs b/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs
index 16672d764c..748405cfca 100644
--- a/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs
+++ b/dotnet/src/AutoGen.Mistral/Middleware/MistralChatMessageConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs b/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs
index 38ae5b1f85..38ccf7663b 100644
--- a/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs
+++ b/dotnet/src/AutoGen.Mistral/MistralAIModelID.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Mistral/MistralClient.cs b/dotnet/src/AutoGen.Mistral/MistralClient.cs
index d4c3331845..682018e04a 100644
--- a/dotnet/src/AutoGen.Mistral/MistralClient.cs
+++ b/dotnet/src/AutoGen.Mistral/MistralClient.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs b/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs
index f4b487322a..b1b291cbf4 100644
--- a/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs
+++ b/dotnet/src/AutoGen.Ollama/Agent/OllamaAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs b/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs
index 3d2d2a62f4..ca4cf313ad 100644
--- a/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs
+++ b/dotnet/src/AutoGen.Ollama/DTOs/ChatRequest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs
index b4d5e40c9c..c26220ac33 100644
--- a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs
+++ b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponse.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs
index c3904c686c..b5d256f5f2 100644
--- a/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs
+++ b/dotnet/src/AutoGen.Ollama/DTOs/ChatResponseUpdate.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/DTOs/Message.cs b/dotnet/src/AutoGen.Ollama/DTOs/Message.cs
index 9f0159b26a..ceeb428952 100644
--- a/dotnet/src/AutoGen.Ollama/DTOs/Message.cs
+++ b/dotnet/src/AutoGen.Ollama/DTOs/Message.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs b/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs
index 9c9a85e846..5f557da6fc 100644
--- a/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs
+++ b/dotnet/src/AutoGen.Ollama/DTOs/ModelReplyOptions.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs b/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs
index 70b73d9216..9b982ce2af 100644
--- a/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs
+++ b/dotnet/src/AutoGen.Ollama/DTOs/OllamaReplyOptions.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs b/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs
index c676ff1964..eee514afb6 100644
--- a/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs
+++ b/dotnet/src/AutoGen.Ollama/Embeddings/ITextEmbeddingService.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs b/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs
index 00542c84c9..11f8375277 100644
--- a/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs
+++ b/dotnet/src/AutoGen.Ollama/Embeddings/OllamaTextEmbeddingService.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs
index a2df3186d8..3f22fdce04 100644
--- a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs
+++ b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsRequest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs
index 8085a89dcd..bd5e834af1 100644
--- a/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs
+++ b/dotnet/src/AutoGen.Ollama/Embeddings/TextEmbeddingsResponse.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs b/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs
index c64bbe6f82..950e30de07 100644
--- a/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs
+++ b/dotnet/src/AutoGen.Ollama/Extension/OllamaAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs b/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs
index 98e27d2fe2..2608e23315 100644
--- a/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs
+++ b/dotnet/src/AutoGen.Ollama/Middlewares/OllamaMessageConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.Ollama/OllamaConsts.cs b/dotnet/src/AutoGen.Ollama/OllamaConsts.cs
index 07f8fde7df..8a764b65a0 100644
--- a/dotnet/src/AutoGen.Ollama/OllamaConsts.cs
+++ b/dotnet/src/AutoGen.Ollama/OllamaConsts.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs b/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs
index 479d1a5d68..8d005c46f9 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/Agent/GPTAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs b/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs
index c2d5a93ddb..042773c047 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/Agent/OpenAIChatAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs b/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs
index 8fd7c88794..eb9d2170a0 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/AzureOpenAIConfig.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs b/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs
index 17d3049c71..2f81643582 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/Extension/FunctionContractExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs b/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs
index c269e49ede..655376336e 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/Extension/MessageExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs b/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs
index bfda288354..76e6be455e 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/Extension/OpenAIAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs b/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs b/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs
index 3f169f697f..9baaa9eaa2 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/Middleware/OpenAIChatRequestMessageConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs b/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs
index 262eceaa98..f96bcc6392 100644
--- a/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs
+++ b/dotnet/src/AutoGen.OpenAI.V1/OpenAIConfig.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs b/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs
index 4cc73fde63..5599c877b7 100644
--- a/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/Extension/KernelExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs b/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs
index 84b3af76b8..ebfafc31ea 100644
--- a/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/Extension/SemanticKernelAgentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs b/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs b/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs
index e94f27e90d..551bf4f6ff 100644
--- a/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/Middleware/KernelPluginMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs b/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs
index e3b08e26ce..b898348dde 100644
--- a/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/Middleware/SemanticKernelChatMessageContentConnector.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs
index 549edb7740..80fbfeea94 100644
--- a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs
index 69c477550f..58fd8d4284 100644
--- a/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs
+++ b/dotnet/src/AutoGen.SemanticKernel/SemanticKernelChatCompletionAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs b/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs
index 671ce10f5d..ef5b71654c 100644
--- a/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs
+++ b/dotnet/src/AutoGen.SourceGenerator/DocumentCommentExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs b/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs
index 566f7b7a2b..cc62bb626b 100644
--- a/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs
+++ b/dotnet/src/AutoGen.SourceGenerator/FunctionCallGenerator.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs b/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs
index 0870a46fa8..a688d2e855 100644
--- a/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs
+++ b/dotnet/src/AutoGen.SourceGenerator/FunctionExtension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs b/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs
index f668eb7785..1f3091a72c 100644
--- a/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs
+++ b/dotnet/src/AutoGen.SourceGenerator/SourceGeneratorFunctionContract.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/Extension.cs b/dotnet/src/AutoGen.WebAPI/Extension.cs
index db3f37602e..456cd0ba77 100644
--- a/dotnet/src/AutoGen.WebAPI/Extension.cs
+++ b/dotnet/src/AutoGen.WebAPI/Extension.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs
index c008501f91..8615c77735 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/Converter/OpenAIMessageConverter.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs
index 47b02b8aec..f3b145224b 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIAssistantMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs
index 2f84c19e50..0f6c613ffb 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletion.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs
index 1d15889d0b..ff36a9ecec 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionChoice.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs
index b28cb5eadb..e072439dd6 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs
index 167a72eed2..ca1962f0a0 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionOption.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs
index 4b0f406ca6..92fa79fb0e 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIChatCompletionUsage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs
index cab906e7f7..c0d1b85cee 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIImageUrlObject.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs
index 90b21f0de2..cbdb9eb1a3 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs
index 34d699e823..03c0e619c2 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIStreamOptions.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs
index 3ace747741..7e10406ded 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAISystemMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs
index ed761e74ea..1ca4aa1dd8 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolCallObject.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs
index 03bf6e9f37..39d1731ecd 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIToolMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs
index 895b252ab3..8f4c70bcb2 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserImageContent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs
index f594b557b0..36841b25de 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs
index 3809b488ea..fc99d80370 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMessageItem.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs
index 033d5d82f0..a2a8e789cf 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserMultiModalMessage.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs
index f8b030d352..a8a8d5c973 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/DTO/OpenAIUserTextContent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs b/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs
index c2e9f22d24..80c4a2d057 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAI/Service/OpenAIChatCompletionService.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs b/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs
index 182183eeb1..a65b2b0947 100644
--- a/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs
+++ b/dotnet/src/AutoGen.WebAPI/OpenAIChatCompletionMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/API/LLMConfigAPI.cs b/dotnet/src/AutoGen/API/LLMConfigAPI.cs
index b59212ec44..22fc4a6669 100644
--- a/dotnet/src/AutoGen/API/LLMConfigAPI.cs
+++ b/dotnet/src/AutoGen/API/LLMConfigAPI.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/Agent/AssistantAgent.cs b/dotnet/src/AutoGen/Agent/AssistantAgent.cs
index d152b87a42..67e3f68cff 100644
--- a/dotnet/src/AutoGen/Agent/AssistantAgent.cs
+++ b/dotnet/src/AutoGen/Agent/AssistantAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/Agent/ConversableAgent.cs b/dotnet/src/AutoGen/Agent/ConversableAgent.cs
index f142fa8b78..2fdec0a3fa 100644
--- a/dotnet/src/AutoGen/Agent/ConversableAgent.cs
+++ b/dotnet/src/AutoGen/Agent/ConversableAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/Agent/UserProxyAgent.cs b/dotnet/src/AutoGen/Agent/UserProxyAgent.cs
index 5cb1b487ee..5f193dc2be 100644
--- a/dotnet/src/AutoGen/Agent/UserProxyAgent.cs
+++ b/dotnet/src/AutoGen/Agent/UserProxyAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/ConversableAgentConfig.cs b/dotnet/src/AutoGen/ConversableAgentConfig.cs
index d8476fcb0a..af21abd300 100644
--- a/dotnet/src/AutoGen/ConversableAgentConfig.cs
+++ b/dotnet/src/AutoGen/ConversableAgentConfig.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/GlobalUsing.cs b/dotnet/src/AutoGen/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/src/AutoGen/GlobalUsing.cs
+++ b/dotnet/src/AutoGen/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs b/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs
index 2cc1d42daf..8b8ca497eb 100644
--- a/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs
+++ b/dotnet/src/AutoGen/Middleware/HumanInputMiddleware.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs
index a94d69ebda..833fd3ab22 100644
--- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs
+++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientAgentTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs
index 502fc74938..d8d7ac714d 100644
--- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs
+++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicClientTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs
index c3ed6e3b93..4eab81c131 100644
--- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs
+++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestFunctionCalls.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs
index 77dc4f3302..826586674e 100644
--- a/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs
+++ b/dotnet/test/AutoGen.Anthropic.Tests/AnthropicTestUtils.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs b/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs
index 76b06c40e4..edaa53765d 100644
--- a/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs
+++ b/dotnet/test/AutoGen.AotCompatibility.Tests/Program.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs
index 76cca508e9..12cc2972b5 100644
--- a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs
+++ b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatCompletionClientAgentTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs
index 27ca3c5e89..82fbcc1f2b 100644
--- a/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs
+++ b/dotnet/test/AutoGen.AzureAIInference.Tests/ChatRequestMessageTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs
index 5cfe2454c0..83ab86caff 100644
--- a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs
+++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveServiceTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs
index 97a52b8f15..99c976cc38 100644
--- a/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs
+++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/DotnetInteractiveStdioKernelConnectorTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs
index 6afa2e850c..983ae5fc1f 100644
--- a/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs
+++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/InProcessDotnetInteractiveKernelBuilderTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs b/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs
index 63d998ea7c..e9c34077dc 100644
--- a/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs
+++ b/dotnet/test/AutoGen.DotnetInteractive.Tests/MessageExtensionTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs b/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs
index 75786a75ec..ceefd53eac 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/FunctionContractExtensionTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/Functions.cs b/dotnet/test/AutoGen.Gemini.Tests/Functions.cs
index 0aee629f24..7cf2dfcff9 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/Functions.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/Functions.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs b/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs
index d8945a289e..685cd7e43f 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/GeminiAgentTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs b/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs
index 42055fb342..1f9cbb2561 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/GeminiMessageTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs b/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs
index 82d6683852..be51c2fc67 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/GoogleGeminiClientTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs b/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs
index cfbd8e8ad0..461b2bcde6 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/SampleTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs b/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs
index eef0bbc053..abb09fb17a 100644
--- a/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs
+++ b/dotnet/test/AutoGen.Gemini.Tests/VertexGeminiClientTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs b/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs
index cfced17543..5995212a16 100644
--- a/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs
+++ b/dotnet/test/AutoGen.Mistral.Tests/MistralClientAgentTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs b/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs
index dda64d88b7..8d8a93e192 100644
--- a/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs
+++ b/dotnet/test/AutoGen.Mistral.Tests/MistralClientTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs b/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs
index 662d5648bc..50d212a74c 100644
--- a/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs
+++ b/dotnet/test/AutoGen.Ollama.Tests/OllamaAgentTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs b/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs
index cde881272d..03d7e2f89f 100644
--- a/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs
+++ b/dotnet/test/AutoGen.Ollama.Tests/OllamaMessageTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs b/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs
index f753832f38..422dad16f1 100644
--- a/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs
+++ b/dotnet/test/AutoGen.Ollama.Tests/OllamaTextEmbeddingServiceTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs
+++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs
index ce2bd0754f..dee2e46cb9 100644
--- a/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs
+++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/MathClassTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs
index de0842b962..8066bd0de6 100644
--- a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs
+++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIChatAgentTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs
index 6dd345e4aa..9d0f7c595d 100644
--- a/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs
+++ b/dotnet/test/AutoGen.OpenAI.V1.Tests/OpenAIMessageTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs
index e8354ad082..ec45b7c50b 100644
--- a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs
+++ b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionExtensionTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs
index 5509bd3030..ae0010cccd 100644
--- a/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs
+++ b/dotnet/test/AutoGen.SemanticKernel.Tests/KernelFunctionMiddlewareTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs b/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs
index cb722ea268..060843f9f9 100644
--- a/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs
+++ b/dotnet/test/AutoGen.SemanticKernel.Tests/SemanticKernelAgentTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs
index adda352b11..dc2a1130b3 100644
--- a/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs
+++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FilescopeNamespaceFunctionExample.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs
index 4d28e51ab3..3c2603458f 100644
--- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs
+++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateEncodingTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs
index 8bc1401ac1..3d0ffa0d84 100644
--- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs
+++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionCallTemplateTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs
index 6c0c79d3e0..bd233a5d2b 100644
--- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs
+++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExample.test.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs
index 35ca201c16..6cd5205b0b 100644
--- a/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs
+++ b/dotnet/test/AutoGen.SourceGenerator.Tests/FunctionExamples.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs b/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs
index 92f77021d8..a7252a1d17 100644
--- a/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs
+++ b/dotnet/test/AutoGen.SourceGenerator.Tests/TopLevelStatementFunctionExample.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs b/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs
index 55f8e2db5c..4b5058f049 100644
--- a/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs
+++ b/dotnet/test/AutoGen.Test.Share/Attribute/EnvironmentSpecificFactAttribute.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs b/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs
index 0cf39d2b75..dd8150b71a 100644
--- a/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs
+++ b/dotnet/test/AutoGen.Test.Share/Attribute/OpenAIFact.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Test.Share/EchoAgent.cs b/dotnet/test/AutoGen.Test.Share/EchoAgent.cs
index 08df9100ae..4279e8d1cc 100644
--- a/dotnet/test/AutoGen.Test.Share/EchoAgent.cs
+++ b/dotnet/test/AutoGen.Test.Share/EchoAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/BasicSampleTest.cs b/dotnet/test/AutoGen.Tests/BasicSampleTest.cs
index 472c601866..1d2101b517 100644
--- a/dotnet/test/AutoGen.Tests/BasicSampleTest.cs
+++ b/dotnet/test/AutoGen.Tests/BasicSampleTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/GlobalUsing.cs b/dotnet/test/AutoGen.Tests/GlobalUsing.cs
index 78d95cf0fe..213835ff4e 100644
--- a/dotnet/test/AutoGen.Tests/GlobalUsing.cs
+++ b/dotnet/test/AutoGen.Tests/GlobalUsing.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs b/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs
index 818ddb71b9..c854bacf20 100644
--- a/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs
+++ b/dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs b/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs
index a5eefd4390..ac4e50bf9c 100644
--- a/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs
+++ b/dotnet/test/AutoGen.Tests/GroupChat/GroupChatTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/ImageMessageTests.cs b/dotnet/test/AutoGen.Tests/ImageMessageTests.cs
index fbf1188f19..81c7c9846d 100644
--- a/dotnet/test/AutoGen.Tests/ImageMessageTests.cs
+++ b/dotnet/test/AutoGen.Tests/ImageMessageTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs b/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs
index 67f6dea870..72d7a39bcb 100644
--- a/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs
+++ b/dotnet/test/AutoGen.Tests/MiddlewareAgentTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/MiddlewareTest.cs b/dotnet/test/AutoGen.Tests/MiddlewareTest.cs
index 5040382030..8c8229962b 100644
--- a/dotnet/test/AutoGen.Tests/MiddlewareTest.cs
+++ b/dotnet/test/AutoGen.Tests/MiddlewareTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs b/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs
index 243554187b..6bc4a6f8aa 100644
--- a/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs
+++ b/dotnet/test/AutoGen.Tests/Orchestrator/RolePlayOrchestratorTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs b/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs
index 9d23b1ee21..5e7de14711 100644
--- a/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs
+++ b/dotnet/test/AutoGen.Tests/Orchestrator/RoundRobinOrchestratorTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs b/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs
index 57b2339f61..41338c20af 100644
--- a/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs
+++ b/dotnet/test/AutoGen.Tests/Orchestrator/WorkflowOrchestratorTests.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/SingleAgentTest.cs b/dotnet/test/AutoGen.Tests/SingleAgentTest.cs
index 1ae3e7657b..0ee6842548 100644
--- a/dotnet/test/AutoGen.Tests/SingleAgentTest.cs
+++ b/dotnet/test/AutoGen.Tests/SingleAgentTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/TwoAgentTest.cs b/dotnet/test/AutoGen.Tests/TwoAgentTest.cs
index 233c209fa0..b8cf282690 100644
--- a/dotnet/test/AutoGen.Tests/TwoAgentTest.cs
+++ b/dotnet/test/AutoGen.Tests/TwoAgentTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.Tests/WorkflowTest.cs b/dotnet/test/AutoGen.Tests/WorkflowTest.cs
index 743166da11..c1f44ef1e8 100644
--- a/dotnet/test/AutoGen.Tests/WorkflowTest.cs
+++ b/dotnet/test/AutoGen.Tests/WorkflowTest.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs b/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs
index fb9c58fe3d..7db2dd07ec 100644
--- a/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs
+++ b/dotnet/test/AutoGen.WebAPI.Tests/EchoAgent.cs
@@ -1,6 +1,6 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs b/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs
index 94512873e4..cb3b47c380 100644
--- a/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs
+++ b/dotnet/test/AutoGen.WebAPI.Tests/OpenAIChatCompletionMiddlewareTests.cs
@@ -1,12 +1,12 @@
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 - 2024, Owners of https://github.com/autogenhub
// SPDX-License-Identifier: Apache-2.0
-// Contributions to this project, i.e., https://github.com/autogenhub/autogen,
+// Contributions to this project, i.e., https://github.com/ag2labs/ag2,
// are licensed under the Apache License, Version 2.0 (Apache-2.0).
// Portions derived from https://github.com/microsoft/autogen under the MIT License.
// SPDX-License-Identifier: MIT
diff --git a/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md
index f9d72dbd8d..bb6efb4dcb 100644
--- a/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md
+++ b/dotnet/website/articles/AutoGen.Gemini/Chat-with-google-gemini.md
@@ -3,7 +3,7 @@ This example shows how to use @AutoGen.Gemini.GeminiChatAgent to connect to Goog
To run this example, you need to have a Google AI Gemini API key. For how to get a Google Gemini API key, please refer to [Google Gemini](https://gemini.google.com/).
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Google_Gemini.cs)
> [!NOTE]
> What's the difference between Google AI Gemini and Vertex AI Gemini?
diff --git a/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md
index aa85d54101..8cea4e9529 100644
--- a/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md
+++ b/dotnet/website/articles/AutoGen.Gemini/Chat-with-vertex-gemini.md
@@ -3,7 +3,7 @@ This example shows how to use @AutoGen.Gemini.GeminiChatAgent to connect to Vert
To run this example, you need to have a project on Google Cloud with access to Vertex AI API. For more information please refer to [Google Vertex AI](https://cloud.google.com/vertex-ai/docs).
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Chat_With_Vertex_Gemini.cs)
> [!NOTE]
> What's the difference between Google AI Gemini and Vertex AI Gemini?
diff --git a/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md
index f2f606d724..2ff0a94af8 100644
--- a/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md
+++ b/dotnet/website/articles/AutoGen.Gemini/Function-call-with-gemini.md
@@ -4,7 +4,7 @@ To run this example, you need to have a project on Google Cloud with access to V
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Function_Call_With_Gemini.cs)
### Step 1: Install AutoGen.Gemini and AutoGen.SourceGenerator
diff --git a/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md b/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md
index 928c32c802..35899e1233 100644
--- a/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md
+++ b/dotnet/website/articles/AutoGen.Gemini/Image-chat-with-gemini.md
@@ -4,7 +4,7 @@ To run this example, you need to have a project on Google Cloud with access to V
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.Gemini.Sample/Image_Chat_With_Vertex_Gemini.cs)
### Step 1: Install AutoGen.Gemini
diff --git a/dotnet/website/articles/AutoGen.Gemini/Overview.md b/dotnet/website/articles/AutoGen.Gemini/Overview.md
index 4dcc3c89a6..f5b1096388 100644
--- a/dotnet/website/articles/AutoGen.Gemini/Overview.md
+++ b/dotnet/website/articles/AutoGen.Gemini/Overview.md
@@ -9,4 +9,4 @@ AutoGen.Gemini also provides the following middleware:
## Examples
-You can find more examples under the [gemini sample project](https://github.com/autogenhub/autogen/tree/main/dotnet/sample/AutoGen.Gemini.Sample)
\ No newline at end of file
+You can find more examples under the [gemini sample project](https://github.com/ag2labs/ag2/tree/main/dotnet/sample/AutoGen.Gemini.Sample)
\ No newline at end of file
diff --git a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md
index 02042085bd..0148cd339c 100644
--- a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md
+++ b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llama.md
@@ -3,7 +3,7 @@ This example shows how to use @AutoGen.Ollama.OllamaAgent to connect to Ollama s
To run this example, you need to have an Ollama server running aside and have `llama3:latest` model installed. For how to setup an Ollama server, please refer to [Ollama](https://ollama.com/).
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaMA.cs)
### Step 1: Install AutoGen.Ollama
diff --git a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md
index b7a736af21..0ce6512b67 100644
--- a/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md
+++ b/dotnet/website/articles/AutoGen.Ollama/Chat-with-llava.md
@@ -3,7 +3,7 @@ This sample shows how to use @AutoGen.Ollama.OllamaAgent to chat with LLaVA mode
To run this example, you need to have an Ollama server running aside and have `llava:latest` model installed. For how to setup an Ollama server, please refer to [Ollama](https://ollama.com/).
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.Ollama.Sample/Chat_With_LLaVA.cs)
### Step 1: Install AutoGen.Ollama
diff --git a/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md b/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md
index 2c747bf2a8..635aecdff7 100644
--- a/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md
+++ b/dotnet/website/articles/AutoGen.SemanticKernel/SemanticKernelChatAgent-simple-chat.md
@@ -3,7 +3,7 @@
The following step-by-step example shows how to create an @AutoGen.SemanticKernel.SemanticKernelChatCompletionAgent and chat with it:
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs).
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs).
### Step 1: add using statement
[!code-csharp[](../../../sample/AutoGen.SemanticKernel.Sample/Create_Semantic_Kernel_Chat_Agent.cs?name=Using)]
diff --git a/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md b/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md
index fec27042a1..0a112952a3 100644
--- a/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md
+++ b/dotnet/website/articles/AutoGen.SemanticKernel/Use-kernel-plugin-in-other-agents.md
@@ -3,7 +3,7 @@ In semantic kernel, a kernel plugin is a collection of kernel functions that can
`AutoGen.SemanticKernel` provides a middleware called @AutoGen.SemanticKernel.KernelPluginMiddleware that allows you to use semantic kernel plugins in other AutoGen agents like @AutoGen.OpenAI.OpenAIChatAgent. The following example shows how to define a simple plugin with a single `GetWeather` function and use it in @AutoGen.OpenAI.OpenAIChatAgent.
> [!NOTE]
-> You can find the complete sample code [here](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs)
+> You can find the complete sample code [here](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs)
### Step 1: add using statement
[!code-csharp[](../../../sample/AutoGen.SemanticKernel.Sample/Use_Kernel_Functions_With_Other_Agent.cs?name=Using)]
diff --git a/dotnet/website/articles/Function-call-with-ollama-and-litellm.md b/dotnet/website/articles/Function-call-with-ollama-and-litellm.md
index f95408c4a5..22ffd69429 100644
--- a/dotnet/website/articles/Function-call-with-ollama-and-litellm.md
+++ b/dotnet/website/articles/Function-call-with-ollama-and-litellm.md
@@ -1,6 +1,6 @@
This example shows how to use function call with local LLM models where [Ollama](https://ollama.com/) as local model provider and [LiteLLM](https://docs.litellm.ai/docs/) proxy server which provides an openai-api compatible interface.
-[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs)
+[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Tool_Call_With_Ollama_And_LiteLLM.cs)
To run this example, the following prerequisites are required:
- Install [Ollama](https://ollama.com/) and [LiteLLM](https://docs.litellm.ai/docs/) on your local machine.
diff --git a/dotnet/website/articles/MistralChatAgent-count-token-usage.md b/dotnet/website/articles/MistralChatAgent-count-token-usage.md
index da19be133e..3c9fb8cf06 100644
--- a/dotnet/website/articles/MistralChatAgent-count-token-usage.md
+++ b/dotnet/website/articles/MistralChatAgent-count-token-usage.md
@@ -4,7 +4,7 @@ The following example shows how to create a `MistralAITokenCounterMiddleware` @A
To collect the token usage for the entire chat session, one easy solution is simply collect all the responses from agent and sum up the token usage for each response. To collect all the agent responses, we can create a middleware which simply saves all responses to a list and register it with the agent. To get the token usage information for each response, because in the example we are using @AutoGen.Mistral.MistralClientAgent, we can simply get the token usage from the response object.
> [!NOTE]
-> You can find the complete example in the [Example13_OpenAIAgent_JsonMode](https://github.com/autogenhub/autogen/tree/main/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs).
+> You can find the complete example in the [Example13_OpenAIAgent_JsonMode](https://github.com/ag2labs/ag2/tree/main/dotnet/sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs).
- Step 1: Adding using statement
[!code-csharp[](../../sample/AutoGen.BasicSamples/Example14_MistralClientAgent_TokenCount.cs?name=using_statements)]
diff --git a/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md b/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md
index fdf8bb86ea..c53e837dfa 100644
--- a/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md
+++ b/dotnet/website/articles/OpenAIChatAgent-connect-to-third-party-api.md
@@ -1,6 +1,6 @@
The following example shows how to connect to third-party OpenAI API using @AutoGen.OpenAI.OpenAIChatAgent.
-[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs)
+[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Connect_To_Ollama.cs)
## Overview
A lot of LLM applications/platforms support spinning up a chat server that is compatible with OpenAI API, such as LM Studio, Ollama, Mistral etc. This means that you can connect to these servers using the @AutoGen.OpenAI.OpenAIChatAgent.
diff --git a/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md b/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md
index 154fec5c2a..d6d5143f8e 100644
--- a/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md
+++ b/dotnet/website/articles/OpenAIChatAgent-use-json-mode.md
@@ -1,6 +1,6 @@
The following example shows how to enable JSON mode in @AutoGen.OpenAI.OpenAIChatAgent.
-[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs)
+[![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.OpenAI.Sample/Use_Json_Mode.cs)
## What is JSON mode?
JSON mode is a new feature in OpenAI which allows you to instruct model to always respond with a valid JSON object. This is useful when you want to constrain the model output to JSON format only.
diff --git a/dotnet/website/articles/Roundrobin-chat.md b/dotnet/website/articles/Roundrobin-chat.md
index bc1b451324..4bf58f6dec 100644
--- a/dotnet/website/articles/Roundrobin-chat.md
+++ b/dotnet/website/articles/Roundrobin-chat.md
@@ -10,7 +10,7 @@ flowchart LR
```
> [!NOTE]
-> Complete code can be found in [Example11_Sequential_GroupChat_Example](https://github.com/autogenhub/autogen/blob/dotnet/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs);
+> Complete code can be found in [Example11_Sequential_GroupChat_Example](https://github.com/ag2labs/ag2/blob/dotnet/dotnet/sample/AutoGen.BasicSamples/Example11_Sequential_GroupChat_Example.cs);
Step 1: Add required using statements
diff --git a/dotnet/website/articles/Run-dotnet-code.md b/dotnet/website/articles/Run-dotnet-code.md
index 661dd2f0c4..32ebdec7ef 100644
--- a/dotnet/website/articles/Run-dotnet-code.md
+++ b/dotnet/website/articles/Run-dotnet-code.md
@@ -57,5 +57,5 @@ Then you can add the python kernel to the dotnet-interactive composite kernel by
## Further reading
You can refer to the following examples for running code snippet in agentic workflow:
-- Dynamic_GroupChat_Coding_Task: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSample/Example04_Dynamic_GroupChat_Coding_Task.cs)
-- Dynamic_GroupChat_Calculate_Fibonacci: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSample/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs)
+- Dynamic_GroupChat_Coding_Task: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.BasicSample/Example04_Dynamic_GroupChat_Coding_Task.cs)
+- Dynamic_GroupChat_Calculate_Fibonacci: [![](https://img.shields.io/badge/Open%20on%20Github-grey?logo=github)](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.BasicSample/Example07_Dynamic_GroupChat_Calculate_Fibonacci.cs)
diff --git a/dotnet/website/articles/getting-start.md b/dotnet/website/articles/getting-start.md
index 2e13b278f4..eb951788a3 100644
--- a/dotnet/website/articles/getting-start.md
+++ b/dotnet/website/articles/getting-start.md
@@ -1,5 +1,5 @@
### Get start with AutoGen for dotnet
-[![dotnet-ci](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/autogenhub/autogen/actions/workflows/dotnet-build.yml)
+[![dotnet-ci](https://github.com/ag2labs/ag2/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/ag2labs/ag2/actions/workflows/dotnet-build.yml)
[![Discord](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat)](https://discord.gg/pAbnFJrkgZ)
[![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core)
@@ -20,7 +20,7 @@ Then you can start with the following code snippet to create a conversable agent
### Tutorial
Getting started with AutoGen.Net by following the [tutorial](../tutorial/Chat-with-an-agent.md) series.
### Examples
-You can find more examples under the [sample project](https://github.com/autogenhub/autogen/tree/dotnet/dotnet/sample/AutoGen.BasicSamples).
+You can find more examples under the [sample project](https://github.com/ag2labs/ag2/tree/dotnet/dotnet/sample/AutoGen.BasicSamples).
### Report a bug or request a feature
-You can report a bug or request a feature by creating a new issue in the [github issue](https://github.com/autogenhub/autogen/issues) and specifying label the label "donet"
+You can report a bug or request a feature by creating a new issue in the [github issue](https://github.com/ag2labs/ag2/issues) and specifying label the label "donet"
diff --git a/dotnet/website/docfx.json b/dotnet/website/docfx.json
index e1f3badf2e..4b46c2a483 100644
--- a/dotnet/website/docfx.json
+++ b/dotnet/website/docfx.json
@@ -61,7 +61,7 @@
"_appFooter": "AutoGen for .NET",
"_appFaviconPath": "images/ag.ico",
"_gitContribute": {
- "repo": "https://github.com/autogenhub/autogen.git",
+ "repo": "https://github.com/ag2labs/ag2.git",
"branch": "dotnet"
}
},
diff --git a/dotnet/website/tutorial/Chat-with-an-agent.md b/dotnet/website/tutorial/Chat-with-an-agent.md
index 1f5c51362c..deeae3cd47 100644
--- a/dotnet/website/tutorial/Chat-with-an-agent.md
+++ b/dotnet/website/tutorial/Chat-with-an-agent.md
@@ -11,7 +11,7 @@ This tutorial shows how to generate response using an @AutoGen.Core.IAgent by ta
> - @AutoGen.Gemini.GeminiChatAgent
> [!NOTE]
-> The complete code example can be found in [Chat_With_Agent.cs](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs)
+> The complete code example can be found in [Chat_With_Agent.cs](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Chat_With_Agent.cs)
## Step 1: Install AutoGen
diff --git a/dotnet/website/tutorial/Create-agent-with-tools.md b/dotnet/website/tutorial/Create-agent-with-tools.md
index 3dea40e279..e4506fa012 100644
--- a/dotnet/website/tutorial/Create-agent-with-tools.md
+++ b/dotnet/website/tutorial/Create-agent-with-tools.md
@@ -14,7 +14,7 @@ Tools are pre-defined functions in user's project that agent can invoke. Agent c
> This tutorial uses the latest `GPT-3.5-turbo` as example.
> [!NOTE]
-> The complete code example can be found in [Use_Tools_With_Agent.cs](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs)
+> The complete code example can be found in [Use_Tools_With_Agent.cs](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Use_Tools_With_Agent.cs)
## Key Concepts
- @AutoGen.Core.FunctionContract: The contract of a function that agent can invoke. It contains the function name, description, parameters schema, and return type.
diff --git a/dotnet/website/tutorial/Image-chat-with-agent.md b/dotnet/website/tutorial/Image-chat-with-agent.md
index 11f408c0f4..928d5cc73d 100644
--- a/dotnet/website/tutorial/Image-chat-with-agent.md
+++ b/dotnet/website/tutorial/Image-chat-with-agent.md
@@ -11,7 +11,7 @@ This tutorial shows how to perform image chat with an agent using the @AutoGen.O
> In this example, we are using the gpt-4o model as the backend model for the agent.
> [!NOTE]
-> The complete code example can be found in [Image_Chat_With_Agent.cs](https://github.com/autogenhub/autogen/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs)
+> The complete code example can be found in [Image_Chat_With_Agent.cs](https://github.com/ag2labs/ag2/blob/main/dotnet/sample/AutoGen.BasicSamples/GettingStart/Image_Chat_With_Agent.cs)
## Step 1: Install AutoGen
diff --git a/notebook/JSON_mode_example.ipynb b/notebook/JSON_mode_example.ipynb
index 1a8f03f404..d56bc55bb6 100644
--- a/notebook/JSON_mode_example.ipynb
+++ b/notebook/JSON_mode_example.ipynb
@@ -15,7 +15,7 @@
"The group chat manager can perfrom some simple maths encoded into the agent descriptions on the rating values (made reliable by json mode) and direct requests deemed too coersive to the \"suspicious agent\" \n",
"\n",
"\n",
- "![agent flow](https://media.githubusercontent.com/media/autogenhub/autogen/main/notebook/friendly_and_suspicous.jpg)\n",
+ "![agent flow](https://media.githubusercontent.com/media/ag2labs/ag2/main/notebook/friendly_and_suspicous.jpg)\n",
"\n",
"\n",
"Please find documentation about this feature in OpenAI [here](https://platform.openai.com/docs/guides/text-generation/json-mode).\n",
diff --git a/notebook/agentchat_MathChat.ipynb b/notebook/agentchat_MathChat.ipynb
index 9b5b18e2f2..cef6d2a109 100644
--- a/notebook/agentchat_MathChat.ipynb
+++ b/notebook/agentchat_MathChat.ipynb
@@ -9,7 +9,7 @@
"\n",
"AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation. Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n",
"\n",
- "MathChat is an experimental conversational framework for math problem solving. In this notebook, we demonstrate how to use MathChat to solve math problems. MathChat uses the `AssistantAgent` and `MathUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `MathUserProxyAgent` implements a different auto reply mechanism corresponding to the MathChat prompts. You can find more details in the paper [An Empirical Study on Challenging Math Problem Solving with GPT-4](https://arxiv.org/abs/2306.01337) or the [blogpost](https://autogenhub.github.io/autogen/blog/2023/06/28/MathChat).\n",
+ "MathChat is an experimental conversational framework for math problem solving. In this notebook, we demonstrate how to use MathChat to solve math problems. MathChat uses the `AssistantAgent` and `MathUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `MathUserProxyAgent` implements a different auto reply mechanism corresponding to the MathChat prompts. You can find more details in the paper [An Empirical Study on Challenging Math Problem Solving with GPT-4](https://arxiv.org/abs/2306.01337) or the [blogpost](https://autogenhub.github.io/autogen/blog/2023/06/28/MathChat).\n",
"\n",
"````{=mdx}\n",
":::info Requirements\n",
diff --git a/notebook/agentchat_RetrieveChat.ipynb b/notebook/agentchat_RetrieveChat.ipynb
index 5970f1b1c0..6dbba4e16e 100644
--- a/notebook/agentchat_RetrieveChat.ipynb
+++ b/notebook/agentchat_RetrieveChat.ipynb
@@ -10,7 +10,7 @@
"AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n",
"Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n",
"\n",
- "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n",
+ "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n",
"\n",
"## Table of Contents\n",
"We'll demonstrate six examples of using RetrieveChat for code generation and question answering:\n",
diff --git a/notebook/agentchat_RetrieveChat_mongodb.ipynb b/notebook/agentchat_RetrieveChat_mongodb.ipynb
index 7574200147..19d0787243 100644
--- a/notebook/agentchat_RetrieveChat_mongodb.ipynb
+++ b/notebook/agentchat_RetrieveChat_mongodb.ipynb
@@ -10,7 +10,7 @@
"AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n",
"Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n",
"\n",
- "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n",
+ "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n",
"\n",
"## Table of Contents\n",
"We'll demonstrate six examples of using RetrieveChat for code generation and question answering:\n",
diff --git a/notebook/agentchat_RetrieveChat_pgvector.ipynb b/notebook/agentchat_RetrieveChat_pgvector.ipynb
index 17200d6690..bbf2bca5e1 100644
--- a/notebook/agentchat_RetrieveChat_pgvector.ipynb
+++ b/notebook/agentchat_RetrieveChat_pgvector.ipynb
@@ -10,7 +10,7 @@
"AutoGen offers conversable agents powered by LLM, tool or human, which can be used to perform tasks collectively via automated chat. This framework allows tool use and human participation through multi-agent conversation.\n",
"Please find documentation about this feature [here](https://autogenhub.github.io/autogen/docs/Use-Cases/agent_chat).\n",
"\n",
- "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n",
+ "RetrieveChat is a conversational system for retrieval-augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)). Essentially, `RetrieveUserProxyAgent` implement a different auto-reply mechanism corresponding to the RetrieveChat prompts.\n",
"\n",
"## Table of Contents\n",
"We'll demonstrate six examples of using RetrieveChat for code generation and question answering:\n",
diff --git a/notebook/agentchat_RetrieveChat_qdrant.ipynb b/notebook/agentchat_RetrieveChat_qdrant.ipynb
index 3a31a502da..9add9cee9b 100644
--- a/notebook/agentchat_RetrieveChat_qdrant.ipynb
+++ b/notebook/agentchat_RetrieveChat_qdrant.ipynb
@@ -9,10 +9,10 @@
"\n",
"[Qdrant](https://qdrant.tech/) is a high-performance vector search engine/database.\n",
"\n",
- "This notebook demonstrates the usage of Qdrant for RAG, based on [agentchat_RetrieveChat.ipynb](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_RetrieveChat.ipynb).\n",
+ "This notebook demonstrates the usage of Qdrant for RAG, based on [agentchat_RetrieveChat.ipynb](https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_RetrieveChat.ipynb).\n",
"\n",
"\n",
- "RetrieveChat is a conversational system for retrieve augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/autogenhub/autogen/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)).\n",
+ "RetrieveChat is a conversational system for retrieve augmented code generation and question answering. In this notebook, we demonstrate how to utilize RetrieveChat to generate code and answer questions based on customized documentations that are not present in the LLM's training dataset. RetrieveChat uses the `AssistantAgent` and `RetrieveUserProxyAgent`, which is similar to the usage of `AssistantAgent` and `UserProxyAgent` in other notebooks (e.g., [Automated Task Solving with Code Generation, Execution & Debugging](https://github.com/ag2labs/ag2/blob/main/notebook/agentchat_auto_feedback_from_code_execution.ipynb)).\n",
"\n",
"We'll demonstrate usage of RetrieveChat with Qdrant for code generation and question answering w/ human feedback.\n",
"\n",
@@ -179,7 +179,7 @@
" \"docs_path\": [\n",
" \"https://raw.githubusercontent.com/autogenhub/flaml/main/README.md\",\n",
" \"https://raw.githubusercontent.com/autogenhub/FLAML/main/website/docs/Research.md\",\n",
- " ], # change this to your own path, such as https://raw.githubusercontent.com/autogenhub/autogen/main/README.md\n",
+ " ], # change this to your own path, such as https://raw.githubusercontent.com/ag2labs/ag2/main/README.md\n",
" \"chunk_token_size\": 2000,\n",
" \"model\": config_list[0][\"model\"],\n",
" \"db_config\": {\"client\": client},\n",
@@ -276,7 +276,7 @@
"
\n",
"