This commit is contained in:
Thorsten Sommer 2025-08-17 16:29:59 +02:00
parent 6b112c9fee
commit f221119d71
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ public sealed class PluginConfiguration(bool isInternal, LuaState state, PluginT
ManagedConfiguration.TryProcessConfiguration(x => x.App, x => x.AllowUserToAddProvider, this.Id, settingsTable, dryRun);
//
// Configured providers
// Configured providers:
//
if (!mainTable.TryGetValue("LLM_PROVIDERS", out var providersValue) || !providersValue.TryRead<LuaTable>(out var providersTable))
{
@ -113,7 +113,7 @@ public sealed class PluginConfiguration(bool isInternal, LuaState state, PluginT
#pragma warning restore MWAIS0001
//
// Configured chat templates
// Configured chat templates:
//
if (mainTable.TryGetValue("CHAT_TEMPLATES", out var templatesValue) && templatesValue.TryRead<LuaTable>(out var templatesTable))
{

View File

@ -153,7 +153,7 @@ public static partial class PluginFactory
#pragma warning restore MWAIS0001
//
// Check Chat Templates:
// Check chat templates:
//
var configuredTemplates = SETTINGS_MANAGER.ConfigurationData.ChatTemplates.ToList();
foreach (var configuredTemplate in configuredTemplates)