mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-03-29 13:51:37 +00:00
16 lines
520 B
C#
16 lines
520 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";
|
|
} |