diff --git a/.github/labeler.yml b/.github/labeler.yml index 7b600acc0a..5663961c58 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -21,8 +21,8 @@ documentation: workflows: - changed-files: - any-glob-to-any-file: - - dotnet/src/Microsoft.Agents.Workflows/** - - dotnet/src/Microsoft.Agents.Workflows.Declarative/** + - dotnet/src/Microsoft.Agents.AI.Workflows/** + - dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/** - dotnet/samples/GettingStarted/Workflow/** - python/packages/main/agent_framework/_workflow/** - python/samples/getting_started/workflow/** diff --git a/dotnet/agent-framework-dotnet.slnx b/dotnet/agent-framework-dotnet.slnx index a94b2d656c..3cf3ca3d2f 100644 --- a/dotnet/agent-framework-dotnet.slnx +++ b/dotnet/agent-framework-dotnet.slnx @@ -269,8 +269,8 @@ - - + + @@ -287,7 +287,7 @@ - + @@ -295,8 +295,8 @@ - - + + diff --git a/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/AgentWebChat.AgentHost.csproj b/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/AgentWebChat.AgentHost.csproj index 4b30220786..cc814aed5e 100644 --- a/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/AgentWebChat.AgentHost.csproj +++ b/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/AgentWebChat.AgentHost.csproj @@ -8,7 +8,7 @@ - + diff --git a/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/Program.cs b/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/Program.cs index ff0c8df71f..030ceafe59 100644 --- a/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/Program.cs +++ b/dotnet/samples/AgentWebChat/AgentWebChat.AgentHost/Program.cs @@ -7,7 +7,7 @@ using Microsoft.Agents.AI; using Microsoft.Agents.AI.Hosting; using Microsoft.Agents.AI.Hosting.A2A.AspNetCore; using Microsoft.Agents.AI.Runtime.Storage.CosmosDB; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; using Microsoft.Azure.Cosmos; using Microsoft.Extensions.AI; diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/CustomAgentExecutors.csproj b/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/CustomAgentExecutors.csproj index e6f5b4dd0e..4d651df293 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/CustomAgentExecutors.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/CustomAgentExecutors.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/Program.cs b/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/Program.cs index 14a21b61ff..932e8255ed 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Agents/CustomAgentExecutors/Program.cs @@ -7,8 +7,8 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Extensions.AI; namespace WorkflowCustomAgentExecutorsSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/FoundryAgent.csproj b/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/FoundryAgent.csproj index e6ac69b3d8..0b4e23b0d8 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/FoundryAgent.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/FoundryAgent.csproj @@ -14,7 +14,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/Program.cs b/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/Program.cs index 8c108e3cfe..ae3bc680e7 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Agents/FoundryAgent/Program.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Azure.AI.Agents.Persistent; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; using Microsoft.Extensions.AI; namespace WorkflowFoundryAgentSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/Program.cs b/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/Program.cs index 3b396cc274..bf758e5c29 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/Program.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; using Microsoft.Extensions.AI; namespace WorkflowAsAnAgentsSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowAsAnAgent.csproj b/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowAsAnAgent.csproj index e6f5b4dd0e..4d651df293 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowAsAnAgent.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowAsAnAgent.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowHelper.cs index 108dbea12a..b9aeb72e17 100644 --- a/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/Agents/WorkflowAsAnAgent/WorkflowHelper.cs @@ -4,8 +4,8 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Extensions.AI; namespace WorkflowAsAnAgentsSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/CheckpointAndRehydrate.csproj b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/CheckpointAndRehydrate.csproj index 3a0899eba2..967cee1d81 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/CheckpointAndRehydrate.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/CheckpointAndRehydrate.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/Program.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/Program.cs index 349047eb3c..98ac755116 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/Program.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; namespace WorkflowCheckpointAndRehydrateSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/WorkflowHelper.cs index 6e2c587d21..48ef7f38d9 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndRehydrate/WorkflowHelper.cs @@ -2,8 +2,8 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowCheckpointAndRehydrateSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/CheckpointAndResume.csproj b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/CheckpointAndResume.csproj index 3a0899eba2..967cee1d81 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/CheckpointAndResume.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/CheckpointAndResume.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/Program.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/Program.cs index 16a0eb1bf7..7828a0ece8 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/Program.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; namespace WorkflowCheckpointAndResumeSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/WorkflowHelper.cs index e87171effe..f19a105b43 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointAndResume/WorkflowHelper.cs @@ -2,8 +2,8 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowCheckpointAndResumeSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/CheckpointWithHumanInTheLoop.csproj b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/CheckpointWithHumanInTheLoop.csproj index 3a0899eba2..967cee1d81 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/CheckpointWithHumanInTheLoop.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/CheckpointWithHumanInTheLoop.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/Program.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/Program.cs index 0215fba8e9..cb16f07f5a 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/Program.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; namespace WorkflowCheckpointWithHumanInTheLoopSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs index b1fd63fef1..3ea1735284 100644 --- a/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/Checkpoint/CheckpointWithHumanInTheLoop/WorkflowHelper.cs @@ -2,8 +2,8 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowCheckpointWithHumanInTheLoopSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Concurrent/Concurrent.csproj b/dotnet/samples/GettingStarted/Workflows/Concurrent/Concurrent.csproj index 8798048942..b34c1bb22d 100644 --- a/dotnet/samples/GettingStarted/Workflows/Concurrent/Concurrent.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Concurrent/Concurrent.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Concurrent/Program.cs b/dotnet/samples/GettingStarted/Workflows/Concurrent/Program.cs index c84c36fef7..bb6aa6410c 100644 --- a/dotnet/samples/GettingStarted/Workflows/Concurrent/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Concurrent/Program.cs @@ -7,8 +7,8 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Extensions.AI; namespace WorkflowConcurrentSample; diff --git a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/01_EdgeCondition.csproj b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/01_EdgeCondition.csproj index 329dbd10af..c13372f0b9 100644 --- a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/01_EdgeCondition.csproj +++ b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/01_EdgeCondition.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/Program.cs b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/Program.cs index f1b7df9d12..6610c62a95 100644 --- a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/01_EdgeCondition/Program.cs @@ -7,8 +7,8 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Extensions.AI; namespace WorkflowEdgeConditionSample; diff --git a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/02_SwitchCase.csproj b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/02_SwitchCase.csproj index 329dbd10af..c13372f0b9 100644 --- a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/02_SwitchCase.csproj +++ b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/02_SwitchCase.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/Program.cs b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/Program.cs index 3de5c7aee2..fb9d1cfe26 100644 --- a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/02_SwitchCase/Program.cs @@ -7,8 +7,8 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Extensions.AI; namespace WorkflowSwitchCaseSample; diff --git a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/03_MultiSelection.csproj b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/03_MultiSelection.csproj index 329dbd10af..c13372f0b9 100644 --- a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/03_MultiSelection.csproj +++ b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/03_MultiSelection.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/Program.cs b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/Program.cs index fcb503fdb3..8757ff6cb6 100644 --- a/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/ConditionalEdges/03_MultiSelection/Program.cs @@ -8,8 +8,8 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Extensions.AI; namespace WorkflowMultiSelectionSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/DeclarativeWorkflow.csproj b/dotnet/samples/GettingStarted/Workflows/Declarative/DeclarativeWorkflow.csproj index 7e6fd2a9a3..52bc3c4328 100644 --- a/dotnet/samples/GettingStarted/Workflows/Declarative/DeclarativeWorkflow.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Declarative/DeclarativeWorkflow.csproj @@ -25,8 +25,8 @@ - - + + diff --git a/dotnet/samples/GettingStarted/Workflows/Declarative/Program.cs b/dotnet/samples/GettingStarted/Workflows/Declarative/Program.cs index 400f3bbf72..60a87c6c5b 100644 --- a/dotnet/samples/GettingStarted/Workflows/Declarative/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Declarative/Program.cs @@ -9,9 +9,9 @@ using System.Reflection; using System.Threading.Tasks; using Azure.AI.Agents.Persistent; using Azure.Identity; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Declarative; -using Microsoft.Agents.Workflows.Declarative.Events; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Declarative; +using Microsoft.Agents.AI.Workflows.Declarative.Events; using Microsoft.Extensions.AI; using Microsoft.Extensions.Configuration; diff --git a/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/HumanInTheLoopBasic.csproj b/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/HumanInTheLoopBasic.csproj index 3a0899eba2..967cee1d81 100644 --- a/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/HumanInTheLoopBasic.csproj +++ b/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/HumanInTheLoopBasic.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/Program.cs b/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/Program.cs index 68d151167b..9e250664c7 100644 --- a/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/Program.cs @@ -2,7 +2,7 @@ using System; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; namespace WorkflowHumanInTheLoopBasicSample; diff --git a/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/WorkflowHelper.cs b/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/WorkflowHelper.cs index 5db097056d..ae811354f2 100644 --- a/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/WorkflowHelper.cs +++ b/dotnet/samples/GettingStarted/Workflows/HumanInTheLoop/HumanInTheLoopBasic/WorkflowHelper.cs @@ -1,8 +1,8 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowHumanInTheLoopBasicSample; diff --git a/dotnet/samples/GettingStarted/Workflows/Loop/Loop.csproj b/dotnet/samples/GettingStarted/Workflows/Loop/Loop.csproj index 4abbb77a4e..01d4ee78b0 100644 --- a/dotnet/samples/GettingStarted/Workflows/Loop/Loop.csproj +++ b/dotnet/samples/GettingStarted/Workflows/Loop/Loop.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/Loop/Program.cs b/dotnet/samples/GettingStarted/Workflows/Loop/Program.cs index d74e4a913d..a24222ef47 100644 --- a/dotnet/samples/GettingStarted/Workflows/Loop/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/Loop/Program.cs @@ -2,8 +2,8 @@ using System; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowLoopSample; diff --git a/dotnet/samples/GettingStarted/Workflows/SharedStates/Program.cs b/dotnet/samples/GettingStarted/Workflows/SharedStates/Program.cs index 2f90e1fb0f..511d73bc44 100644 --- a/dotnet/samples/GettingStarted/Workflows/SharedStates/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/SharedStates/Program.cs @@ -4,8 +4,8 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowSharedStatesSample; diff --git a/dotnet/samples/GettingStarted/Workflows/SharedStates/SharedStates.csproj b/dotnet/samples/GettingStarted/Workflows/SharedStates/SharedStates.csproj index 860afdbf8f..22b9447cac 100644 --- a/dotnet/samples/GettingStarted/Workflows/SharedStates/SharedStates.csproj +++ b/dotnet/samples/GettingStarted/Workflows/SharedStates/SharedStates.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/01_ExecutorsAndEdges.csproj b/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/01_ExecutorsAndEdges.csproj index 3a0899eba2..967cee1d81 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/01_ExecutorsAndEdges.csproj +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/01_ExecutorsAndEdges.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/Program.cs b/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/Program.cs index 9ae605a7df..8ee82c4ca8 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/01_ExecutorsAndEdges/Program.cs @@ -3,8 +3,8 @@ using System; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowExecutorsAndEdgesSample; diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/02_Streaming.csproj b/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/02_Streaming.csproj index 3a0899eba2..967cee1d81 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/02_Streaming.csproj +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/02_Streaming.csproj @@ -9,7 +9,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/Program.cs b/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/Program.cs index 482182190a..6ea170a7c5 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/02_Streaming/Program.cs @@ -3,8 +3,8 @@ using System; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows; +using Microsoft.Agents.AI.Workflows.Reflection; namespace WorkflowStreamingSample; diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/03_AgentsInWorkflows.csproj b/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/03_AgentsInWorkflows.csproj index e6f5b4dd0e..4d651df293 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/03_AgentsInWorkflows.csproj +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/03_AgentsInWorkflows.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/Program.cs b/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/Program.cs index 7689d7bcfe..890b4c6d20 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/03_AgentsInWorkflows/Program.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; using Microsoft.Extensions.AI; namespace WorkflowAgentsInWorkflowsSample; diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/04_AgentWorkflowPatterns.csproj b/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/04_AgentWorkflowPatterns.csproj index e6f5b4dd0e..4d651df293 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/04_AgentWorkflowPatterns.csproj +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/04_AgentWorkflowPatterns.csproj @@ -15,7 +15,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/Program.cs b/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/Program.cs index 48e3571328..ff789a689e 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/04_AgentWorkflowPatterns/Program.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using Azure.AI.OpenAI; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; using Microsoft.Extensions.AI; namespace WorkflowAgentsInWorkflowsSample; diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/05_MultiModelService.csproj b/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/05_MultiModelService.csproj index f420d652b6..674bcb15a0 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/05_MultiModelService.csproj +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/05_MultiModelService.csproj @@ -16,7 +16,7 @@ - + diff --git a/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/Program.cs b/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/Program.cs index 8ae390f403..04a7da3c90 100644 --- a/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/Program.cs +++ b/dotnet/samples/GettingStarted/Workflows/_Foundational/05_MultiModelService/Program.cs @@ -3,7 +3,7 @@ using System; using Amazon.BedrockRuntime; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows; +using Microsoft.Agents.AI.Workflows; using Microsoft.Extensions.AI; // Define the topic discussion. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/AzureAgentProvider.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/AzureAgentProvider.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/AzureAgentProvider.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/AzureAgentProvider.cs index de031a0fd2..f14cfe1d48 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/AzureAgentProvider.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/AzureAgentProvider.cs @@ -11,7 +11,7 @@ using Azure.Core.Pipeline; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Provides functionality to interact with Foundry agents within a specified project context. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/DeclarativeWorkflowBuilder.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/DeclarativeWorkflowBuilder.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/DeclarativeWorkflowBuilder.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/DeclarativeWorkflowBuilder.cs index 10ac05f003..7efdf0c455 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/DeclarativeWorkflowBuilder.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/DeclarativeWorkflowBuilder.cs @@ -2,14 +2,14 @@ using System; using System.IO; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Yaml; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Builder for converting a Foundry workflow object-model YAML definition into a process. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/DeclarativeWorkflowOptions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/DeclarativeWorkflowOptions.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/DeclarativeWorkflowOptions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/DeclarativeWorkflowOptions.cs index 1f61d27253..607bdc65c6 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/DeclarativeWorkflowOptions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/DeclarativeWorkflowOptions.cs @@ -5,7 +5,7 @@ using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Configuration options for workflow execution. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Entities/EntityExtractionResult.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Entities/EntityExtractionResult.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Entities/EntityExtractionResult.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Entities/EntityExtractionResult.cs index 96029a7e23..9b64dc1f12 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Entities/EntityExtractionResult.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Entities/EntityExtractionResult.cs @@ -2,7 +2,7 @@ using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Entities; +namespace Microsoft.Agents.AI.Workflows.Declarative.Entities; internal sealed record class EntityExtractionResult { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Entities/EntityExtractor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Entities/EntityExtractor.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Entities/EntityExtractor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Entities/EntityExtractor.cs index 7ba0ddac0e..ba5056582d 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Entities/EntityExtractor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Entities/EntityExtractor.cs @@ -6,7 +6,7 @@ using System.Text.RegularExpressions; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Entities; +namespace Microsoft.Agents.AI.Workflows.Declarative.Entities; internal static partial class EntityExtractor { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/ConversationUpdateEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/ConversationUpdateEvent.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/ConversationUpdateEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/ConversationUpdateEvent.cs index 9fa9a12ccc..94dd651ea4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/ConversationUpdateEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/ConversationUpdateEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Event that broadcasts the conversation identifier. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/DeclarativeActionCompletedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/DeclarativeActionCompletedEvent.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/DeclarativeActionCompletedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/DeclarativeActionCompletedEvent.cs index 9638d1649f..565a7b23f2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/DeclarativeActionCompletedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/DeclarativeActionCompletedEvent.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Event that indicates a declarative action has been invoked. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/DeclarativeActionInvokedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/DeclarativeActionInvokedEvent.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/DeclarativeActionInvokedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/DeclarativeActionInvokedEvent.cs index 7d92db985a..dcf1f1d9dc 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/DeclarativeActionInvokedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/DeclarativeActionInvokedEvent.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Event that indicates a declarative action has completed. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/InputRequest.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/InputRequest.cs similarity index 85% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/InputRequest.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/InputRequest.cs index c2ae30797f..881112c4e9 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/InputRequest.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/InputRequest.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Declarative.Events; +namespace Microsoft.Agents.AI.Workflows.Declarative.Events; /// /// Represents a request for user input. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/InputResponse.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/InputResponse.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/InputResponse.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/InputResponse.cs index e72a74b583..b2db2fff9f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/InputResponse.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/InputResponse.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Declarative.Events; +namespace Microsoft.Agents.AI.Workflows.Declarative.Events; /// /// Represents a user input response. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/MessageActivityEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/MessageActivityEvent.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/MessageActivityEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/MessageActivityEvent.cs index 1fb786b19f..15d2da0384 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Events/MessageActivityEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Events/MessageActivityEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Event that broadcasts the conversation identifier. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeActionException.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeActionException.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeActionException.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeActionException.cs index 6849a57bf2..57947c0ab7 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeActionException.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeActionException.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Represents an exception that occurs during action execution. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeModelException.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeModelException.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeModelException.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeModelException.cs index 3f5563cb68..ee2a112b18 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeModelException.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeModelException.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Represents an exception that occurs when the declarative model is not supported. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeWorkflowException.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeWorkflowException.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeWorkflowException.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeWorkflowException.cs index 1cad0fb2c8..bc9e0069e2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Exceptions/DeclarativeWorkflowException.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Exceptions/DeclarativeWorkflowException.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Represents any exception that occurs during the execution of a process workflow. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/AgentProviderExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/AgentProviderExtensions.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/AgentProviderExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/AgentProviderExtensions.cs index e5b8068b1b..a06c8e4122 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/AgentProviderExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/AgentProviderExtensions.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class AgentProviderExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/BotElementExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/BotElementExtensions.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/BotElementExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/BotElementExtensions.cs index c8f69c710d..78c50587d4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/BotElementExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/BotElementExtensions.cs @@ -2,7 +2,7 @@ using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class BotElementExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/ChatMessageExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/ChatMessageExtensions.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/ChatMessageExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/ChatMessageExtensions.cs index 9eec9796ef..0312d243b0 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/ChatMessageExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/ChatMessageExtensions.cs @@ -3,12 +3,12 @@ using System; using System.Collections.Generic; using System.Linq; -using Microsoft.Agents.Workflows.Declarative.PowerFx.Functions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx.Functions; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.AI; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class ChatMessageExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DataValueExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DataValueExtensions.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DataValueExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DataValueExtensions.cs index e883609141..3aa53a337d 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DataValueExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DataValueExtensions.cs @@ -5,7 +5,7 @@ using System.Linq; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class DataValueExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DeclarativeWorkflowOptionsExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DeclarativeWorkflowOptionsExtensions.cs similarity index 78% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DeclarativeWorkflowOptionsExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DeclarativeWorkflowOptionsExtensions.cs index 19b2a11819..1e1c52ab88 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DeclarativeWorkflowOptionsExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DeclarativeWorkflowOptionsExtensions.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.PowerFx; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class DeclarativeWorkflowOptionsExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DialogBaseExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DialogBaseExtensions.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DialogBaseExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DialogBaseExtensions.cs index 97b07068e7..d264052618 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/DialogBaseExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/DialogBaseExtensions.cs @@ -3,7 +3,7 @@ using System.Linq; using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class DialogBaseExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/FormulaValueExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/FormulaValueExtensions.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/FormulaValueExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/FormulaValueExtensions.cs index 034f4bcbb7..84d58d40bb 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/FormulaValueExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/FormulaValueExtensions.cs @@ -8,14 +8,14 @@ using System.Dynamic; using System.Linq; using System.Text.Json; using System.Text.Json.Nodes; -using Microsoft.Agents.Workflows.Declarative.PowerFx; -using Microsoft.Agents.Workflows.Declarative.PowerFx.Functions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx.Functions; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.AI; using Microsoft.PowerFx.Types; using BlankType = Microsoft.PowerFx.Types.BlankType; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class FormulaValueExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/IWorkflowContextExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/IWorkflowContextExtensions.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/IWorkflowContextExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/IWorkflowContextExtensions.cs index d85bf373a7..5afbb31f7c 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/IWorkflowContextExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/IWorkflowContextExtensions.cs @@ -2,13 +2,13 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class IWorkflowContextExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/RecordDataTypeExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/RecordDataTypeExtensions.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/RecordDataTypeExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/RecordDataTypeExtensions.cs index f915d150db..49ca8ad006 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/RecordDataTypeExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/RecordDataTypeExtensions.cs @@ -7,7 +7,7 @@ using System.Text.Json; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class RecordDataTypeExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/StringExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/StringExtensions.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/StringExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/StringExtensions.cs index 7bd31b2505..e8e2858577 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/StringExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/StringExtensions.cs @@ -3,7 +3,7 @@ using System.Text.RegularExpressions; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static partial class StringExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/TemplateExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/TemplateExtensions.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/TemplateExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/TemplateExtensions.cs index 860d9e991d..a71e4a4a4a 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Extensions/TemplateExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Extensions/TemplateExtensions.cs @@ -5,7 +5,7 @@ using System.Linq; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx; -namespace Microsoft.Agents.Workflows.Declarative.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.Extensions; internal static class TemplateExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/ActionExecutorResult.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/ActionExecutorResult.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/ActionExecutorResult.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/ActionExecutorResult.cs index c75f82195c..ad837e35cf 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/ActionExecutorResult.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/ActionExecutorResult.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; /// /// Message sent to initiate a transition to another . diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeActionExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeActionExecutor.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeActionExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeActionExecutor.cs index f323f7cc57..21c3bf5e53 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeActionExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeActionExecutor.cs @@ -4,15 +4,15 @@ using System; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; using Microsoft.PowerFx; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; internal abstract class DeclarativeActionExecutor(TAction model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowContext.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowContext.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowContext.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowContext.cs index 94f04652a0..018b99bc49 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowContext.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowContext.cs @@ -4,12 +4,12 @@ using System.Collections.Frozen; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; internal sealed class DeclarativeWorkflowContext : IWorkflowContext { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowExecutor.cs similarity index 87% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowExecutor.cs index b634dc21e3..b0e9b169a3 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowExecutor.cs @@ -2,11 +2,11 @@ using System; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; /// /// The root executor for a declarative workflow. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowModel.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowModel.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowModel.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowModel.cs index d43099df77..53caa6d4ec 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DeclarativeWorkflowModel.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DeclarativeWorkflowModel.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Diagnostics; using System.Linq; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; /// /// Provides dynamic model for constructing a declarative workflow. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DelegateActionExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DelegateActionExecutor.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DelegateActionExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DelegateActionExecutor.cs index 8f52f53c53..5090f4771c 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DelegateActionExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DelegateActionExecutor.cs @@ -3,10 +3,10 @@ using System.Diagnostics; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; internal delegate ValueTask DelegateAction(IWorkflowContext context, TMessage message, CancellationToken cancellationToken) where TMessage : notnull; diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DurableProperty.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DurableProperty.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DurableProperty.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DurableProperty.cs index fbe02be701..b5f370288e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/DurableProperty.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/DurableProperty.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; internal sealed class DurableProperty(string name) where TValue : struct { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/WorkflowActionVisitor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/WorkflowActionVisitor.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/WorkflowActionVisitor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/WorkflowActionVisitor.cs index c85d885fa1..23c51e8ea1 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/WorkflowActionVisitor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/WorkflowActionVisitor.cs @@ -3,13 +3,13 @@ using System; using System.Diagnostics; using System.Linq; -using Microsoft.Agents.Workflows.Declarative.Events; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Events; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; internal sealed class WorkflowActionVisitor : DialogActionVisitor { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/WorkflowElementWalker.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/WorkflowElementWalker.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/WorkflowElementWalker.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/WorkflowElementWalker.cs index 26f37f9102..6674209ab6 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Interpreter/WorkflowElementWalker.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Interpreter/WorkflowElementWalker.cs @@ -2,7 +2,7 @@ using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.Interpreter; internal sealed class WorkflowElementWalker : BotElementWalker { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Microsoft.Agents.Workflows.Declarative.csproj b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Microsoft.Agents.AI.Workflows.Declarative.csproj similarity index 83% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/Microsoft.Agents.Workflows.Declarative.csproj rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Microsoft.Agents.AI.Workflows.Declarative.csproj index 6a343bd3bc..525c47fb4f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/Microsoft.Agents.Workflows.Declarative.csproj +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/Microsoft.Agents.AI.Workflows.Declarative.csproj @@ -31,13 +31,13 @@ - + - - + + diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/AddConversationMessageExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/AddConversationMessageExecutor.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/AddConversationMessageExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/AddConversationMessageExecutor.cs index 1e0694a572..17c005294e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/AddConversationMessageExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/AddConversationMessageExecutor.cs @@ -3,14 +3,14 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class AddConversationMessageExecutor(AddConversationMessage model, WorkflowAgentProvider agentProvider, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ClearAllVariablesExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ClearAllVariablesExecutor.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ClearAllVariablesExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ClearAllVariablesExecutor.cs index 8c494da54d..0ab89a1971 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ClearAllVariablesExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ClearAllVariablesExecutor.cs @@ -3,12 +3,12 @@ using System.Diagnostics; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class ClearAllVariablesExecutor(ClearAllVariables model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ConditionGroupExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ConditionGroupExecutor.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ConditionGroupExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ConditionGroupExecutor.cs index 76180e9cf5..ab4fb5ed7e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ConditionGroupExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ConditionGroupExecutor.cs @@ -3,13 +3,13 @@ using System; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class ConditionGroupExecutor : DeclarativeActionExecutor { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/CopyConversationMessagesExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/CopyConversationMessagesExecutor.cs similarity index 86% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/CopyConversationMessagesExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/CopyConversationMessagesExecutor.cs index abf450050a..1a63e216bd 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/CopyConversationMessagesExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/CopyConversationMessagesExecutor.cs @@ -3,15 +3,15 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class CopyConversationMessagesExecutor(CopyConversationMessages model, WorkflowAgentProvider agentProvider, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/CreateConversationExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/CreateConversationExecutor.cs similarity index 81% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/CreateConversationExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/CreateConversationExecutor.cs index 042603b69f..64b4dff8ce 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/CreateConversationExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/CreateConversationExecutor.cs @@ -2,12 +2,12 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class CreateConversationExecutor(CreateConversation model, WorkflowAgentProvider agentProvider, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/DefaultActionExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/DefaultActionExecutor.cs similarity index 73% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/DefaultActionExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/DefaultActionExecutor.cs index b09c2b3b18..2c2418d1e8 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/DefaultActionExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/DefaultActionExecutor.cs @@ -2,11 +2,11 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class DefaultActionExecutor(DialogAction model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/EditTableExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/EditTableExecutor.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/EditTableExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/EditTableExecutor.cs index 90e42f9fad..d5b85b55ef 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/EditTableExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/EditTableExecutor.cs @@ -4,15 +4,15 @@ using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class EditTableExecutor(EditTable model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/EditTableV2Executor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/EditTableV2Executor.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/EditTableV2Executor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/EditTableV2Executor.cs index 0158e2e55e..a1e76709fa 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/EditTableV2Executor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/EditTableV2Executor.cs @@ -4,15 +4,15 @@ using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class EditTableV2Executor(EditTableV2 model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ForeachExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ForeachExecutor.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ForeachExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ForeachExecutor.cs index b31b8d44de..93bc282c73 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ForeachExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ForeachExecutor.cs @@ -3,15 +3,15 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class ForeachExecutor : DeclarativeActionExecutor { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/InvokeAzureAgentExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/InvokeAzureAgentExecutor.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/InvokeAzureAgentExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/InvokeAzureAgentExecutor.cs index 24093456a3..ca21866833 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/InvokeAzureAgentExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/InvokeAzureAgentExecutor.cs @@ -5,15 +5,15 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class InvokeAzureAgentExecutor(InvokeAzureAgent model, WorkflowAgentProvider agentProvider, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ParseValueExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ParseValueExecutor.cs similarity index 91% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ParseValueExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ParseValueExecutor.cs index 4c3e49d40e..96bdae5580 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ParseValueExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ParseValueExecutor.cs @@ -5,15 +5,15 @@ using System; using System.Text.Json; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class ParseValueExecutor(ParseValue model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/QuestionExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/QuestionExecutor.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/QuestionExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/QuestionExecutor.cs index cb6d1c5a0d..77129ec357 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/QuestionExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/QuestionExecutor.cs @@ -2,16 +2,16 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Entities; -using Microsoft.Agents.Workflows.Declarative.Events; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Entities; +using Microsoft.Agents.AI.Workflows.Declarative.Events; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class QuestionExecutor(Question model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ResetVariableExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ResetVariableExecutor.cs similarity index 77% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ResetVariableExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ResetVariableExecutor.cs index 08c7e24138..04650c77bc 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/ResetVariableExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/ResetVariableExecutor.cs @@ -3,13 +3,13 @@ using System.Diagnostics; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class ResetVariableExecutor(ResetVariable model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/RetrieveConversationMessageExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/RetrieveConversationMessageExecutor.cs similarity index 83% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/RetrieveConversationMessageExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/RetrieveConversationMessageExecutor.cs index 8fb0c98dc4..dde0ccb673 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/RetrieveConversationMessageExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/RetrieveConversationMessageExecutor.cs @@ -2,14 +2,14 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class RetrieveConversationMessageExecutor(RetrieveConversationMessage model, WorkflowAgentProvider agentProvider, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/RetrieveConversationMessagesExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/RetrieveConversationMessagesExecutor.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/RetrieveConversationMessagesExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/RetrieveConversationMessagesExecutor.cs index bb99d1b418..a90d039b58 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/RetrieveConversationMessagesExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/RetrieveConversationMessagesExecutor.cs @@ -4,14 +4,14 @@ using System; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class RetrieveConversationMessagesExecutor(RetrieveConversationMessages model, WorkflowAgentProvider agentProvider, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SendActivityExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SendActivityExecutor.cs similarity index 75% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SendActivityExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SendActivityExecutor.cs index 12831a1588..ed79bf7d91 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SendActivityExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SendActivityExecutor.cs @@ -2,12 +2,12 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class SendActivityExecutor(SendActivity model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetMultipleVariablesExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetMultipleVariablesExecutor.cs similarity index 83% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetMultipleVariablesExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetMultipleVariablesExecutor.cs index e59f33edaa..96e7654360 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetMultipleVariablesExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetMultipleVariablesExecutor.cs @@ -2,14 +2,14 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class SetMultipleVariablesExecutor(SetMultipleVariables model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetTextVariableExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetTextVariableExecutor.cs similarity index 79% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetTextVariableExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetTextVariableExecutor.cs index 980d27c062..b4d2167b13 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetTextVariableExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetTextVariableExecutor.cs @@ -2,13 +2,13 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class SetTextVariableExecutor(SetTextVariable model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetVariableExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetVariableExecutor.cs similarity index 82% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetVariableExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetVariableExecutor.cs index 24f15d19b8..fe9de10278 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/ObjectModel/SetVariableExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/ObjectModel/SetVariableExecutor.cs @@ -2,15 +2,15 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; internal sealed class SetVariableExecutor(SetVariable model, WorkflowFormulaState state) : DeclarativeActionExecutor(model, state) diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/Functions/UserMessage.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/Functions/UserMessage.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/Functions/UserMessage.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/Functions/UserMessage.cs index 2165b5be58..1d4510b11d 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/Functions/UserMessage.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/Functions/UserMessage.cs @@ -1,11 +1,11 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Extensions.AI; using Microsoft.PowerFx; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx.Functions; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx.Functions; internal sealed class UserMessage : ReflectionFunction { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/RecalcEngineFactory.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/RecalcEngineFactory.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/RecalcEngineFactory.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/RecalcEngineFactory.cs index dfcea949b1..6d0364603c 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/RecalcEngineFactory.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/RecalcEngineFactory.cs @@ -1,11 +1,11 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.PowerFx.Functions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx.Functions; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx; internal static class RecalcEngineFactory { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/SystemScope.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/SystemScope.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/SystemScope.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/SystemScope.cs index a6d8d01138..a48494498b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/SystemScope.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/SystemScope.cs @@ -4,13 +4,13 @@ using System; using System.Collections.Frozen; using System.Globalization; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.SystemVariables; using Microsoft.Extensions.AI; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx; internal static class SystemScope { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/TypeSchema.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/TypeSchema.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/TypeSchema.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/TypeSchema.cs index de746e6d18..79a8ce8f40 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/TypeSchema.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/TypeSchema.cs @@ -3,7 +3,7 @@ using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx.Functions; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx.Functions; internal static class TypeSchema { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/UnassignedValue.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/UnassignedValue.cs similarity index 86% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/UnassignedValue.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/UnassignedValue.cs index 11b2e763d2..1ef3b9bb0f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/UnassignedValue.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/UnassignedValue.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Declarative.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx; /// /// Represents the absence of an assigned value for a variable used in an expression. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowDiagnostics.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowDiagnostics.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowDiagnostics.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowDiagnostics.cs index 4aff190608..63f1dc071a 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowDiagnostics.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowDiagnostics.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Linq; -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.Bot.ObjectModel.Analysis; @@ -11,7 +11,7 @@ using Microsoft.Bot.ObjectModel.PowerFx; using Microsoft.Extensions.Configuration; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx; internal sealed record class WorkflowTypeInfo(ISet EnvironmentVariables, IList UserVariables); diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowExpressionEngine.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowExpressionEngine.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowExpressionEngine.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowExpressionEngine.cs index 7991f23cf0..f2b4256e50 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowExpressionEngine.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowExpressionEngine.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Collections.Immutable; -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.Bot.ObjectModel.Exceptions; @@ -11,7 +11,7 @@ using Microsoft.PowerFx; using Microsoft.PowerFx.Types; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx; internal sealed class WorkflowExpressionEngine { diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowFormulaState.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowFormulaState.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowFormulaState.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowFormulaState.cs index 735905cc97..bde252b18f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/PowerFx/WorkflowFormulaState.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/PowerFx/WorkflowFormulaState.cs @@ -5,12 +5,12 @@ using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.PowerFx; /// /// Contains all variables scopes for a workflow. diff --git a/dotnet/src/Microsoft.Agents.Workflows.Declarative/WorkflowAgentProvider.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/WorkflowAgentProvider.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows.Declarative/WorkflowAgentProvider.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/WorkflowAgentProvider.cs index 2b6912ef33..c9b52a3c74 100644 --- a/dotnet/src/Microsoft.Agents.Workflows.Declarative/WorkflowAgentProvider.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Declarative/WorkflowAgentProvider.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Declarative; +namespace Microsoft.Agents.AI.Workflows.Declarative; /// /// Base class for workflow agent providers. diff --git a/dotnet/src/Microsoft.Agents.Workflows/AIAgentsAbstractionsExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/AIAgentsAbstractionsExtensions.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/AIAgentsAbstractionsExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/AIAgentsAbstractionsExtensions.cs index 0264ecaa2f..4b265faaba 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/AIAgentsAbstractionsExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/AIAgentsAbstractionsExtensions.cs @@ -3,7 +3,7 @@ using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal static class AIAgentsAbstractionsExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows/AgentRunResponseEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/AgentRunResponseEvent.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/AgentRunResponseEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/AgentRunResponseEvent.cs index 77aef02912..cd0ed0d4ae 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/AgentRunResponseEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/AgentRunResponseEvent.cs @@ -3,7 +3,7 @@ using Microsoft.Agents.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents an event triggered when an agent run produces an update. diff --git a/dotnet/src/Microsoft.Agents.Workflows/AgentRunUpdateEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/AgentRunUpdateEvent.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/AgentRunUpdateEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/AgentRunUpdateEvent.cs index e86561b2f7..ba854fcf89 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/AgentRunUpdateEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/AgentRunUpdateEvent.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using Microsoft.Agents.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents an event triggered when an agent run produces an update. diff --git a/dotnet/src/Microsoft.Agents.Workflows/AgentWorkflowBuilder.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/AgentWorkflowBuilder.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/AgentWorkflowBuilder.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/AgentWorkflowBuilder.cs index 2983861c49..08ba0f5d01 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/AgentWorkflowBuilder.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/AgentWorkflowBuilder.cs @@ -14,7 +14,7 @@ using Microsoft.Agents.AI; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides utility methods for constructing common patterns of workflows composed of agents. diff --git a/dotnet/src/Microsoft.Agents.Workflows/AggregatingExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/AggregatingExecutor.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/AggregatingExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/AggregatingExecutor.cs index de1975e59a..a9d3f9c939 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/AggregatingExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/AggregatingExecutor.cs @@ -4,7 +4,7 @@ using System; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Executes a workflow step that incrementally aggregates input messages using a user-provided aggregation function. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ChatProtocolExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ChatProtocolExecutor.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/ChatProtocolExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ChatProtocolExecutor.cs index 4582fd73d3..e1eddebc5c 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ChatProtocolExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ChatProtocolExecutor.cs @@ -6,7 +6,7 @@ using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal class ChatProtocolExecutorOptions { diff --git a/dotnet/src/Microsoft.Agents.Workflows/CheckpointInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/CheckpointInfo.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/CheckpointInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/CheckpointInfo.cs index 981cee57e8..33fd9c8e3a 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/CheckpointInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/CheckpointInfo.cs @@ -4,7 +4,7 @@ using System; using System.Text.Json.Serialization; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a checkpoint with a unique identifier and a timestamp indicating when it was created. diff --git a/dotnet/src/Microsoft.Agents.Workflows/CheckpointManager.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/CheckpointManager.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/CheckpointManager.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/CheckpointManager.cs index e2c035ba34..9334158b5b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/CheckpointManager.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/CheckpointManager.cs @@ -2,9 +2,9 @@ using System.Text.Json; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A manager for storing and retrieving workflow execution checkpoints. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointed.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointed.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointed.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointed.cs index 05bd25ae9d..e1579d85ba 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointed.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointed.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a workflow run that supports checkpointing. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/Checkpoint.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/Checkpoint.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/Checkpoint.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/Checkpoint.cs index aceb12e2fb..3e3fa80de1 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/Checkpoint.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/Checkpoint.cs @@ -2,10 +2,10 @@ using System.Collections.Generic; using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed class Checkpoint { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/CheckpointManagerImpl.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/CheckpointManagerImpl.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/CheckpointManagerImpl.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/CheckpointManagerImpl.cs index 67faf4a481..ce7bb080e8 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/CheckpointManagerImpl.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/CheckpointManagerImpl.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed class CheckpointManagerImpl : ICheckpointManager { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/DirectEdgeInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/DirectEdgeInfo.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/DirectEdgeInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/DirectEdgeInfo.cs index 4319947025..7103db0f4b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/DirectEdgeInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/DirectEdgeInfo.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Represents a direct in the . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/EdgeIdConverter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/EdgeIdConverter.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/EdgeIdConverter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/EdgeIdConverter.cs index 6ac8e80041..1e45bea29b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/EdgeIdConverter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/EdgeIdConverter.cs @@ -4,7 +4,7 @@ using System.Diagnostics.CodeAnalysis; using System.Text.Json; using System.Text.Json.Serialization.Metadata; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides support for using values as dictionary keys when serializing and deserializing JSON. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/EdgeInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/EdgeInfo.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/EdgeInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/EdgeInfo.cs index ef2e05c87c..d262a3eaca 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/EdgeInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/EdgeInfo.cs @@ -1,10 +1,10 @@ // Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Base class representing information about an edge in a workflow. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ExecutorIdentityConverter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ExecutorIdentityConverter.cs similarity index 91% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ExecutorIdentityConverter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ExecutorIdentityConverter.cs index 3656307009..cebd39c3ae 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ExecutorIdentityConverter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ExecutorIdentityConverter.cs @@ -2,9 +2,9 @@ using System.Text.Json; using System.Text.Json.Serialization.Metadata; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides support for using values as dictionary keys when serializing and deserializing JSON. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ExecutorInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ExecutorInfo.cs similarity index 91% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ExecutorInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ExecutorInfo.cs index 4d5df46572..c9994a91d0 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ExecutorInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ExecutorInfo.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed record class ExecutorInfo(TypeId ExecutorType, string ExecutorId) { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FanInEdgeInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FanInEdgeInfo.cs similarity index 82% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FanInEdgeInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FanInEdgeInfo.cs index 3b9f89be55..6cad214a36 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FanInEdgeInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FanInEdgeInfo.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Represents a fan-in in the . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FanOutEdgeInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FanOutEdgeInfo.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FanOutEdgeInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FanOutEdgeInfo.cs index 98a5f8e9a5..dc5ddc4bbe 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FanOutEdgeInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FanOutEdgeInfo.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Represents a fan-out in the . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FileSystemJsonCheckpointStore.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FileSystemJsonCheckpointStore.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FileSystemJsonCheckpointStore.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FileSystemJsonCheckpointStore.cs index 5ff2150ce1..35f4b2d376 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/FileSystemJsonCheckpointStore.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/FileSystemJsonCheckpointStore.cs @@ -8,7 +8,7 @@ using System.Text.Json; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides a file system-based implementation of a JSON checkpoint store that persists checkpoint data and index diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointManager.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointManager.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointManager.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointManager.cs index 29ea5076fa..914ec6a44a 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointManager.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointManager.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// A manager for storing and retrieving workflow execution checkpoints. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointStore.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointStore.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointStore.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointStore.cs index 4964d37d15..042d374b7e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointStore.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointStore.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Defines a contract for storing and retrieving checkpoints associated with a specific run and key. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointingRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointingRunner.cs similarity index 89% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointingRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointingRunner.cs index fe29b9507f..d0a8314b04 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ICheckpointingRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ICheckpointingRunner.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal interface ICheckpointingRunner { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/IDelayedDeserialization.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/IDelayedDeserialization.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/IDelayedDeserialization.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/IDelayedDeserialization.cs index f643937d43..bea6e3e96e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/IDelayedDeserialization.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/IDelayedDeserialization.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Implements an abstraction across serialization mechanisms to represent a lazily-deserialized value. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/IWireMarshaller.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/IWireMarshaller.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/IWireMarshaller.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/IWireMarshaller.cs index ab15de72f4..36d9981e09 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/IWireMarshaller.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/IWireMarshaller.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Defines methods for marshalling and unmarshalling objects to and from a wire format. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/InMemoryCheckpointManager.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/InMemoryCheckpointManager.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/InMemoryCheckpointManager.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/InMemoryCheckpointManager.cs index eb312b2ea0..8fde437df5 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/InMemoryCheckpointManager.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/InMemoryCheckpointManager.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// An in-memory implementation of that stores checkpoints in a dictionary. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/InputPortInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/InputPortInfo.cs similarity index 86% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/InputPortInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/InputPortInfo.cs index 76a9064d14..7edcd95c12 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/InputPortInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/InputPortInfo.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Information about an input port, including its input and output types. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonCheckpointStore.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonCheckpointStore.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonCheckpointStore.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonCheckpointStore.cs index fe5a97413c..7da28bdee9 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonCheckpointStore.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonCheckpointStore.cs @@ -5,7 +5,7 @@ using System.Text.Json; using System.Text.Json.Serialization.Metadata; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// An abstract base class for checkpoint stores that use JSON for serialization. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonConverterBase.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonConverterBase.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonConverterBase.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonConverterBase.cs index 701401b5ff..929f81dbb6 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonConverterBase.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonConverterBase.cs @@ -5,7 +5,7 @@ using System.Text.Json; using System.Text.Json.Serialization; using System.Text.Json.Serialization.Metadata; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides support for JSON serialization and deserialization using a specified JsonTypeInfo. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonConverterDictionarySupportBase.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonConverterDictionarySupportBase.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonConverterDictionarySupportBase.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonConverterDictionarySupportBase.cs index 57cd9f9311..48cbf9c3f5 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonConverterDictionarySupportBase.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonConverterDictionarySupportBase.cs @@ -5,7 +5,7 @@ using System.Diagnostics.CodeAnalysis; using System.Text.Json; using System.Text.Json.Serialization.Metadata; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides support for using values as dictionary keys when serializing and deserializing JSON. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonMarshaller.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonMarshaller.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonMarshaller.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonMarshaller.cs index b9d87bdc88..6eb7ce9231 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonMarshaller.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonMarshaller.cs @@ -4,7 +4,7 @@ using System; using System.Text.Json; using System.Text.Json.Serialization.Metadata; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed class JsonMarshaller : IWireMarshaller { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonWireSerializedValue.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonWireSerializedValue.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonWireSerializedValue.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonWireSerializedValue.cs index 07eb3983a5..6b97c8c3e2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/JsonWireSerializedValue.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/JsonWireSerializedValue.cs @@ -3,7 +3,7 @@ using System; using System.Text.Json; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Represents a value serialized to the JSON format (). diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/PortableMessageEnvelope.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/PortableMessageEnvelope.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/PortableMessageEnvelope.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/PortableMessageEnvelope.cs index 3df7a5479a..96fb7c88a2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/PortableMessageEnvelope.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/PortableMessageEnvelope.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed class PortableMessageEnvelope { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/PortableValueConverter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/PortableValueConverter.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/PortableValueConverter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/PortableValueConverter.cs index 12144bb4ba..09424ae750 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/PortableValueConverter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/PortableValueConverter.cs @@ -5,7 +5,7 @@ using System.Text.Json; using System.Text.Json.Serialization; using System.Text.Json.Serialization.Metadata; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides special handling for serialization and deserialization, enabling delayed deserialization diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/RepresentationExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/RepresentationExtensions.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/RepresentationExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/RepresentationExtensions.cs index df6dbc98e9..2a26e3fee6 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/RepresentationExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/RepresentationExtensions.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal static class RepresentationExtensions { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/RunCheckpointCache.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/RunCheckpointCache.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/RunCheckpointCache.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/RunCheckpointCache.cs index 7241d5121b..23fedc71ad 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/RunCheckpointCache.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/RunCheckpointCache.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed class RunCheckpointCache { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ScopeKeyConverter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ScopeKeyConverter.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ScopeKeyConverter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ScopeKeyConverter.cs index cb49ec77f6..c63de96bae 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/ScopeKeyConverter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/ScopeKeyConverter.cs @@ -6,7 +6,7 @@ using System.Text.Json; using System.Text.Json.Serialization.Metadata; using System.Text.RegularExpressions; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// Provides support for using values as dictionary keys when serializing and deserializing JSON. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/TypeId.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/TypeId.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/TypeId.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/TypeId.cs index 235521b236..79436773d9 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/TypeId.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/TypeId.cs @@ -4,7 +4,7 @@ using System; using System.Text.Json.Serialization; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; /// /// A representation of a type's identity, including its assembly and type names. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/WorkflowInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/WorkflowInfo.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Checkpointing/WorkflowInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/WorkflowInfo.cs index 8b44cf1ba2..9684ce5af9 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Checkpointing/WorkflowInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Checkpointing/WorkflowInfo.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text.Json.Serialization; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Checkpointing; +namespace Microsoft.Agents.AI.Workflows.Checkpointing; internal sealed class WorkflowInfo { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Config.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Config.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Config.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Config.cs index 9833f58934..2a8131f596 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Config.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Config.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a configuration for an object with a string identifier. For example, object. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ConfigurationExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/ConfigurationExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs index 7ded4d31e1..1c845612e2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ConfigurationExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides extensions methods for creating objects diff --git a/dotnet/src/Microsoft.Agents.Workflows/Configured.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/Configured.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs index 5447937f08..899f0b11df 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Configured.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs @@ -3,7 +3,7 @@ using System; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides methods for creating instances. diff --git a/dotnet/src/Microsoft.Agents.Workflows/DirectEdgeData.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/DirectEdgeData.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/DirectEdgeData.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/DirectEdgeData.cs index 74a73a3a4c..2119bd775b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/DirectEdgeData.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/DirectEdgeData.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using PredicateT = System.Func; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a directed edge between two nodes, optionally associated with a condition that determines whether the diff --git a/dotnet/src/Microsoft.Agents.Workflows/Edge.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Edge.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Edge.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Edge.cs index 8feddc02de..d5070a9ef7 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Edge.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Edge.cs @@ -2,7 +2,7 @@ using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Specified the edge type. diff --git a/dotnet/src/Microsoft.Agents.Workflows/EdgeData.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/EdgeData.cs similarity index 84% rename from dotnet/src/Microsoft.Agents.Workflows/EdgeData.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/EdgeData.cs index 4cfbe5a5ce..7771b3966e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/EdgeData.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/EdgeData.cs @@ -1,8 +1,8 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A base class for edge data, providing access to the representation of the edge. diff --git a/dotnet/src/Microsoft.Agents.Workflows/EdgeId.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/EdgeId.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/EdgeId.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/EdgeId.cs index beb699f0a2..53957cdfec 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/EdgeId.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/EdgeId.cs @@ -3,7 +3,7 @@ using System; using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A unique identifier of an within a . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/CallResult.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/CallResult.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/CallResult.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/CallResult.cs index a32fa2da65..655aa1597a 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/CallResult.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/CallResult.cs @@ -3,7 +3,7 @@ using System; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; /// /// This class represents the result of a call to a message handler. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/DeliveryMapping.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/DeliveryMapping.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/DeliveryMapping.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/DeliveryMapping.cs index ecfaf0d79c..04a7f2b9cd 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/DeliveryMapping.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/DeliveryMapping.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class DeliveryMapping { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/DirectEdgeRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/DirectEdgeRunner.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/DirectEdgeRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/DirectEdgeRunner.cs index e28fa9bdde..61c7ad7b66 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/DirectEdgeRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/DirectEdgeRunner.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class DirectEdgeRunner(IRunnerContext runContext, DirectEdgeData edgeData) : EdgeRunner(runContext, edgeData) diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeConnection.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeConnection.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeConnection.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeConnection.cs index 429ab8add4..27043ad443 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeConnection.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeConnection.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; /// /// A representation for the connection structure of an edge of any multiplicity, defined by an ordered list diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeMap.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeMap.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeMap.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeMap.cs index 6c0e111282..aec0341a29 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeMap.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeMap.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class EdgeMap { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeRunner.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeRunner.cs index c3962bc9ad..31bb01da1e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/EdgeRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/EdgeRunner.cs @@ -3,7 +3,7 @@ using System.Threading.Tasks; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal interface IStatefulEdgeRunner { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/ExecutorIdentity.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/ExecutorIdentity.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/ExecutorIdentity.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/ExecutorIdentity.cs index 8161a701d8..07957ce7f4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/ExecutorIdentity.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/ExecutorIdentity.cs @@ -3,7 +3,7 @@ using System; using System.Diagnostics.CodeAnalysis; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal readonly struct ExecutorIdentity : IEquatable { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/FanInEdgeRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanInEdgeRunner.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/FanInEdgeRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanInEdgeRunner.cs index 7e350dc13c..b79599b7d1 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/FanInEdgeRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanInEdgeRunner.cs @@ -6,7 +6,7 @@ using System.Diagnostics; using System.Linq; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class FanInEdgeRunner(IRunnerContext runContext, FanInEdgeData edgeData) : EdgeRunner(runContext, edgeData), diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/FanInEdgeState.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanInEdgeState.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/FanInEdgeState.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanInEdgeState.cs index f819107764..fe564f1c38 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/FanInEdgeState.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanInEdgeState.cs @@ -4,9 +4,9 @@ using System.Collections.Generic; using System.Linq; using System.Text.Json.Serialization; using System.Threading; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class FanInEdgeState { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/FanOutEdgeRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanOutEdgeRunner.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/FanOutEdgeRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanOutEdgeRunner.cs index 1e0af8c60c..30729c1c0d 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/FanOutEdgeRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/FanOutEdgeRunner.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class FanOutEdgeRunner(IRunnerContext runContext, FanOutEdgeData edgeData) : EdgeRunner(runContext, edgeData) diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/IExternalRequestSink.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IExternalRequestSink.cs similarity index 77% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/IExternalRequestSink.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IExternalRequestSink.cs index f5e8614d4f..3a33c1e42e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/IExternalRequestSink.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IExternalRequestSink.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal interface IExternalRequestSink { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/IRunnerContext.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IRunnerContext.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/IRunnerContext.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IRunnerContext.cs index cfe45494af..be427d7702 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/IRunnerContext.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IRunnerContext.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal interface IRunnerContext : IExternalRequestSink { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/IStepTracer.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IStepTracer.cs similarity index 84% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/IStepTracer.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IStepTracer.cs index af093aa019..a54ff07456 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/IStepTracer.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/IStepTracer.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal interface IStepTracer { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/ISuperStepRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/ISuperStepRunner.cs similarity index 91% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/ISuperStepRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/ISuperStepRunner.cs index 858114659b..65d34ee88f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/ISuperStepRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/ISuperStepRunner.cs @@ -4,7 +4,7 @@ using System; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal interface ISuperStepRunner { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/InputEdgeRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/InputEdgeRunner.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/InputEdgeRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/InputEdgeRunner.cs index 4923a7ea4a..54a27baded 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/InputEdgeRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/InputEdgeRunner.cs @@ -4,7 +4,7 @@ using System.Diagnostics; using System.Threading.Tasks; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class InputEdgeRunner(IRunnerContext runContext, string sinkId) : EdgeRunner(runContext, sinkId) diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/MessageDelivery.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageDelivery.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/MessageDelivery.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageDelivery.cs index ff8bd46ad9..6870266077 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/MessageDelivery.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageDelivery.cs @@ -3,7 +3,7 @@ using System.Text.Json.Serialization; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class MessageDelivery { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/MessageEnvelope.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageEnvelope.cs similarity index 91% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/MessageEnvelope.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageEnvelope.cs index aa3734abcb..4e234950c9 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/MessageEnvelope.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageEnvelope.cs @@ -2,9 +2,9 @@ using System; using System.Diagnostics.CodeAnalysis; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class MessageEnvelope(object message, ExecutorIdentity source, TypeId? declaredType = null, string? targetId = null) { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/MessageRouter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageRouter.cs similarity index 84% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/MessageRouter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageRouter.cs index 507bf22c93..0a23105c74 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/MessageRouter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/MessageRouter.cs @@ -5,22 +5,22 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; using Microsoft.Shared.Diagnostics; using CatchAllF = System.Func< - Microsoft.Agents.Workflows.PortableValue, // message - Microsoft.Agents.Workflows.IWorkflowContext, // context - System.Threading.Tasks.ValueTask + Microsoft.Agents.AI.Workflows.PortableValue, // message + Microsoft.Agents.AI.Workflows.IWorkflowContext, // context + System.Threading.Tasks.ValueTask >; using MessageHandlerF = System.Func< object, // message - Microsoft.Agents.Workflows.IWorkflowContext, // context - System.Threading.Tasks.ValueTask + Microsoft.Agents.AI.Workflows.IWorkflowContext, // context + System.Threading.Tasks.ValueTask >; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class MessageRouter { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/OutputFilter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/OutputFilter.cs similarity index 83% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/OutputFilter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/OutputFilter.cs index 3185db93c4..cecf1da9f8 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/OutputFilter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/OutputFilter.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class OutputFilter(Workflow workflow) { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/RunnerStateData.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/RunnerStateData.cs similarity index 84% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/RunnerStateData.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/RunnerStateData.cs index 114d1a6055..cf023f13f7 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/RunnerStateData.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/RunnerStateData.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System.Collections.Generic; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class RunnerStateData(HashSet instantiatedExecutors, Dictionary> queuedMessages, List outstandingRequests) { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/StateManager.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateManager.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/StateManager.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateManager.cs index 4e2b4dbeea..3e7ef91e0c 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/StateManager.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateManager.cs @@ -4,10 +4,10 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class StateManager { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/StateScope.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateScope.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/StateScope.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateScope.cs index a5d4dd5d0f..607f97c351 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/StateScope.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateScope.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Threading.Tasks; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class StateScope { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/StateUpdate.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateUpdate.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/StateUpdate.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateUpdate.cs index 2b00c7e89d..e01b735dd1 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/StateUpdate.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StateUpdate.cs @@ -2,7 +2,7 @@ using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class StateUpdate { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/StepContext.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StepContext.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/StepContext.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StepContext.cs index 86d5806f1f..5d0328a43d 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/StepContext.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StepContext.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Linq; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; internal sealed class StepContext { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Execution/UpdateKey.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/UpdateKey.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Execution/UpdateKey.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Execution/UpdateKey.cs index ece35fd29f..f4d7abe0bf 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Execution/UpdateKey.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/UpdateKey.cs @@ -3,7 +3,7 @@ using System; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Execution; +namespace Microsoft.Agents.AI.Workflows.Execution; /// /// Represents a unique key used to identify an update within a specific scope. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Executor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Executor.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Executor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Executor.cs index 85903c9c2f..66cece7b01 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Executor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Executor.cs @@ -6,11 +6,11 @@ using System.Diagnostics; using System.Reflection; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Execution; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Reflection; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A component that processes messages in a . diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorCompletedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorCompletedEvent.cs similarity index 92% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorCompletedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorCompletedEvent.cs index 43472af7e0..b97c06ef16 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorCompletedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorCompletedEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when an executor handler has completed. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorEvent.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorEvent.cs index 2491419922..a0d4dd73b4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorEvent.cs @@ -2,7 +2,7 @@ using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Base class for -scoped events. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorFailedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorFailedEvent.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorFailedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorFailedEvent.cs index 6b849b0af2..bc2ae40ef0 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorFailedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorFailedEvent.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when an executor handler fails. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorInvokedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorInvokedEvent.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorInvokedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorInvokedEvent.cs index 444da140e3..fbf2d96599 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorInvokedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorInvokedEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when an executor handler is invoked. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorIsh.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorIsh.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorIsh.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorIsh.cs index d7faf59e6c..f7e9add823 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorIsh.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorIsh.cs @@ -4,10 +4,10 @@ using System; using System.Threading; using System.Threading.Tasks; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows.Specialized; +using Microsoft.Agents.AI.Workflows.Specialized; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Extension methods for configuring executors and functions as instances. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorOptions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorOptions.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorOptions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorOptions.cs index 9ab55e3415..28fa19b470 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorOptions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorOptions.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Configuration options for Executor behavior. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExecutorRegistration.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorRegistration.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/ExecutorRegistration.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorRegistration.cs index 07676c8d85..e97bdf88c4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExecutorRegistration.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExecutorRegistration.cs @@ -4,9 +4,9 @@ using System; using System.Threading.Tasks; using Microsoft.Shared.Diagnostics; -using ExecutorFactoryF = System.Func>; +using ExecutorFactoryF = System.Func>; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal sealed class ExecutorRegistration(string id, Type executorType, ExecutorFactoryF provider, object? rawData) { diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExternalRequest.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExternalRequest.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/ExternalRequest.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExternalRequest.cs index edcb7fb4ea..35477ab7b4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExternalRequest.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExternalRequest.cs @@ -2,10 +2,10 @@ using System; using System.Diagnostics.CodeAnalysis; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a request to an external input port. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ExternalResponse.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ExternalResponse.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/ExternalResponse.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ExternalResponse.cs index b39b7dc9fb..bd69bbba8f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ExternalResponse.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ExternalResponse.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a request from an external input port. diff --git a/dotnet/src/Microsoft.Agents.Workflows/FanInEdgeData.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/FanInEdgeData.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows/FanInEdgeData.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/FanInEdgeData.cs index 5d937fa331..0cb2b38378 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/FanInEdgeData.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/FanInEdgeData.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using System.Collections.Generic; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a connection from a set of nodes to a single node. It will trigger either when all edges have data. diff --git a/dotnet/src/Microsoft.Agents.Workflows/FanOutEdgeData.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/FanOutEdgeData.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/FanOutEdgeData.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/FanOutEdgeData.cs index 2cd47a10b5..9d9ddf4cea 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/FanOutEdgeData.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/FanOutEdgeData.cs @@ -1,11 +1,11 @@ // Copyright (c) Microsoft. All rights reserved. using System.Collections.Generic; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using AssignerF = System.Func>; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a connection from a single node to a set of nodes, optionally associated with a paritition selector diff --git a/dotnet/src/Microsoft.Agents.Workflows/FunctionExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/FunctionExecutor.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/FunctionExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/FunctionExecutor.cs index c54b2967a6..92920f2e14 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/FunctionExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/FunctionExecutor.cs @@ -4,7 +4,7 @@ using System; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Executes a user-provided asynchronous function in response to workflow messages of the specified input type. diff --git a/dotnet/src/Microsoft.Agents.Workflows/IIdentified.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/IIdentified.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows/IIdentified.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/IIdentified.cs index 3b9a253f2a..355175362e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/IIdentified.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/IIdentified.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A tag interface for objects that have a unique identifier within an appropriate namespace. diff --git a/dotnet/src/Microsoft.Agents.Workflows/IMessageRouter.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/IMessageRouter.cs similarity index 82% rename from dotnet/src/Microsoft.Agents.Workflows/IMessageRouter.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/IMessageRouter.cs index 65723400ab..276e3cd5c6 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/IMessageRouter.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/IMessageRouter.cs @@ -3,9 +3,9 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal interface IMessageRouter { diff --git a/dotnet/src/Microsoft.Agents.Workflows/IResettableExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/IResettableExecutor.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/IResettableExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/IResettableExecutor.cs index 35f7760a0c..4f61367d15 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/IResettableExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/IResettableExecutor.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides a mechanism to return an executor to a 'reset' state, allowing a workflow containing diff --git a/dotnet/src/Microsoft.Agents.Workflows/IWorkflowContext.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/IWorkflowContext.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/IWorkflowContext.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/IWorkflowContext.cs index e720935a38..936bc337df 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/IWorkflowContext.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/IWorkflowContext.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides services for an during the execution of a workflow. diff --git a/dotnet/src/Microsoft.Agents.Workflows/InProc/InProcStepTracer.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcStepTracer.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/InProc/InProcStepTracer.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcStepTracer.cs index 7735378cb6..6f0e1fe1cc 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/InProc/InProcStepTracer.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcStepTracer.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using System.Linq; using System.Text; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.InProc; +namespace Microsoft.Agents.AI.Workflows.InProc; internal sealed class InProcStepTracer : IStepTracer { diff --git a/dotnet/src/Microsoft.Agents.Workflows/InProc/InProcessRunner.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcessRunner.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/InProc/InProcessRunner.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcessRunner.cs index d85b789c40..ca2184cb87 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/InProc/InProcessRunner.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcessRunner.cs @@ -6,11 +6,11 @@ using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.InProc; +namespace Microsoft.Agents.AI.Workflows.InProc; /// /// Provides a local, in-process runner for executing a workflow using the specified input type. diff --git a/dotnet/src/Microsoft.Agents.Workflows/InProc/InProcessRunnerContext.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcessRunnerContext.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/InProc/InProcessRunnerContext.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcessRunnerContext.cs index 546cd0bbdd..7927529cce 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/InProc/InProcessRunnerContext.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/InProc/InProcessRunnerContext.cs @@ -7,13 +7,13 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Execution; -using Microsoft.Agents.Workflows.Specialized; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Specialized; using Microsoft.Extensions.Logging; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.InProc; +namespace Microsoft.Agents.AI.Workflows.InProc; internal sealed class InProcessRunnerContext : IRunnerContext { diff --git a/dotnet/src/Microsoft.Agents.Workflows/InProcessExecution.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/InProcessExecution.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/InProcessExecution.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/InProcessExecution.cs index 403e55b0e7..2b94548ffd 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/InProcessExecution.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/InProcessExecution.cs @@ -2,9 +2,9 @@ using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.InProc; +using Microsoft.Agents.AI.Workflows.InProc; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides methods to initiate and manage in-process workflow executions, supporting both streaming and diff --git a/dotnet/src/Microsoft.Agents.Workflows/InputPort.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/InputPort.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/InputPort.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/InputPort.cs index 2263591a50..b9212cdd29 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/InputPort.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/InputPort.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// An external request port for a with the specified request and response types. diff --git a/dotnet/src/Microsoft.Agents.Workflows/MessageMerger.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/MessageMerger.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/MessageMerger.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/MessageMerger.cs index 89a70c64ab..c8e4b7f346 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/MessageMerger.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/MessageMerger.cs @@ -7,7 +7,7 @@ using Microsoft.Agents.AI; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal sealed class MessageMerger { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Microsoft.Agents.Workflows.csproj b/dotnet/src/Microsoft.Agents.AI.Workflows/Microsoft.Agents.AI.Workflows.csproj similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/Microsoft.Agents.Workflows.csproj rename to dotnet/src/Microsoft.Agents.AI.Workflows/Microsoft.Agents.AI.Workflows.csproj index 02f11fedd4..d2554bcd13 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Microsoft.Agents.Workflows.csproj +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Microsoft.Agents.AI.Workflows.csproj @@ -29,7 +29,7 @@ - + diff --git a/dotnet/src/Microsoft.Agents.Workflows/PortableValue.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/PortableValue.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/PortableValue.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/PortableValue.cs index 6898440e91..4a7ffe6210 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/PortableValue.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/PortableValue.cs @@ -4,10 +4,10 @@ using System; using System.Diagnostics.CodeAnalysis; using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a value that can be exported / imported to a workflow, e.g. through an external request/response, or diff --git a/dotnet/src/Microsoft.Agents.Workflows/Reflection/IMessageHandler.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/IMessageHandler.cs similarity index 96% rename from dotnet/src/Microsoft.Agents.Workflows/Reflection/IMessageHandler.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/IMessageHandler.cs index 9678b0086a..1903e49d44 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Reflection/IMessageHandler.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/IMessageHandler.cs @@ -2,7 +2,7 @@ using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Reflection; +namespace Microsoft.Agents.AI.Workflows.Reflection; /// /// A message handler interface for handling messages of type . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Reflection/MessageHandlerInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/MessageHandlerInfo.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Reflection/MessageHandlerInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/MessageHandlerInfo.cs index df9778f824..e00675c473 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Reflection/MessageHandlerInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/MessageHandlerInfo.cs @@ -6,9 +6,9 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Reflection; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.Reflection; +namespace Microsoft.Agents.AI.Workflows.Reflection; internal readonly struct MessageHandlerInfo { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Reflection/ReflectingExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ReflectingExecutor.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/Reflection/ReflectingExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ReflectingExecutor.cs index 9213a25104..61958cfbf9 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Reflection/ReflectingExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ReflectingExecutor.cs @@ -2,7 +2,7 @@ using System.Diagnostics.CodeAnalysis; -namespace Microsoft.Agents.Workflows.Reflection; +namespace Microsoft.Agents.AI.Workflows.Reflection; /// /// A component that processes messages in a . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Reflection/ReflectionExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ReflectionExtensions.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Reflection/ReflectionExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ReflectionExtensions.cs index fd8980d4cc..3653e23db2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Reflection/ReflectionExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ReflectionExtensions.cs @@ -9,7 +9,7 @@ using System.Reflection; using System.Linq; #endif -namespace Microsoft.Agents.Workflows.Reflection; +namespace Microsoft.Agents.AI.Workflows.Reflection; internal static class ReflectionDemands { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Reflection/RouteBuilderExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/RouteBuilderExtensions.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Reflection/RouteBuilderExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/RouteBuilderExtensions.cs index e8d67b8db7..9cb61a4be2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Reflection/RouteBuilderExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/RouteBuilderExtensions.cs @@ -7,7 +7,7 @@ using System.Diagnostics.CodeAnalysis; using System.Reflection; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Reflection; +namespace Microsoft.Agents.AI.Workflows.Reflection; internal static class IMessageHandlerReflection { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Reflection/ValueTaskTypeErasure.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ValueTaskTypeErasure.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Reflection/ValueTaskTypeErasure.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ValueTaskTypeErasure.cs index 8925baa89f..f8aa22b8b6 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Reflection/ValueTaskTypeErasure.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Reflection/ValueTaskTypeErasure.cs @@ -5,7 +5,7 @@ using System.Diagnostics; using System.Reflection; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Reflection; +namespace Microsoft.Agents.AI.Workflows.Reflection; internal static class ValueTaskReflection { diff --git a/dotnet/src/Microsoft.Agents.Workflows/RequestHaltEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/RequestHaltEvent.cs similarity index 87% rename from dotnet/src/Microsoft.Agents.Workflows/RequestHaltEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/RequestHaltEvent.cs index c5d1d8e98d..18ac29aec4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/RequestHaltEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/RequestHaltEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow completes execution. diff --git a/dotnet/src/Microsoft.Agents.Workflows/RequestInfoEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/RequestInfoEvent.cs similarity index 90% rename from dotnet/src/Microsoft.Agents.Workflows/RequestInfoEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/RequestInfoEvent.cs index 3c4a76673f..35ac63f137 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/RequestInfoEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/RequestInfoEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow executor request external information. diff --git a/dotnet/src/Microsoft.Agents.Workflows/RouteBuilder.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/RouteBuilder.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/RouteBuilder.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/RouteBuilder.cs index 22ae8eb092..fe9ba12bcc 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/RouteBuilder.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/RouteBuilder.cs @@ -4,22 +4,22 @@ using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Shared.Diagnostics; using CatchAllF = System.Func< - Microsoft.Agents.Workflows.PortableValue, // message - Microsoft.Agents.Workflows.IWorkflowContext, // context - System.Threading.Tasks.ValueTask + Microsoft.Agents.AI.Workflows.PortableValue, // message + Microsoft.Agents.AI.Workflows.IWorkflowContext, // context + System.Threading.Tasks.ValueTask >; using MessageHandlerF = System.Func< object, // message - Microsoft.Agents.Workflows.IWorkflowContext, // context - System.Threading.Tasks.ValueTask + Microsoft.Agents.AI.Workflows.IWorkflowContext, // context + System.Threading.Tasks.ValueTask >; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides a builder for configuring message type handlers for an . diff --git a/dotnet/src/Microsoft.Agents.Workflows/Run.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Run.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/Run.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Run.cs index 33013fad0c..113a47028d 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Run.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Run.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Specifies the current operational state of a workflow run. diff --git a/dotnet/src/Microsoft.Agents.Workflows/ScopeId.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ScopeId.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/ScopeId.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ScopeId.cs index 42e45ab30a..d6f505822b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ScopeId.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ScopeId.cs @@ -2,7 +2,7 @@ using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A unique identifier for a scope within an executor. If a scope name is not provided, it references the diff --git a/dotnet/src/Microsoft.Agents.Workflows/ScopeKey.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ScopeKey.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/ScopeKey.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/ScopeKey.cs index 9e9305557c..c2e7142838 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/ScopeKey.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ScopeKey.cs @@ -4,7 +4,7 @@ using System; using System.Text.Json.Serialization; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Represents a unique key within a specific scope, combining a scope identifier and a key string. diff --git a/dotnet/src/Microsoft.Agents.Workflows/Specialized/AIAgentHostExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/AIAgentHostExecutor.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Specialized/AIAgentHostExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/AIAgentHostExecutor.cs index a3831aab8c..7b030f1171 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Specialized/AIAgentHostExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/AIAgentHostExecutor.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Specialized; +namespace Microsoft.Agents.AI.Workflows.Specialized; internal sealed class AIAgentHostExecutor : ChatProtocolExecutor { diff --git a/dotnet/src/Microsoft.Agents.Workflows/Specialized/RequestInfoExecutor.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/RequestInfoExecutor.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/Specialized/RequestInfoExecutor.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/RequestInfoExecutor.cs index 4f0278d100..4dc9259cd0 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Specialized/RequestInfoExecutor.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Specialized/RequestInfoExecutor.cs @@ -4,10 +4,10 @@ using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows.Specialized; +namespace Microsoft.Agents.AI.Workflows.Specialized; internal sealed class RequestInfoExecutor : Executor { diff --git a/dotnet/src/Microsoft.Agents.Workflows/StreamingAggregators.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/StreamingAggregators.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/StreamingAggregators.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/StreamingAggregators.cs index 1a1c5614b1..89e77b45eb 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/StreamingAggregators.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/StreamingAggregators.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides a set of streaming aggregation functions for processing sequences of input values in a stateful, diff --git a/dotnet/src/Microsoft.Agents.Workflows/StreamingRun.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/StreamingRun.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/StreamingRun.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/StreamingRun.cs index 7921c43b41..cdcef89ffd 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/StreamingRun.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/StreamingRun.cs @@ -6,10 +6,10 @@ using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A run instance supporting a streaming form of receiving workflow events, and providing diff --git a/dotnet/src/Microsoft.Agents.Workflows/StreamsMessageAttribute.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/StreamsMessageAttribute.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/StreamsMessageAttribute.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/StreamsMessageAttribute.cs index 65c29a10c2..43f9d59a5f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/StreamsMessageAttribute.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/StreamsMessageAttribute.cs @@ -3,7 +3,7 @@ using System; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// This attribute indicates that a message handler streams messages during its execution. diff --git a/dotnet/src/Microsoft.Agents.Workflows/SuperStepCompletedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepCompletedEvent.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/SuperStepCompletedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepCompletedEvent.cs index 9c1f7a43b0..1607d62351 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/SuperStepCompletedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepCompletedEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a SuperStep completed. diff --git a/dotnet/src/Microsoft.Agents.Workflows/SuperStepCompletionInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepCompletionInfo.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/SuperStepCompletionInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepCompletionInfo.cs index 582823a699..da5d5cd59b 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/SuperStepCompletionInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepCompletionInfo.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Debug information about the SuperStep that finished running. diff --git a/dotnet/src/Microsoft.Agents.Workflows/SuperStepEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepEvent.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/SuperStepEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepEvent.cs index 54afdc2fd1..1be9532a9e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/SuperStepEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepEvent.cs @@ -2,7 +2,7 @@ using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Base class for SuperStep-scoped events, for example, diff --git a/dotnet/src/Microsoft.Agents.Workflows/SuperStepStartInfo.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartInfo.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/SuperStepStartInfo.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartInfo.cs index 48a1de1771..94ccb06dd1 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/SuperStepStartInfo.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartInfo.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Debug information about the SuperStep starting to run. diff --git a/dotnet/src/Microsoft.Agents.Workflows/SuperStepStartedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartedEvent.cs similarity index 94% rename from dotnet/src/Microsoft.Agents.Workflows/SuperStepStartedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartedEvent.cs index 9a5d1fb18e..6d729df0d7 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/SuperStepStartedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/SuperStepStartedEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a SuperStep started. diff --git a/dotnet/src/Microsoft.Agents.Workflows/SwitchBuilder.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/SwitchBuilder.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/SwitchBuilder.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/SwitchBuilder.cs index 495ee3474a..306acd4b4e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/SwitchBuilder.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/SwitchBuilder.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Diagnostics; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides a builder for constructing a switch-like control flow that maps predicates to one or more executors. diff --git a/dotnet/src/Microsoft.Agents.Workflows/TurnToken.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/TurnToken.cs similarity index 93% rename from dotnet/src/Microsoft.Agents.Workflows/TurnToken.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/TurnToken.cs index 56ca3b31d8..6520a4ea21 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/TurnToken.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/TurnToken.cs @@ -2,7 +2,7 @@ using Microsoft.Agents.AI; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Sent to an -based executor to request diff --git a/dotnet/src/Microsoft.Agents.Workflows/Workflow.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Workflow.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/Workflow.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/Workflow.cs index 3de7079d09..62b09ebfa5 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/Workflow.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Workflow.cs @@ -6,10 +6,10 @@ using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// A class that represents a workflow that can be executed. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowBuilder.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowBuilder.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowBuilder.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowBuilder.cs index 626a293dbd..ca56e70527 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowBuilder.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowBuilder.cs @@ -7,7 +7,7 @@ using System.Threading; using System.Threading.Tasks; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides a builder for constructing and configuring a workflow by defining executors and the connections between diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowBuilderExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowBuilderExtensions.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowBuilderExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowBuilderExtensions.cs index bae1a3ff87..49366a327f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowBuilderExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowBuilderExtensions.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides extension methods for configuring and building workflows using the WorkflowBuilder type. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowErrorEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowErrorEvent.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowErrorEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowErrorEvent.cs index edb4d3dbf0..84d8d6b45e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowErrorEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowErrorEvent.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow encounters an error. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowEvent.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowEvent.cs index 23e0ee713b..76b379a611 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowEvent.cs @@ -2,7 +2,7 @@ using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Base class for -scoped events. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowHostAgent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowHostAgent.cs similarity index 99% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowHostAgent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowHostAgent.cs index a55a7ce124..41e1344d2e 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowHostAgent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowHostAgent.cs @@ -13,7 +13,7 @@ using Microsoft.Agents.AI; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal sealed class WorkflowHostAgent : AIAgent { diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowHostingExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowHostingExtensions.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowHostingExtensions.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowHostingExtensions.cs index 93c0a2b7d2..fb13a4bad2 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowHostingExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowHostingExtensions.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Provides extension methods for treating workflows as diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowMessageStore.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowMessageStore.cs similarity index 98% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowMessageStore.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowMessageStore.cs index fd07c5a8bc..076ef24af4 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowMessageStore.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowMessageStore.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal sealed class WorkflowMessageStore : ChatMessageStore { diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowOutputEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowOutputEvent.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowOutputEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowOutputEvent.cs index 1cba1860fb..68ec6a81ac 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowOutputEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowOutputEvent.cs @@ -2,7 +2,7 @@ using System; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow executor yields output. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowStartedEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowStartedEvent.cs similarity index 88% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowStartedEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowStartedEvent.cs index bed7e9836c..1d484bd228 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowStartedEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowStartedEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow starts execution. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowThread.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowThread.cs similarity index 97% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowThread.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowThread.cs index 54e5ba2835..965bd49753 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowThread.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowThread.cs @@ -6,7 +6,7 @@ using Microsoft.Agents.AI; using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; internal sealed class WorkflowThread : AgentThread { diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowWarningEvent.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowWarningEvent.cs similarity index 87% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowWarningEvent.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowWarningEvent.cs index f9c49b0f25..a70a614ebe 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowWarningEvent.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowWarningEvent.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// /// Event triggered when a workflow encounters a warning-condition. diff --git a/dotnet/src/Microsoft.Agents.Workflows/WorkflowsJsonUtilities.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowsJsonUtilities.cs similarity index 95% rename from dotnet/src/Microsoft.Agents.Workflows/WorkflowsJsonUtilities.cs rename to dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowsJsonUtilities.cs index a9eaf65dd5..ebfd1acd4f 100644 --- a/dotnet/src/Microsoft.Agents.Workflows/WorkflowsJsonUtilities.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/WorkflowsJsonUtilities.cs @@ -4,12 +4,12 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Text.Json; using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Extensions.AI; -using static Microsoft.Agents.Workflows.WorkflowMessageStore; +using static Microsoft.Agents.AI.Workflows.WorkflowMessageStore; -namespace Microsoft.Agents.Workflows; +namespace Microsoft.Agents.AI.Workflows; /// Provides a collection of utility methods for working with JSON data in the context of workflows. internal static partial class WorkflowsJsonUtilities diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Agents/TestAgent.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Agents/TestAgent.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Agents/TestAgent.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Agents/TestAgent.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs similarity index 95% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs index c61c527976..e67431cebb 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs @@ -7,13 +7,13 @@ using Azure; using Azure.AI.Agents.Persistent; using Azure.Identity; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +using Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; using Microsoft.Extensions.AI; using Microsoft.Extensions.Configuration; using Shared.IntegrationTests; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests; public sealed class AzureAgentProviderTest(ITestOutputHelper output) : IntegrationTest(output) { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs similarity index 93% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs index a88e34cb82..9da2de264c 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs @@ -3,10 +3,10 @@ using System.IO; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +using Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests; /// /// Tests execution of workflow created by . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/AgentFactory.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/AgentFactory.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/AgentFactory.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/AgentFactory.cs index 0d43836bc6..c9427fdb52 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/AgentFactory.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/AgentFactory.cs @@ -18,7 +18,7 @@ using Microsoft.SemanticKernel.Agents; using Microsoft.SemanticKernel.Agents.AzureAI; using Shared.IntegrationTests; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; #pragma warning disable SKEXP0110 // Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/IntegrationTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/IntegrationTest.cs similarity index 90% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/IntegrationTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/IntegrationTest.cs index cb54d5b410..5196445f1e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/IntegrationTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/IntegrationTest.cs @@ -2,12 +2,12 @@ using System; using System.Reflection; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.Configuration; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; /// /// Base class for workflow tests. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/TestOutputAdapter.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/TestOutputAdapter.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/TestOutputAdapter.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/TestOutputAdapter.cs index 5887c185ea..5eeb11f3f7 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/TestOutputAdapter.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/TestOutputAdapter.cs @@ -7,7 +7,7 @@ using System.Text; using Microsoft.Extensions.Logging; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; public sealed class TestOutputAdapter(ITestOutputHelper output) : TextWriter, ILogger, ILoggerFactory { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/Testcase.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/Testcase.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/Testcase.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/Testcase.cs index 1c4b277d7f..8fb7721ebd 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/Testcase.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/Testcase.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; public sealed class Testcase { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowEvents.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowEvents.cs similarity index 93% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowEvents.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowEvents.cs index a67d982d7a..d933dd2af9 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowEvents.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowEvents.cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; internal sealed class WorkflowEvents { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowHarness.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowHarness.cs similarity index 87% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowHarness.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowHarness.cs index 142cf0ebc2..59cf96903e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowHarness.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowHarness.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; internal static class WorkflowHarness { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowTest.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowTest.cs index 94fc7700e9..0e3af235c0 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Framework/WorkflowTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Framework/WorkflowTest.cs @@ -14,7 +14,7 @@ using Shared.IntegrationTests; using Xunit.Abstractions; using Xunit.Sdk; -namespace Microsoft.Agents.Workflows.Declarative.IntegrationTests.Framework; +namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework; /// /// Base class for workflow tests. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Microsoft.Agents.Workflows.Declarative.IntegrationTests.csproj b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.csproj similarity index 89% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Microsoft.Agents.Workflows.Declarative.IntegrationTests.csproj rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.csproj index 515726467d..7660a9d98a 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Microsoft.Agents.Workflows.Declarative.IntegrationTests.csproj +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.csproj @@ -10,7 +10,7 @@ - + diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/ConversationMessages.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/ConversationMessages.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/ConversationMessages.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/ConversationMessages.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/DeepResearch.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/DeepResearch.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/DeepResearch.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/DeepResearch.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/HumanInLoop.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/HumanInLoop.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/HumanInLoop.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/HumanInLoop.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/InvokeAgent.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/InvokeAgent.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/InvokeAgent.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/InvokeAgent.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/Marketing.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/Marketing.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/Marketing.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/Marketing.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/MathChat.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/MathChat.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/MathChat.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/MathChat.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/SendActivity.json b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/SendActivity.json similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Testcases/SendActivity.json rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Testcases/SendActivity.json diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/ConversationMessages.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/ConversationMessages.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/ConversationMessages.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/ConversationMessages.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/GetMessage.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/GetMessage.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/GetMessage.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/GetMessage.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/GetMessages.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/GetMessages.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/GetMessages.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/GetMessages.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/InvokeAgent.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/InvokeAgent.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/InvokeAgent.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/InvokeAgent.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/SendActivity.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/SendActivity.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.IntegrationTests/Workflows/SendActivity.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/Workflows/SendActivity.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowContextTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowContextTest.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowContextTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowContextTest.cs index 83bbbfee22..20d9a32878 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowContextTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowContextTest.cs @@ -6,7 +6,7 @@ using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; using Moq; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests; public class DeclarativeWorkflowContextTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowExceptionTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowExceptionTest.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowExceptionTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowExceptionTest.cs index bf41f1fc33..cbe3ac0a81 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowExceptionTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowExceptionTest.cs @@ -3,7 +3,7 @@ using System; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests; /// /// Tests declarative workflow exceptions. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowTest.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowTest.cs index 68504e2d65..2bdd68a72a 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/DeclarativeWorkflowTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/DeclarativeWorkflowTest.cs @@ -6,14 +6,14 @@ using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Extensions.AI; using Moq; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests; /// /// Tests execution of workflow created by . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Extensions/FormulaValueExtensionsTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/FormulaValueExtensionsTests.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Extensions/FormulaValueExtensionsTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/FormulaValueExtensionsTests.cs index 7d73714d34..c0296f1a64 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Extensions/FormulaValueExtensionsTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/FormulaValueExtensionsTests.cs @@ -3,11 +3,11 @@ using System; using System.Collections.Generic; using System.Linq; -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.Extensions; public class FormulaValueExtensionsTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Extensions/StringExtensionsTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/StringExtensionsTests.cs similarity index 95% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Extensions/StringExtensionsTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/StringExtensionsTests.cs index 87a5ce6848..c6dd4cc80c 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Extensions/StringExtensionsTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Extensions/StringExtensionsTests.cs @@ -1,8 +1,8 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.Extensions; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.Extensions; public class StringExtensionsTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Interpreter/WorkflowModelTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Interpreter/WorkflowModelTest.cs similarity index 92% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Interpreter/WorkflowModelTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Interpreter/WorkflowModelTest.cs index ad6757e5df..2807dc14fe 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Interpreter/WorkflowModelTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Interpreter/WorkflowModelTest.cs @@ -2,11 +2,11 @@ using System; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Reflection; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.Interpreter; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.Interpreter; /// /// Tests execution of workflow created by . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Microsoft.Agents.Workflows.Declarative.UnitTests.csproj b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests.csproj similarity index 78% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Microsoft.Agents.Workflows.Declarative.UnitTests.csproj rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests.csproj index 9b38c20fcc..8d8095960b 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Microsoft.Agents.Workflows.Declarative.UnitTests.csproj +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests.csproj @@ -6,7 +6,7 @@ - + diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ClearAllVariablesExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ClearAllVariablesExecutorTest.cs similarity index 93% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ClearAllVariablesExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ClearAllVariablesExecutorTest.cs index 5838d4be7e..d9e4228aa7 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ClearAllVariablesExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ClearAllVariablesExecutorTest.cs @@ -1,12 +1,12 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Tests for . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ParseValueExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ParseValueExecutorTest.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ParseValueExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ParseValueExecutorTest.cs index 7b7cb352dc..170e27e80e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ParseValueExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ParseValueExecutorTest.cs @@ -1,12 +1,12 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Tests for . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ResetVariableExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ResetVariableExecutorTest.cs similarity index 93% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ResetVariableExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ResetVariableExecutorTest.cs index 7440f367ca..562475131b 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/ResetVariableExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/ResetVariableExecutorTest.cs @@ -1,12 +1,12 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Tests for . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SendActivityExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SendActivityExecutorTest.cs similarity index 91% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SendActivityExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SendActivityExecutorTest.cs index 6f1f45a52b..a1b44134c7 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SendActivityExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SendActivityExecutorTest.cs @@ -1,11 +1,11 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; using Microsoft.Bot.ObjectModel; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Tests for . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SetTextVariableExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SetTextVariableExecutorTest.cs similarity index 93% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SetTextVariableExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SetTextVariableExecutorTest.cs index beea04eee8..8d98c91e64 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SetTextVariableExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SetTextVariableExecutorTest.cs @@ -1,12 +1,12 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Tests for . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SetVariableExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SetVariableExecutorTest.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SetVariableExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SetVariableExecutorTest.cs index 2ffa4120dc..177745c3f1 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/SetVariableExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/SetVariableExecutorTest.cs @@ -1,12 +1,12 @@ // Copyright (c) Microsoft. All rights reserved. using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.ObjectModel; +using Microsoft.Agents.AI.Workflows.Declarative.ObjectModel; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Tests for . diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/WorkflowActionExecutorTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/WorkflowActionExecutorTest.cs similarity index 90% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/WorkflowActionExecutorTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/WorkflowActionExecutorTest.cs index f16249f70f..67df3e2526 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/ObjectModel/WorkflowActionExecutorTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/ObjectModel/WorkflowActionExecutorTest.cs @@ -3,15 +3,15 @@ using System; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.Interpreter; -using Microsoft.Agents.Workflows.Declarative.PowerFx; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Interpreter; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Reflection; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.ObjectModel; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.ObjectModel; /// /// Base test class for implementations. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineFactoryTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineFactoryTests.cs similarity index 94% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineFactoryTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineFactoryTests.cs index 6998a19de8..976ad796b9 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineFactoryTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineFactoryTests.cs @@ -1,11 +1,11 @@ // Copyright (c) Microsoft. All rights reserved. using System.Collections.Generic; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.PowerFx; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.PowerFx; public class RecalcEngineFactoryTests(ITestOutputHelper output) : WorkflowTest(output) { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineTest.cs similarity index 76% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineTest.cs index 8321ce0d1b..eeaefaf669 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/RecalcEngineTest.cs @@ -1,10 +1,10 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.PowerFx; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.PowerFx; /// /// Base test class for PowerFx engine tests. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/TemplateExtensionsTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/TemplateExtensionsTests.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/TemplateExtensionsTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/TemplateExtensionsTests.cs index 3a45d8bbb5..ae79631d36 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/TemplateExtensionsTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/TemplateExtensionsTests.cs @@ -1,12 +1,12 @@ // Copyright (c) Microsoft. All rights reserved. using System.Collections.Generic; -using Microsoft.Agents.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.PowerFx; public class TemplateExtensionsTests(ITestOutputHelper output) : RecalcEngineTest(output) { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/WorkflowExpressionEngineTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/WorkflowExpressionEngineTests.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/WorkflowExpressionEngineTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/WorkflowExpressionEngineTests.cs index 5d74e3ff1e..3e1999002e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/WorkflowExpressionEngineTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/WorkflowExpressionEngineTests.cs @@ -2,15 +2,15 @@ using System; using System.Collections.Immutable; -using Microsoft.Agents.Workflows.Declarative.Extensions; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.Extensions; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.Bot.ObjectModel.Abstractions; using Microsoft.Bot.ObjectModel.Exceptions; using Microsoft.PowerFx.Types; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.PowerFx; public class WorkflowExpressionEngineTests : RecalcEngineTest { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/WorkflowFormulaStateTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/WorkflowFormulaStateTests.cs similarity index 94% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/WorkflowFormulaStateTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/WorkflowFormulaStateTests.cs index 0ee97de4ea..c391c1d9ff 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/PowerFx/WorkflowFormulaStateTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/PowerFx/WorkflowFormulaStateTests.cs @@ -1,10 +1,10 @@ // Copyright (c) Microsoft. All rights reserved. -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Microsoft.PowerFx.Types; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests.PowerFx; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.PowerFx; public class WorkflowFormulaStateTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/TestOutputAdapter.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/TestOutputAdapter.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/TestOutputAdapter.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/TestOutputAdapter.cs index 25c8260cc5..7d1e39ee97 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/TestOutputAdapter.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/TestOutputAdapter.cs @@ -7,7 +7,7 @@ using System.Text; using Microsoft.Extensions.Logging; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests; public sealed class TestOutputAdapter(ITestOutputHelper output) : TextWriter, ILogger, ILoggerFactory { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/WorkflowTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/WorkflowTest.cs similarity index 91% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/WorkflowTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/WorkflowTest.cs index 1c5cb31cfc..d9138f398c 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/WorkflowTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/WorkflowTest.cs @@ -1,11 +1,11 @@ // Copyright (c) Microsoft. All rights reserved. using System; -using Microsoft.Agents.Workflows.Declarative.PowerFx; +using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.Bot.ObjectModel; using Xunit.Abstractions; -namespace Microsoft.Agents.Workflows.Declarative.UnitTests; +namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests; /// /// Base class for workflow tests. diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/BadEmpty.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/BadEmpty.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/BadEmpty.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/BadEmpty.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/BadId.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/BadId.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/BadId.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/BadId.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/BadKind.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/BadKind.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/BadKind.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/BadKind.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ClearAllVariables.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ClearAllVariables.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ClearAllVariables.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ClearAllVariables.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/Condition.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/Condition.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/Condition.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/Condition.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ConditionElse.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ConditionElse.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ConditionElse.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ConditionElse.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EditTable.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EditTable.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EditTable.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EditTable.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EditTableV2.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EditTableV2.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EditTableV2.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EditTableV2.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EndConversation.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EndConversation.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EndConversation.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EndConversation.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EndDialog.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EndDialog.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/EndDialog.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/EndDialog.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/Goto.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/Goto.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/Goto.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/Goto.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/LoopBreak.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/LoopBreak.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/LoopBreak.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/LoopBreak.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/LoopContinue.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/LoopContinue.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/LoopContinue.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/LoopContinue.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/LoopEach.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/LoopEach.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/LoopEach.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/LoopEach.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/MixedScopes.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/MixedScopes.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/MixedScopes.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/MixedScopes.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ParseValue.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ParseValue.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ParseValue.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ParseValue.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ResetVariable.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ResetVariable.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/ResetVariable.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/ResetVariable.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/SendActivity.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/SendActivity.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/SendActivity.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/SendActivity.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/SetTextVariable.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/SetTextVariable.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/SetTextVariable.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/SetTextVariable.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/SetVariable.yaml b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/SetVariable.yaml similarity index 100% rename from dotnet/tests/Microsoft.Agents.Workflows.Declarative.UnitTests/Workflows/SetVariable.yaml rename to dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.UnitTests/Workflows/SetVariable.yaml diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/AgentWorkflowBuilderTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/AgentWorkflowBuilderTests.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/AgentWorkflowBuilderTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/AgentWorkflowBuilderTests.cs index 67d60f75a3..0c0dd82897 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/AgentWorkflowBuilderTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/AgentWorkflowBuilderTests.cs @@ -14,7 +14,7 @@ using Microsoft.Extensions.AI; #pragma warning disable SYSLIB1045 // Use GeneratedRegex #pragma warning disable RCS1186 // Use Regex instance instead of static method -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class AgentWorkflowBuilderTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ChatMessageBuilder.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ChatMessageBuilder.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ChatMessageBuilder.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ChatMessageBuilder.cs index d7d3142ccc..4e9218a6f2 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ChatMessageBuilder.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ChatMessageBuilder.cs @@ -6,7 +6,7 @@ using System.Linq; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal static class TextMessageStreamingExtensions { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/EdgeMapSmokeTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/EdgeMapSmokeTests.cs similarity index 94% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/EdgeMapSmokeTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/EdgeMapSmokeTests.cs index e6035af1be..7f463c0373 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/EdgeMapSmokeTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/EdgeMapSmokeTests.cs @@ -4,9 +4,9 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using FluentAssertions; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class EdgeMapSmokeTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/EdgeRunnerTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/EdgeRunnerTests.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/EdgeRunnerTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/EdgeRunnerTests.cs index 5286953adb..0880b14353 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/EdgeRunnerTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/EdgeRunnerTests.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; using FluentAssertions; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class EdgeRunnerTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ForwardMessageExecutor.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ForwardMessageExecutor.cs similarity index 86% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ForwardMessageExecutor.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ForwardMessageExecutor.cs index 083135c275..85f7a4491e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ForwardMessageExecutor.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ForwardMessageExecutor.cs @@ -1,6 +1,6 @@ // Copyright (c) Microsoft. All rights reserved. -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal sealed class ForwardMessageExecutor(string id) : Executor(id) where TMessage : notnull { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/InMemoryJsonStore.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/InMemoryJsonStore.cs similarity index 92% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/InMemoryJsonStore.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/InMemoryJsonStore.cs index 803487526b..6746dc01d4 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/InMemoryJsonStore.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/InMemoryJsonStore.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.Text.Json; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Checkpointing; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal sealed class InMemoryJsonStore : JsonCheckpointStore { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/InProcessStateTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/InProcessStateTests.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/InProcessStateTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/InProcessStateTests.cs index 083be3d48d..28756c6b91 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/InProcessStateTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/InProcessStateTests.cs @@ -5,7 +5,7 @@ using System.Threading; using System.Threading.Tasks; using FluentAssertions; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class InProcessStateTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/JsonSerializationTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/JsonSerializationTests.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/JsonSerializationTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/JsonSerializationTests.cs index f4b4884f76..779943dbc8 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/JsonSerializationTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/JsonSerializationTests.cs @@ -10,11 +10,11 @@ using System.Text.Json.Serialization.Metadata; using System.Threading; using System.Threading.Tasks; using FluentAssertions; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class JsonSerializationTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/MessageDeliveryValidation.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/MessageDeliveryValidation.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/MessageDeliveryValidation.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/MessageDeliveryValidation.cs index e009615702..cc4d754f03 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/MessageDeliveryValidation.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/MessageDeliveryValidation.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using System.Linq; using FluentAssertions; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal static class MessageDeliveryValidation { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/MessageMergerTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/MessageMergerTests.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/MessageMergerTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/MessageMergerTests.cs index 879240f6fe..9373baed18 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/MessageMergerTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/MessageMergerTests.cs @@ -5,7 +5,7 @@ using FluentAssertions; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class MessageMergerTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Microsoft.Agents.Workflows.UnitTests.csproj b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Microsoft.Agents.AI.Workflows.UnitTests.csproj similarity index 80% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Microsoft.Agents.Workflows.UnitTests.csproj rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Microsoft.Agents.AI.Workflows.UnitTests.csproj index fec54d1e1b..22fd534b81 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Microsoft.Agents.Workflows.UnitTests.csproj +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Microsoft.Agents.AI.Workflows.UnitTests.csproj @@ -6,7 +6,7 @@ - + diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ReflectionSmokeTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ReflectionSmokeTest.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ReflectionSmokeTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ReflectionSmokeTest.cs index 114a5e7e45..dd8470b11c 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ReflectionSmokeTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ReflectionSmokeTest.cs @@ -2,11 +2,11 @@ using System; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Reflection; using Moq; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class BaseTestExecutor(string id) : ReflectingExecutor(id) where TActual : ReflectingExecutor { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/RepresentationTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/RepresentationTests.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/RepresentationTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/RepresentationTests.cs index c9b44113a6..5ffdfaa849 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/RepresentationTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/RepresentationTests.cs @@ -7,12 +7,12 @@ using System.Threading; using System.Threading.Tasks; using FluentAssertions; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Sample; -using Microsoft.Agents.Workflows.Specialized; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Sample; +using Microsoft.Agents.AI.Workflows.Specialized; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class RepresentationTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/01_Simple_Workflow_Sequential.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/01_Simple_Workflow_Sequential.cs similarity index 94% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/01_Simple_Workflow_Sequential.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/01_Simple_Workflow_Sequential.cs index ad6ea26ab1..90e35bc6e2 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/01_Simple_Workflow_Sequential.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/01_Simple_Workflow_Sequential.cs @@ -3,9 +3,9 @@ using System.IO; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Reflection; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step1EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/01a_Simple_Workflow_Sequential.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/01a_Simple_Workflow_Sequential.cs similarity index 84% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/01a_Simple_Workflow_Sequential.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/01a_Simple_Workflow_Sequential.cs index 0295086dd1..06f310a1aa 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/01a_Simple_Workflow_Sequential.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/01a_Simple_Workflow_Sequential.cs @@ -3,9 +3,9 @@ using System.IO; using System.Threading.Tasks; -using static Microsoft.Agents.Workflows.Sample.Step1EntryPoint; +using static Microsoft.Agents.AI.Workflows.Sample.Step1EntryPoint; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step1aEntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/02_Simple_Workflow_Condition.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/02_Simple_Workflow_Condition.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/02_Simple_Workflow_Condition.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/02_Simple_Workflow_Condition.cs index 3b063dfd4b..fa404fd1e1 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/02_Simple_Workflow_Condition.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/02_Simple_Workflow_Condition.cs @@ -4,9 +4,9 @@ using System; using System.IO; using System.Linq; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Reflection; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step2EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/03_Simple_Workflow_Loop.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/03_Simple_Workflow_Loop.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/03_Simple_Workflow_Loop.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/03_Simple_Workflow_Loop.cs index 775998cc22..b77cb45dfc 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/03_Simple_Workflow_Loop.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/03_Simple_Workflow_Loop.cs @@ -4,9 +4,9 @@ using System; using System.IO; using System.Threading; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Reflection; +using Microsoft.Agents.AI.Workflows.Reflection; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step3EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/04_Simple_Workflow_ExternalRequest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/04_Simple_Workflow_ExternalRequest.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/04_Simple_Workflow_ExternalRequest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/04_Simple_Workflow_ExternalRequest.cs index 4cc8286a86..63e433a665 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/04_Simple_Workflow_ExternalRequest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/04_Simple_Workflow_ExternalRequest.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.IO; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step4EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/05_Simple_Workflow_Checkpointing.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/05_Simple_Workflow_Checkpointing.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/05_Simple_Workflow_Checkpointing.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/05_Simple_Workflow_Checkpointing.cs index 483745dce7..5f94f78a24 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/05_Simple_Workflow_Checkpointing.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/05_Simple_Workflow_Checkpointing.cs @@ -7,7 +7,7 @@ using System.Threading; using System.Threading.Tasks; using FluentAssertions; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step5EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/06_GroupChat_Workflow.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/06_GroupChat_Workflow.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/06_GroupChat_Workflow.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/06_GroupChat_Workflow.cs index 577b159706..bfcbb99708 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/06_GroupChat_Workflow.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/06_GroupChat_Workflow.cs @@ -13,7 +13,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step6EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/07_GroupChat_Workflow_HostAsAgent.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/07_GroupChat_Workflow_HostAsAgent.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/07_GroupChat_Workflow_HostAsAgent.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/07_GroupChat_Workflow_HostAsAgent.cs index d8282e84b0..b9ebff92cc 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/Sample/07_GroupChat_Workflow_HostAsAgent.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/Sample/07_GroupChat_Workflow_HostAsAgent.cs @@ -7,7 +7,7 @@ using System.Threading.Tasks; using Microsoft.Agents.AI; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.Sample; +namespace Microsoft.Agents.AI.Workflows.Sample; internal static class Step7EntryPoint { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SampleJsonContext.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SampleJsonContext.cs similarity index 75% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SampleJsonContext.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SampleJsonContext.cs index d9148e1407..e2df0bfd36 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SampleJsonContext.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SampleJsonContext.cs @@ -2,9 +2,9 @@ using System.Diagnostics.CodeAnalysis; using System.Text.Json.Serialization; -using Microsoft.Agents.Workflows.Sample; +using Microsoft.Agents.AI.Workflows.Sample; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; // Checkpointing Types [JsonSerializable(typeof(NumberSignal))] diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SampleSmokeTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SampleSmokeTest.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SampleSmokeTest.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SampleSmokeTest.cs index 102049918d..3cadefe0f3 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SampleSmokeTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SampleSmokeTest.cs @@ -5,9 +5,9 @@ using System.IO; using System.Linq; using System.Text.Json; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Sample; +using Microsoft.Agents.AI.Workflows.Sample; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class SampleSmokeTest { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SpecializedExecutorSmokeTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SpecializedExecutorSmokeTests.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SpecializedExecutorSmokeTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SpecializedExecutorSmokeTests.cs index 0c1b97beaa..c194bfd868 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SpecializedExecutorSmokeTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SpecializedExecutorSmokeTests.cs @@ -9,10 +9,10 @@ using System.Threading; using System.Threading.Tasks; using FluentAssertions; using Microsoft.Agents.AI; -using Microsoft.Agents.Workflows.Specialized; +using Microsoft.Agents.AI.Workflows.Specialized; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class SpecializedExecutorSmokeTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StateKeyObjectTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StateKeyObjectTests.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StateKeyObjectTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StateKeyObjectTests.cs index d71983197a..16b94d831e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StateKeyObjectTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StateKeyObjectTests.cs @@ -1,9 +1,9 @@ // Copyright (c) Microsoft. All rights reserved. using FluentAssertions; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class StateKeyObjectTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StateManagerTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StateManagerTests.cs similarity index 99% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StateManagerTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StateManagerTests.cs index 5de5dd39b7..4bb0746996 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StateManagerTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StateManagerTests.cs @@ -4,9 +4,9 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; using FluentAssertions; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class StateManagerTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StreamingAggregatorsTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StreamingAggregatorsTests.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StreamingAggregatorsTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StreamingAggregatorsTests.cs index c225870c8b..6d605ba313 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/StreamingAggregatorsTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/StreamingAggregatorsTests.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using FluentAssertions; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class StreamingAggregatorsTests { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SubstitutionVisitor.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SubstitutionVisitor.cs similarity index 91% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SubstitutionVisitor.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SubstitutionVisitor.cs index 913848f1d0..1896fc58e8 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/SubstitutionVisitor.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/SubstitutionVisitor.cs @@ -2,7 +2,7 @@ using System.Linq.Expressions; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal sealed class SubstitutionVisitor(ParameterExpression parameter, Expression substitution) : ExpressionVisitor { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestJsonContext.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestJsonContext.cs similarity index 85% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestJsonContext.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestJsonContext.cs index 21ba03a62e..aaba9423d7 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestJsonContext.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestJsonContext.cs @@ -3,7 +3,7 @@ using System.Diagnostics.CodeAnalysis; using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; // Checkpointing Types [JsonSerializable(typeof(TestJsonSerializable))] diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestJsonSerializable.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestJsonSerializable.cs similarity index 94% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestJsonSerializable.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestJsonSerializable.cs index 62334e4a30..73f4caca0a 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestJsonSerializable.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestJsonSerializable.cs @@ -4,7 +4,7 @@ using System; using System.Text.Json; using System.Text.Json.Serialization; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; [JsonSourceGenerationOptions(JsonSerializerDefaults.Web, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull, diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestRunContext.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestRunContext.cs similarity index 96% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestRunContext.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestRunContext.cs index d7fcd0d4a0..c182a2773a 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestRunContext.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestRunContext.cs @@ -3,9 +3,9 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Execution; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public class TestRunContext : IRunnerContext { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestingExecutor.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestingExecutor.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestingExecutor.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestingExecutor.cs index 50896d6968..4396b2d849 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/TestingExecutor.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/TestingExecutor.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal abstract class TestingExecutor : Executor, IDisposable { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ValidationExtensions.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ValidationExtensions.cs similarity index 97% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ValidationExtensions.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ValidationExtensions.cs index fad9caed09..fbd9566ca1 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/ValidationExtensions.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/ValidationExtensions.cs @@ -4,11 +4,11 @@ using System; using System.Diagnostics; using System.Linq; using System.Linq.Expressions; -using Microsoft.Agents.Workflows.Checkpointing; -using Microsoft.Agents.Workflows.Execution; +using Microsoft.Agents.AI.Workflows.Checkpointing; +using Microsoft.Agents.AI.Workflows.Execution; using Microsoft.Extensions.AI; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; internal static partial class ValidationExtensions { diff --git a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/WorkflowBuilderSmokeTests.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/WorkflowBuilderSmokeTests.cs similarity index 98% rename from dotnet/tests/Microsoft.Agents.Workflows.UnitTests/WorkflowBuilderSmokeTests.cs rename to dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/WorkflowBuilderSmokeTests.cs index c7924b4ea3..a545ee369e 100644 --- a/dotnet/tests/Microsoft.Agents.Workflows.UnitTests/WorkflowBuilderSmokeTests.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.UnitTests/WorkflowBuilderSmokeTests.cs @@ -3,7 +3,7 @@ using System; using FluentAssertions; -namespace Microsoft.Agents.Workflows.UnitTests; +namespace Microsoft.Agents.AI.Workflows.UnitTests; public partial class WorkflowBuilderSmokeTests {