diff --git a/dotnet/src/Microsoft.Agents.AI.Workflows.Generators/Generation/SourceBuilder.cs b/dotnet/src/Microsoft.Agents.AI.Workflows.Generators/Generation/SourceBuilder.cs index 9a74c88447..23d748e629 100644 --- a/dotnet/src/Microsoft.Agents.AI.Workflows.Generators/Generation/SourceBuilder.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows.Generators/Generation/SourceBuilder.cs @@ -38,6 +38,7 @@ internal static class SourceBuilder sb.AppendLine("using System.Collections.Generic;"); sb.AppendLine("using Microsoft.Agents.AI.Workflows;"); sb.AppendLine(); + sb.AppendLine("using RouteBuilder = Microsoft.Agents.AI.Workflows.RouteBuilder;"); // Namespace if (!string.IsNullOrWhiteSpace(info.Namespace)) diff --git a/dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs index 0b6c90ab2a..d6e6df5dbd 100644 --- a/dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/ConfigurationExtensions.cs @@ -3,7 +3,7 @@ namespace Microsoft.Agents.AI.Workflows; /// -/// Provides extensions methods for creating objects +/// Provides extension methods for creating objects /// internal static class ConfigurationExtensions { diff --git a/dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs index 6ca580ba05..b154bd6ca7 100644 --- a/dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Configured.cs @@ -50,7 +50,7 @@ internal static class Configured /// A representation of a preconfigured, lazy-instantiatable instance of . /// /// The type of the preconfigured subject. -/// A factory to intantiate the subject when desired. +/// A factory to instantiate the subject when desired. /// The unique identifier for the configured subject. /// internal class Configured(Func> factoryAsync, string id, object? raw = null) @@ -87,7 +87,7 @@ internal class Configured(Func /// The type of the preconfigured subject. /// The type of configuration options for the preconfigured subject. -/// A factory to intantiate the subject when desired. +/// A factory to instantiate the subject when desired. /// The unique identifier for the configured subject. /// Additional configuration options for the subject. ///