diff --git a/dotnet/semantic-kernel/sample-agent/AspNetExtensions.cs b/dotnet/semantic-kernel/sample-agent/AspNetExtensions.cs index 5ffbff7e..1fc6800d 100644 --- a/dotnet/semantic-kernel/sample-agent/AspNetExtensions.cs +++ b/dotnet/semantic-kernel/sample-agent/AspNetExtensions.cs @@ -38,7 +38,7 @@ public static class AspNetExtensions /// "TokenValidation": { /// "Enabled": boolean, /// "Audiences": [ - /// "{{ClientId}}" // this is the Client ID used for the Azure Bot + /// "{{ClientId}}" // this is the Client ID used for the Agent Blueprint /// ], /// "TenantId": "{{TenantId}}" /// } @@ -229,7 +229,7 @@ public class TokenValidationOptions public IList? Audiences { get; set; } /// - /// TenantId of the Azure Bot. Optional but recommended. + /// TenantId of the Agent Blueprint. Optional but recommended. /// public string? TenantId { get; set; } diff --git a/dotnet/semantic-kernel/sample-agent/appsettings.json b/dotnet/semantic-kernel/sample-agent/appsettings.json index e7a60fa5..e7d06efc 100644 --- a/dotnet/semantic-kernel/sample-agent/appsettings.json +++ b/dotnet/semantic-kernel/sample-agent/appsettings.json @@ -9,7 +9,7 @@ "TokenValidation": { "Enabled": false, "Audiences": [ - "{{ClientId}}" // this is the Client ID used for the Azure Bot + "{{ClientId}}" // this is the Client ID used for the Agent Blueprint ], "TenantId": "{{TenantId}}" }, @@ -38,7 +38,7 @@ "Settings": { "AuthType": "ClientSecret", // this is the AuthType for the connection, valid values can be found in Microsoft.Agents.Authentication.Msal.Model.AuthTypes. The default is ClientSecret. "AuthorityEndpoint": "", - "ClientId": "", // this is the Client ID used for the Azure Bot + "ClientId": "", // this is the Client ID used for the Agent Blueprint "ClientSecret": "", // this is the Client Secret used for the connection. "Scopes": [ "5a807f24-c9de-44ee-a3a7-329e88a00ffc/.default"