Add low level access

This commit is contained in:
kwaroran
2024-05-28 20:39:35 +09:00
parent 48afa966b6
commit 2401b25bee
8 changed files with 267 additions and 6 deletions

View File

@@ -129,6 +129,8 @@ export const languageEnglish = {
customChainOfThought: "Warning: chain of thought toggle is no longer recommended to use. put chain of thought prompt in other prompt entries instead.",
customPromptTemplateToggle: "Here you can define your own prompt toggles. use `<toggle variable>=<toggle name>` format, seperated by newline. for example, `cot=Toggle COT`. you can use these toggles in prompt by using `{{getglobalvar::toggle_<toggle variable>}}`. like `{{getglobalvar::toggle_cot}}`.",
defaultVariables: "Here you can define your own default variables. use `<variable name>=<variable value>` format, seperated by newline. for example, `name=RisuAI`, which then can be used with trigger scripts and variables CBS like `{{getvar::A}}`, `{{setvar::A::B}}` or `{{? $A + 1}}`. if prompt template's default variable and character's default variable has same name, character's default variable will be used.",
lowLevelAccess: "If enabled, it will enable access to features that requires high computing powers and executing AI model via triggers in the character. do not enable this unless you really need these features.",
triggerLLMPrompt: "A prompt that would be sent to the model. you can use multi turns and roles by using `@@role user`, `@@role system`, `@@role assistant`. for example, \n\`\`\`\n@@role system\nrespond as hello\n@@role assistant\nhello\n@@role user\nhi\n\`\`\`",
},
setup: {
chooseProvider: "Choose AI Provider",
@@ -618,4 +620,16 @@ export const languageEnglish = {
hypaV2Desc: "HypaMemory V2 is a long-term memory system that use both summarized data and vector search.",
supaDesc: "SupaMemory is a long-term memory system that uses summarized data to AI.",
hanuraiDesc: "HanuraiMemory is a memory system that uses vector search.",
lowLevelAccess: "Low Level Access",
resultStoredVar: "Variable to Store Result",
triggerEffRunLLM: "Run Main Model",
triggerEffectSendAI: "Resend AI",
triggerEffCheckSim: "Check Similarity",
triggerEffShowAlert: "Show Alert",
normal: "Normal",
error: "Error",
input: "Input",
select: "Select",
lowLevelAccessConfirm: "This character uses Low Level Access. which means this character can access the AI model and your storage directly. do you really want to import this character?",
triggerLowLevelOnly: "This trigger only works with Low Level Access. to enable this trigger, enable Low Level Access in advanced settings in the character.",
}