mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 13:02:57 +00:00
193 lines
8.3 KiB
C#
193 lines
8.3 KiB
C#
using AIStudio.Provider;
|
|
using AIStudio.Settings;
|
|
using AIStudio.Settings.DataModel;
|
|
|
|
using Lua;
|
|
|
|
using Host = AIStudio.Provider.SelfHosted.Host;
|
|
using Model = AIStudio.Provider.Model;
|
|
|
|
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
public sealed class PluginConfiguration(bool isInternal, LuaState state, PluginType type) : PluginBase(isInternal, state, type)
|
|
{
|
|
private static string TB(string fallbackEN) => I18N.I.T(fallbackEN, typeof(PluginConfiguration).Namespace, nameof(PluginConfiguration));
|
|
private static readonly ILogger<PluginConfiguration> LOGGER = Program.LOGGER_FACTORY.CreateLogger<PluginConfiguration>();
|
|
private static readonly SettingsLocker SETTINGS_LOCKER = Program.SERVICE_PROVIDER.GetRequiredService<SettingsLocker>();
|
|
private static readonly SettingsManager SETTINGS_MANAGER = Program.SERVICE_PROVIDER.GetRequiredService<SettingsManager>();
|
|
|
|
public async Task InitializeAsync()
|
|
{
|
|
if(!this.TryProcessConfiguration(out var issue))
|
|
this.pluginIssues.Add(issue);
|
|
|
|
await SETTINGS_MANAGER.StoreSettings();
|
|
await MessageBus.INSTANCE.SendMessage<bool>(null, Event.CONFIGURATION_CHANGED);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Tries to initialize the UI text content of the plugin.
|
|
/// </summary>
|
|
/// <param name="message">The error message, when the UI text content could not be read.</param>
|
|
/// <returns>True, when the UI text content could be read successfully.</returns>
|
|
private bool TryProcessConfiguration(out string message)
|
|
{
|
|
// Ensure that the main CONFIG table exists and is a valid Lua table:
|
|
if (!this.state.Environment["CONFIG"].TryRead<LuaTable>(out var mainTable))
|
|
{
|
|
message = TB("The CONFIG table does not exist or is not a valid table.");
|
|
return false;
|
|
}
|
|
|
|
//
|
|
// Configured settings
|
|
//
|
|
if (!mainTable.TryGetValue("SETTINGS", out var settingsValue) || !settingsValue.TryRead<LuaTable>(out var settingsTable))
|
|
{
|
|
message = TB("The SETTINGS table does not exist or is not a valid table.");
|
|
return false;
|
|
}
|
|
|
|
if (settingsTable.TryGetValue(SettingsManager.ToSettingName<DataApp>(x => x.UpdateBehavior), out var updateBehaviorValue) && updateBehaviorValue.TryRead<string>(out var updateBehaviorText) && Enum.TryParse<UpdateBehavior>(updateBehaviorText, true, out var updateBehavior))
|
|
{
|
|
SETTINGS_LOCKER.Register<DataApp>(x => x.UpdateBehavior, this.Id);
|
|
SETTINGS_MANAGER.ConfigurationData.App.UpdateBehavior = updateBehavior;
|
|
}
|
|
|
|
//
|
|
// Configured providers
|
|
//
|
|
if (!mainTable.TryGetValue("LLM_PROVIDERS", out var providersValue) || !providersValue.TryRead<LuaTable>(out var providersTable))
|
|
{
|
|
message = TB("The LLM_PROVIDERS table does not exist or is not a valid table.");
|
|
return false;
|
|
}
|
|
|
|
message = string.Empty;
|
|
var numberProviders = providersTable.ArrayLength;
|
|
var configuredProviders = new List<Settings.Provider>(numberProviders);
|
|
for (var i = 1; i <= numberProviders; i++)
|
|
{
|
|
var providerLuaTableValue = providersTable[i];
|
|
if (!providerLuaTableValue.TryRead<LuaTable>(out var providerLuaTable))
|
|
{
|
|
LOGGER.LogWarning($"The LLM_PROVIDERS table at index {i} is not a valid table.");
|
|
continue;
|
|
}
|
|
|
|
if(this.TryReadProviderTable(i, providerLuaTable, out var provider))
|
|
configuredProviders.Add(provider);
|
|
else
|
|
LOGGER.LogWarning($"The LLM_PROVIDERS table at index {i} does not contain a valid provider configuration.");
|
|
}
|
|
|
|
//
|
|
// Apply the configured providers to the system settings:
|
|
//
|
|
#pragma warning disable MWAIS0001
|
|
foreach (var configuredProvider in configuredProviders)
|
|
{
|
|
// The iterating variable is immutable, so we need to create a local copy:
|
|
var provider = configuredProvider;
|
|
|
|
var providerIndex = SETTINGS_MANAGER.ConfigurationData.Providers.FindIndex(p => p.Id == provider.Id);
|
|
if (providerIndex > -1)
|
|
{
|
|
// Case: The provider already exists, we update it:
|
|
var existingProvider = SETTINGS_MANAGER.ConfigurationData.Providers[providerIndex];
|
|
provider = provider with { Num = existingProvider.Num }; // Keep the original number
|
|
SETTINGS_MANAGER.ConfigurationData.Providers[providerIndex] = provider;
|
|
}
|
|
else
|
|
{
|
|
// Case: The provider does not exist, we add it:
|
|
provider = provider with { Num = SETTINGS_MANAGER.ConfigurationData.NextProviderNum++ };
|
|
SETTINGS_MANAGER.ConfigurationData.Providers.Add(provider);
|
|
}
|
|
}
|
|
#pragma warning restore MWAIS0001
|
|
|
|
return true;
|
|
}
|
|
|
|
private bool TryReadProviderTable(int idx, LuaTable table, out Settings.Provider provider)
|
|
{
|
|
provider = default;
|
|
if (!table.TryGetValue("Id", out var idValue) || !idValue.TryRead<string>(out var idText) || !Guid.TryParse(idText, out var id))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid ID. The ID must be a valid GUID.");
|
|
return false;
|
|
}
|
|
|
|
if (!table.TryGetValue("InstanceName", out var instanceNameValue) || !instanceNameValue.TryRead<string>(out var instanceName))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid instance name.");
|
|
return false;
|
|
}
|
|
|
|
if (!table.TryGetValue("UsedLLMProvider", out var usedLLMProviderValue) || !usedLLMProviderValue.TryRead<string>(out var usedLLMProviderText) || !Enum.TryParse<LLMProviders>(usedLLMProviderText, true, out var usedLLMProvider))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid LLM provider enum value.");
|
|
return false;
|
|
}
|
|
|
|
if (!table.TryGetValue("Host", out var hostValue) || !hostValue.TryRead<string>(out var hostText) || !Enum.TryParse<Host>(hostText, true, out var host))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid host enum value.");
|
|
return false;
|
|
}
|
|
|
|
if (!table.TryGetValue("Hostname", out var hostnameValue) || !hostnameValue.TryRead<string>(out var hostname))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid hostname.");
|
|
return false;
|
|
}
|
|
|
|
if (!table.TryGetValue("Model", out var modelValue) || !modelValue.TryRead<LuaTable>(out var modelTable))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid model table.");
|
|
return false;
|
|
}
|
|
|
|
if (!this.TryReadModelTable(idx, modelTable, out var model))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid model configuration.");
|
|
return false;
|
|
}
|
|
|
|
provider = new()
|
|
{
|
|
Num = 0,
|
|
Id = id.ToString(),
|
|
InstanceName = instanceName,
|
|
UsedLLMProvider = usedLLMProvider,
|
|
Model = model,
|
|
IsSelfHosted = usedLLMProvider is LLMProviders.SELF_HOSTED,
|
|
IsEnterpriseConfiguration = true,
|
|
EnterpriseConfigurationPluginId = this.Id,
|
|
Hostname = hostname,
|
|
Host = host
|
|
};
|
|
|
|
return true;
|
|
}
|
|
|
|
private bool TryReadModelTable(int idx, LuaTable table, out Model model)
|
|
{
|
|
model = default;
|
|
if (!table.TryGetValue("Id", out var idValue) || !idValue.TryRead<string>(out var id))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid model ID.");
|
|
return false;
|
|
}
|
|
|
|
if (!table.TryGetValue("DisplayName", out var displayNameValue) || !displayNameValue.TryRead<string>(out var displayName))
|
|
{
|
|
LOGGER.LogWarning($"The configured provider {idx} does not contain a valid model display name.");
|
|
return false;
|
|
}
|
|
|
|
model = new(id, displayName);
|
|
return true;
|
|
}
|
|
} |