Fix help keys
This commit is contained in:
@@ -174,6 +174,8 @@ export const languageEnglish = {
|
|||||||
presetChain: "If it is not blank, the preset will be changed and applied randomly every time when user sends a message in the preset list in this input. preset list should be seperated by comma, for example, `preset1,preset2`.",
|
presetChain: "If it is not blank, the preset will be changed and applied randomly every time when user sends a message in the preset list in this input. preset list should be seperated by comma, for example, `preset1,preset2`.",
|
||||||
legacyMediaFindings: "If enabled, it will use the old method to find media assets, without using the additional search algorithm.",
|
legacyMediaFindings: "If enabled, it will use the old method to find media assets, without using the additional search algorithm.",
|
||||||
comfyWorkflow: "Put the API workflow of comfy UI. you can get your API workflow in comfy UI by pressing the 'Workflow > Export (API)' button. you must also put {{risu_prompt}} in you workflow text. the {{risu_prompt}} will be replaced with the prompt provided by the Risu.",
|
comfyWorkflow: "Put the API workflow of comfy UI. you can get your API workflow in comfy UI by pressing the 'Workflow > Export (API)' button. you must also put {{risu_prompt}} in you workflow text. the {{risu_prompt}} will be replaced with the prompt provided by the Risu.",
|
||||||
|
automaticCachePoint: "Automatically creates cache point after the chat ends, if the caching point doesn't exist.",
|
||||||
|
experimentalChatCompressionDesc: "Compresses the unused chat data and saves in seperate file.",
|
||||||
},
|
},
|
||||||
setup: {
|
setup: {
|
||||||
chooseProvider: "Choose AI Provider",
|
chooseProvider: "Choose AI Provider",
|
||||||
@@ -1068,7 +1070,5 @@ export const languageEnglish = {
|
|||||||
claudeCachingRetrival: "Claude Caching Retrival",
|
claudeCachingRetrival: "Claude Caching Retrival",
|
||||||
claudeCachingRetrivalDesc: "Extends the cache time for Claude Caching, by requesting every 4 minutes. this can reduce the cache miss rate, but it can increase the cost if its not used properly.",
|
claudeCachingRetrivalDesc: "Extends the cache time for Claude Caching, by requesting every 4 minutes. this can reduce the cache miss rate, but it can increase the cost if its not used properly.",
|
||||||
automaticCachePoint: "Automatic Cache Point",
|
automaticCachePoint: "Automatic Cache Point",
|
||||||
automaticCachePointDesc: "Automatically creates cache point after the chat ends, if the caching point doesn't exist.",
|
experimentalChatCompression: "Experimental Chat Data Handling"
|
||||||
experimentalChatCompression: "Experimental Chat Data Handling",
|
|
||||||
experimentalChatCompressionDesc: "Compresses the unused chat data and saves in seperate file.",
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -162,14 +162,14 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex items-center mt-4">
|
<div class="flex items-center mt-4">
|
||||||
<Check bind:check={DBState.db.automaticCachePoint} name={language.automaticCachePoint}>
|
<Check bind:check={DBState.db.automaticCachePoint} name={language.automaticCachePoint}>
|
||||||
<Help key="experimental"/><Help key="experimental"/>
|
<Help key="automaticCachePoint"/><Help key="experimental"/>
|
||||||
</Check>
|
</Check>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if !isNodeServer}
|
{#if !isNodeServer}
|
||||||
<div class="flex items-center mt-4">
|
<div class="flex items-center mt-4">
|
||||||
<Check bind:check={DBState.db.chatCompression} name={language.experimentalChatCompression}>
|
<Check bind:check={DBState.db.chatCompression} name={language.experimentalChatCompression}>
|
||||||
<Help key="experimental"/><Help key="experimental"/>
|
<Help key="experimentalChatCompressionDesc"/><Help key="experimental"/>
|
||||||
</Check>
|
</Check>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
Reference in New Issue
Block a user