@attribute [Route(Routes.ABOUT)] @using AIStudio.Tools.PluginSystem @using AIStudio.Tools.Services @inherits MSGComponentBase
@T("About MindWork AI Studio") @T("The following list shows the versions of the MindWork AI Studio, the used compilers, build time, etc.:") @{ var configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION); var currentEnvironment = EnterpriseEnvironmentService.CURRENT_ENVIRONMENT; } @if (!currentEnvironment.IsActive && configPlug is null) { @T("AI Studio runs without an enterprise configuration.") } else if (!currentEnvironment.IsActive) { @T("AI Studio runs with an enterprise configuration using the configuration plugin.") Plugin ID: @configPlug!.Id } else if (currentEnvironment.IsActive && configPlug is null) { @T("AI Studio runs with an enterprise configuration. The configuration plugin is not yet available.") Config ID: @currentEnvironment.ConfigurationId Server URL: @currentEnvironment.ConfigurationServerUrl } else if (currentEnvironment.IsActive) { @T("AI Studio runs with an enterprise configuration. The configuration plugin is active.")
Config ID: @currentEnvironment.ConfigurationId
Server URL: @currentEnvironment.ConfigurationServerUrl
} @(showConfigDetails ? "Hide Details" : "Show Details")
@T("Check for updates") @this.PandocButtonText
@T("Discover MindWork AI's mission and vision on our official homepage.") @T("Browse AI Studio's source code on GitHub — we welcome your contributions.") @T("Connect AI Studio to your organization's data with our External Retrieval Interface (ERI).") @T("View our project roadmap and help shape AI Studio's future development.") @T("Did you find a bug or are you experiencing issues? Report your concern here.") @T("Have feature ideas? Submit suggestions for future AI Studio enhancements.") @T("Explanation") @T("AI Studio creates a log file at startup, in which events during startup are recorded. After startup, another log file is created that records all events that occur during the use of the app. This includes any errors that may occur. Depending on when an error occurs (at startup or during use), the contents of these log files can be helpful for troubleshooting. Sensitive information such as passwords is not included in the log files.") @T("By clicking on the respective path, the path is copied to the clipboard. You might open these files with a text editor to view their contents.") @T("Startup log file") @T("Usage log file")