mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-22 22:31:36 +00:00
15 lines
515 B
C#
15 lines
515 B
C#
|
|
using AIStudio.Tools.PluginSystem;
|
|||
|
|
using Microsoft.AspNetCore.Components;
|
|||
|
|
|
|||
|
|
namespace AIStudio.Components;
|
|||
|
|
|
|||
|
|
public partial class HalluzinationReminder: ComponentBase
|
|||
|
|
{
|
|||
|
|
private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(HalluzinationReminder).Namespace, nameof(HalluzinationReminder));
|
|||
|
|
|
|||
|
|
[Parameter]
|
|||
|
|
public string Text { get; set; } = TB("LLMs can make mistakes. Check important information.");
|
|||
|
|
|
|||
|
|
[Parameter]
|
|||
|
|
public string ContainerClass { get; set; } = "mt-2 mb-1";
|
|||
|
|
}
|