diff --git a/memorypipeline/README.md b/memorypipeline/README.md index b7bcf5c67..e7f35030a 100644 --- a/memorypipeline/README.md +++ b/memorypipeline/README.md @@ -9,12 +9,12 @@ ### Memory -One of the exciting features of the Copilot Chat App is its ability to store contextual information +One of the exciting features of the Chat Copilot App is its ability to store contextual information to [memories](https://github.com/microsoft/semantic-kernel/blob/main/docs/EMBEDDINGS.md) and retrieve relevant information from memories to provide more meaningful answers to users through out the conversations. Memories can be generated from conversations as well as imported from external sources, such as documents. -Importing documents enables Copilot Chat to have up-to-date knowledge of specific contexts, such as enterprise and personal data. +Importing documents enables Chat Copilot to have up-to-date knowledge of specific contexts, such as enterprise and personal data. ### Memory pipeline in Chat Copilot diff --git a/tools/importdocument/Program.cs b/tools/importdocument/Program.cs index d8431cf9d..8b0570470 100644 --- a/tools/importdocument/Program.cs +++ b/tools/importdocument/Program.cs @@ -13,7 +13,7 @@ namespace ImportDocument; /// -/// This console app imports a list of files to the CopilotChat WebAPI document memory store. +/// This console app imports a list of files to Chat Copilot's WebAPI document memory store. /// public static class Program { @@ -39,7 +39,7 @@ public static void Main(string[] args) ); var rootCommand = new RootCommand( - "This console app imports files to the CopilotChat WebAPI's document memory store." + "This console app imports files to Chat Copilot's WebAPI document memory store." ) { filesOption, diff --git a/tools/importdocument/README.md b/tools/importdocument/README.md index cc294a2bf..0952db9d4 100644 --- a/tools/importdocument/README.md +++ b/tools/importdocument/README.md @@ -3,12 +3,12 @@ > **!IMPORTANT** > This sample is for educational purposes only and is not recommended for production deployments. -One of the exciting features of the Copilot Chat App is its ability to store contextual information +One of the exciting features of the Chat Copilot App is its ability to store contextual information to [memories](https://github.com/microsoft/semantic-kernel/blob/main/docs/EMBEDDINGS.md) and retrieve relevant information from memories to provide more meaningful answers to users through out the conversations. Memories can be generated from conversations as well as imported from external sources, such as documents. -Importing documents enables Copilot Chat to have up-to-date knowledge of specific contexts, such as enterprise and personal data. +Importing documents enables Chat Copilot to have up-to-date knowledge of specific contexts, such as enterprise and personal data. ## Running the app against a local Chat Copilot instance diff --git a/webapi/Extensions/ServiceExtensions.cs b/webapi/Extensions/ServiceExtensions.cs index e644891ec..120821e80 100644 --- a/webapi/Extensions/ServiceExtensions.cs +++ b/webapi/Extensions/ServiceExtensions.cs @@ -256,7 +256,7 @@ public static IServiceCollection AddPersistentChatStore(this IServiceCollection /// /// Add authorization services /// - public static IServiceCollection AddCopilotChatAuthorization(this IServiceCollection services) + public static IServiceCollection AddChatCopilotAuthorization(this IServiceCollection services) { return services.AddScoped() .AddAuthorizationCore(options => @@ -275,7 +275,7 @@ public static IServiceCollection AddCopilotChatAuthorization(this IServiceCollec /// /// Add authentication services /// - public static IServiceCollection AddCopilotChatAuthentication(this IServiceCollection services, IConfiguration configuration) + public static IServiceCollection AddChatCopilotAuthentication(this IServiceCollection services, IConfiguration configuration) { services.AddScoped(); var config = services.BuildServiceProvider().GetRequiredService>().Value; diff --git a/webapi/Options/ServiceOptions.cs b/webapi/Options/ServiceOptions.cs index be884e5c8..dfbdf7214 100644 --- a/webapi/Options/ServiceOptions.cs +++ b/webapi/Options/ServiceOptions.cs @@ -5,7 +5,7 @@ namespace CopilotChat.WebApi.Options; /// -/// Configuration options for the CopilotChat service. +/// Configuration options for the Chat Copilot service. /// public class ServiceOptions { diff --git a/webapi/Plugins/Chat/ExternalInformationPlugin.cs b/webapi/Plugins/Chat/ExternalInformationPlugin.cs index bcf08c44a..b76e0936b 100644 --- a/webapi/Plugins/Chat/ExternalInformationPlugin.cs +++ b/webapi/Plugins/Chat/ExternalInformationPlugin.cs @@ -41,7 +41,7 @@ public class ExternalInformationPlugin private readonly PromptsOptions _promptOptions; /// - /// CopilotChat's planner to gather additional information for the chat context. + /// Chat Copilot's planner to gather additional information for the chat context. /// private readonly CopilotChatPlanner _planner; diff --git a/webapi/Program.cs b/webapi/Program.cs index ff8d001aa..eaec533c5 100644 --- a/webapi/Program.cs +++ b/webapi/Program.cs @@ -46,8 +46,8 @@ public static async Task Main(string[] args) .AddPersistentChatStore() .AddPlugins(builder.Configuration) .AddUtilities() - .AddCopilotChatAuthentication(builder.Configuration) - .AddCopilotChatAuthorization(); + .AddChatCopilotAuthentication(builder.Configuration) + .AddChatCopilotAuthorization(); // Configure and add semantic services builder diff --git a/webapi/Services/AzureContentSafety.cs b/webapi/Services/AzureContentSafety.cs index df07bb2e0..507ed3e51 100644 --- a/webapi/Services/AzureContentSafety.cs +++ b/webapi/Services/AzureContentSafety.cs @@ -31,7 +31,7 @@ public record ImageAnalysisRequest( /// public sealed class AzureContentSafety : IContentSafetyService { - private const string HttpUserAgent = "Copilot Chat"; + private const string HttpUserAgent = "Chat Copilot"; private readonly string _endpoint; private readonly HttpClient _httpClient;