diff --git a/src/Infrastructure/BotSharp.Core/Routing/Functions/RouteToAgentFn.cs b/src/Infrastructure/BotSharp.Core/Routing/Functions/RouteToAgentFn.cs index e81a00f91..63b7d1747 100644 --- a/src/Infrastructure/BotSharp.Core/Routing/Functions/RouteToAgentFn.cs +++ b/src/Infrastructure/BotSharp.Core/Routing/Functions/RouteToAgentFn.cs @@ -12,7 +12,12 @@ public partial class RouteToAgentFn : IFunctionCallback public string Name => "route_to_agent"; private readonly IServiceProvider _services; private readonly IRoutingContext _context; +#if DEBUG public string Indication => "Routing to the specified AI agent..."; +#else + public string Indication => "Thinking..."; +#endif + public RouteToAgentFn(IServiceProvider services, IRoutingContext context) { _services = services;