diff --git a/src/lang/en.ts b/src/lang/en.ts index 790a4525..fb058aa4 100644 --- a/src/lang/en.ts +++ b/src/lang/en.ts @@ -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 `=` format, seperated by newline. for example, `cot=Toggle COT`. you can use these toggles in prompt by using `{{getglobalvar::toggle_}}`. like `{{getglobalvar::toggle_cot}}`.", defaultVariables: "Here you can define your own default variables. use `=` 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.", } \ No newline at end of file diff --git a/src/lib/SideBars/CharConfig.svelte b/src/lib/SideBars/CharConfig.svelte index 2eef1106..4b0cff65 100644 --- a/src/lib/SideBars/CharConfig.svelte +++ b/src/lib/SideBars/CharConfig.svelte @@ -893,6 +893,11 @@ +
+ + +
+
@@ -954,6 +959,11 @@
{/if} + +
+ + +
{/if}