Compare commits

..

3 Commits

Author SHA1 Message Date
Jaylyn Barbee
f40bd3e49c Fix typo in LightSwitchStateManager filename 2025-11-20 09:41:40 -08:00
Niels Laute
d052e33607 Update doc/devdocs/modules/lightswitch.md 2025-11-20 09:26:11 -08:00
Jaylyn Barbee
bdfa7c0f5f Clarify LightSwitchService and LightSwitchStateManager roles
Updated LightSwitch module documentation to clarify the role of LightSwitchService and LightSwitchStateManager.
2025-11-20 09:24:25 -08:00
2 changed files with 3 additions and 0 deletions

View File

@@ -215,6 +215,7 @@ public sealed class AdvancedAIKernelService : KernelServiceBase
return new OpenAIPromptExecutionSettings
{
FunctionChoiceBehavior = FunctionChoiceBehavior.Auto(),
Temperature = 0.01,
};
}
}

View File

@@ -157,6 +157,8 @@ namespace AdvancedPaste.Services.CustomActions
{
AIServiceType.OpenAI or AIServiceType.AzureOpenAI => new OpenAIPromptExecutionSettings
{
Temperature = 0.01,
MaxTokens = 2000,
FunctionChoiceBehavior = null,
},
_ => new PromptExecutionSettings(),