AI-Studio/app/MindWork AI Studio/Components/Settings/SettingsPanelAgentContentCleaner.razor.cs

14 lines
398 B
C#

using AIStudio.Settings;
using Microsoft.AspNetCore.Components;
namespace AIStudio.Components.Settings;
public partial class SettingsPanelAgentContentCleaner : ComponentBase
{
[Parameter]
public Func<IReadOnlyList<ConfigurationSelectData<string>>> AvailableLLMProvidersFunc { get; set; } = () => [];
[Inject]
private SettingsManager SettingsManager { get; init; } = null!;
}