mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Tooltips Refining
This commit is contained in:
116
gensettings.py
116
gensettings.py
@@ -8,7 +8,7 @@ gensettingstf = [
|
||||
"max": 512,
|
||||
"step": 2,
|
||||
"default": 80,
|
||||
"tooltip": "Number of tokens the AI should generate. Higher numbers will take longer to generate.",
|
||||
"tooltip": "Number of tokens to be generated. Higher values will take longer to generate.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Generation",
|
||||
"classname": "model",
|
||||
@@ -23,7 +23,7 @@ gensettingstf = [
|
||||
"max": 2.0,
|
||||
"step": 0.01,
|
||||
"default": 0.5,
|
||||
"tooltip": "Randomness of sampling. High values can increase creativity but may make text less sensible. Lower values will make text more predictable but can become repetitious.",
|
||||
"tooltip": "Randomness of sampling. Higher values can increase creativity, but make the output less meaningful. Lower values will make the output more predictable, but it may become more repetitive.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Generation",
|
||||
"classname": "model",
|
||||
@@ -38,7 +38,7 @@ gensettingstf = [
|
||||
"max": 1.0,
|
||||
"step": 0.01,
|
||||
"default": 0.9,
|
||||
"tooltip": "Used to discard unlikely text in the sampling process. Lower values will make text more predictable but can become repetitious. (Put this value on 1 to disable its effect)",
|
||||
"tooltip": "Used to discard unlikely text in the sampling process. Lower values will make the output more predictable, but also repetitive. (Put this value on 1 to disable its effect)",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -54,7 +54,7 @@ gensettingstf = [
|
||||
"max": 100,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Alternative sampling method, can be combined with top_p. (Put this value on 0 to disable its effect)",
|
||||
"tooltip": "Alternative sampling method. Can be combined with top_p. (Put this value on 0 to disable its effect)",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -69,7 +69,7 @@ gensettingstf = [
|
||||
"max": 1.0,
|
||||
"step": 0.01,
|
||||
"default": 1.0,
|
||||
"tooltip": "Alternative sampling method; it is recommended to disable top_p and top_k (set top_p to 1 and top_k to 0) if using this. 0.95 is thought to be a good value. (Put this value on 1 to disable its effect)",
|
||||
"tooltip": "Alternative sampling method. It is recommended to disable top_p and top_k (set top_p to 1 and top_k to 0) if this setting is used. 0.95 is an optimal value for this setting. (Put this value on 1 to disable its effect)",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -84,7 +84,7 @@ gensettingstf = [
|
||||
"max": 1.0,
|
||||
"step": 0.01,
|
||||
"default": 1.0,
|
||||
"tooltip": "Alternative sampling method described in the paper \"Typical Decoding for Natural Language Generation\" (10.48550/ARXIV.2202.00666). The paper suggests 0.2 as a good value for this setting. (Put this value on 1 to disable its effect)",
|
||||
"tooltip": "Alternative sampling method. Described in the paper \"Typical Decoding for Natural Language Generation\" (10.48550/ARXIV.2202.00666). The paper suggests 0.2 as an optimal value for this setting. (Put this value on 1 to disable its effect)",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -99,7 +99,7 @@ gensettingstf = [
|
||||
"max": 1.0,
|
||||
"step": 0.01,
|
||||
"default": 0.0,
|
||||
"tooltip": "Alternative sampling method that reduces the randomness of the AI whenever the probability of one token is much higher than all the others. Higher values have a stronger effect. (Put this value on 0 to disable its effect)",
|
||||
"tooltip": "Alternative sampling method. Reduces the randomness of the AI whenever the probability of one token is much higher than all the others. Higher values have a stronger effect. (Put this value on 0 to disable its effect)",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -129,7 +129,7 @@ gensettingstf = [
|
||||
"max": 4096,
|
||||
"step": 4,
|
||||
"default": 0,
|
||||
"tooltip": "Repetition penalty range. If set higher than 0, only applies repetition penalty to the last few tokens of your story rather than applying it to the entire story. This slider controls the amount of tokens at the end of your story to apply it to.",
|
||||
"tooltip": "Repetition penalty range. If set higher than 0, only applies repetition penalty to the last few tokens of the story rather than applying it to the entire story. The slider controls the amount of tokens at the end of your story to apply it to.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Repetition",
|
||||
"classname": "model",
|
||||
@@ -144,7 +144,7 @@ gensettingstf = [
|
||||
"max": 10.0,
|
||||
"step": 0.1,
|
||||
"default": 0.0,
|
||||
"tooltip": "Repetition penalty slope. If BOTH this setting and Rep Penalty Range are set higher than 0, will use sigmoid interpolation to apply repetition penalty more strongly on tokens that are closer to the end of your story. This setting controls the tension of the sigmoid curve; higher settings will result in the repetition penalty difference between the start and end of your story being more apparent. Setting this to 1 uses linear interpolation; setting this to 0 disables interpolation.",
|
||||
"tooltip": "Repetition penalty slope. If both this setting and Rep Penalty Range are set higher than 0, will use sigmoid interpolation to apply repetition penalty more strongly on tokens that are closer to the end of the story. Higher values will result in the repetition penalty difference between the start and end of your story being more apparent. (Setting this to 1 uses linear interpolation; setting this to 0 disables interpolation)",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Repetition",
|
||||
"classname": "model",
|
||||
@@ -159,7 +159,7 @@ gensettingstf = [
|
||||
"max": 2048,
|
||||
"step": 8,
|
||||
"default": 1024,
|
||||
"tooltip": "Max number of tokens of context to submit to the AI for sampling. Make sure this is higher than Amount to Generate. Higher values increase VRAM/RAM usage.",
|
||||
"tooltip": "Number of context tokens to submit to the AI for sampling. Make sure this is higher than Output Length. Higher values increase VRAM/RAM usage.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Generation",
|
||||
"classname": "model",
|
||||
@@ -174,7 +174,7 @@ gensettingstf = [
|
||||
"max": 5,
|
||||
"step": 1,
|
||||
"default": 1,
|
||||
"tooltip": "Number of results to generate per submission. Increases VRAM/RAM usage.",
|
||||
"tooltip": "Number of outputs to generate per action. Increases VRAM/RAM usage.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Generation",
|
||||
"classname": "model",
|
||||
@@ -189,7 +189,7 @@ gensettingstf = [
|
||||
"max": 5,
|
||||
"step": 1,
|
||||
"default": 3,
|
||||
"tooltip": "Number of historic actions to scan for World Info keys.",
|
||||
"tooltip": "Number of actions from the end of the story to scan for World Info keys.",
|
||||
"menu_path": "World Info",
|
||||
"sub_path": "",
|
||||
"classname": "user",
|
||||
@@ -205,7 +205,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Whether the game is saved after each action.",
|
||||
"tooltip": "Whether the story is saved after each action.",
|
||||
"menu_path": "Home",
|
||||
"sub_path": "",
|
||||
"classname": "story",
|
||||
@@ -265,7 +265,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Scan the AI's output for World Info keys as it's generating the output.",
|
||||
"tooltip": "Scans the AI's output for World Info keys as it is generating the one.",
|
||||
"menu_path": "World Info",
|
||||
"sub_path": "",
|
||||
"classname": "story",
|
||||
@@ -280,7 +280,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "When enabled the AI does not generate when you enter the prompt, instead you need to do an action first.",
|
||||
"tooltip": "If enabled, the AI does not generate a continuation of the prompt. Instead, you must perform an action first.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Other",
|
||||
"classname": "user",
|
||||
@@ -295,7 +295,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "When enabled, the Memory text box in the Random Story dialog will be prefilled by default with your current story's memory instead of being empty.",
|
||||
"tooltip": "If enabled, the Memory box in Random Story will be filled with the memory of the current story instead of being empty.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Other",
|
||||
"classname": "user",
|
||||
@@ -310,7 +310,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Disables userscript generation modifiers.",
|
||||
"tooltip": "Disables the effect of userscripts.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Modifiers",
|
||||
"classname": "user",
|
||||
@@ -325,7 +325,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Causes generation to be fully deterministic -- the model will always output the same thing as long as your story, settings and RNG seed are the same. If this is off, only the sequence of outputs that the model makes will be deterministic."
|
||||
"tooltip": "Causes generation to be fully deterministic. The model will always generate the same thing as long as your story, settings and RNG seed are the same. If disabled, only the sequence of outputs the model generates is deterministic."
|
||||
},
|
||||
{
|
||||
"uitype": "toggle",
|
||||
@@ -336,7 +336,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Show debug info",
|
||||
"tooltip": "Shows debug information.",
|
||||
"menu_path": "",
|
||||
"sub_path": "",
|
||||
"classname": "user",
|
||||
@@ -348,7 +348,7 @@ gensettingstf = [
|
||||
"label": "Story Mode",
|
||||
"id": "storymode",
|
||||
"default": 0,
|
||||
"tooltip": "Choose the mode of KoboldAI.",
|
||||
"tooltip": "Select KoboldAI mode.",
|
||||
"menu_path": "Home",
|
||||
"sub_path": "",
|
||||
"classname": "story",
|
||||
@@ -364,7 +364,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Shows outputs to you as they are made.",
|
||||
"tooltip": "Shows tokens as they are generated.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "UI",
|
||||
"classname": "user",
|
||||
@@ -379,7 +379,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Adds context menu to outputs showing what other words were considered as it was built.",
|
||||
"tooltip": "Adds context menu to output showing what other words were considered as it was generated.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "UI",
|
||||
"classname": "user",
|
||||
@@ -394,7 +394,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Inserts world info entries behind text that first triggers them for better context with unlimited depth.",
|
||||
"tooltip": "Inserts World Info entries behind text that first triggers them for better context with unlimited depth.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Other",
|
||||
"classname": "system",
|
||||
@@ -410,7 +410,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Remove text after last sentence closure. If no closure is found, all tokens will be returned.",
|
||||
"tooltip": "Deletes the text after the last sentence closure. If no closure is found, all tokens are returned.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -426,7 +426,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Replace double newlines (\\n\\n) with single newlines to avoid blank lines.",
|
||||
"tooltip": "Replaces double newlines (\\n\\n) with single ones to avoid blank lines.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -442,7 +442,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Remove special characters (@,#,%,^, etc).",
|
||||
"tooltip": "Removes special characters (@,#,%,^, etc).",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -458,7 +458,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Add spaces automatically if needed.",
|
||||
"tooltip": "Adds spaces automatically if necessary.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -474,7 +474,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Only allows the AI to output anything before the enter",
|
||||
"tooltip": "Allows the AI to generate an output only before the enter.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -490,7 +490,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Remove any double spaces in the game text.",
|
||||
"tooltip": "Removes any double spaces in the output.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -506,7 +506,7 @@ gensettingstf = [
|
||||
"max": 5,
|
||||
"step": 1,
|
||||
"default": 3,
|
||||
"tooltip": "The Author's Note will be entered this many actions back from the end of the game text",
|
||||
"tooltip": "Number of actions from the end of the story to insert Author's Note info.",
|
||||
"menu_path": "author_notes",
|
||||
"sub_path": "",
|
||||
"classname": "story",
|
||||
@@ -521,7 +521,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Shows token usage when typing in relevant text boxes. <b>May lag slower devices.</b>"
|
||||
"tooltip": "Shows the number of tokens when typing in text boxes. May cause lags."
|
||||
},
|
||||
{
|
||||
"UI_V2_Only": True,
|
||||
@@ -533,7 +533,7 @@ gensettingstf = [
|
||||
"max": 5,
|
||||
"step": 1,
|
||||
"default": 3,
|
||||
"tooltip": "When enabled the UI will beep when completing an action such as generation or model loading.",
|
||||
"tooltip": "If enabled, you will hear a beeping sound when generation or model loading is complete.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "UI",
|
||||
"classname": "user",
|
||||
@@ -546,7 +546,7 @@ gensettingstf = [
|
||||
"label": "Image Priority",
|
||||
"id": "img_gen_priority",
|
||||
"default": 1,
|
||||
"tooltip": "Determine where images will be generated.",
|
||||
"tooltip": "Determines where the image will be generated.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Images",
|
||||
"classname": "user",
|
||||
@@ -563,7 +563,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "If enabled, the system will keep the model in memory speeding up image generation times",
|
||||
"tooltip": "If enabled, the system will keep the model in memory, speeding up image generation time.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Images",
|
||||
"classname": "system",
|
||||
@@ -579,7 +579,7 @@ gensettingstf = [
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "When enabled experemental features will be shown in the UI.",
|
||||
"tooltip": "If enabled, experimental functions will be displayed in the UI.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "UI",
|
||||
"classname": "system",
|
||||
@@ -596,7 +596,7 @@ gensettingsik =[{
|
||||
"max": 2.0,
|
||||
"step": 0.05,
|
||||
"default": 0.5,
|
||||
"tooltip": "Randomness of sampling. High values can increase creativity but may make text less sensible. Lower values will make text more predictable but can become repetitious.",
|
||||
"tooltip": "Randomness of sampling. Higher values can increase creativity, but make the output less meaningful. Lower values will make the output more predictable, but it may become more repetitive.",
|
||||
"menu_path": "Model",
|
||||
"sub_path": "Generation",
|
||||
"classname": "model",
|
||||
@@ -611,7 +611,7 @@ gensettingsik =[{
|
||||
"max": 1.0,
|
||||
"step": 0.05,
|
||||
"default": 1.1,
|
||||
"tooltip": "Used to discard unlikely text in the sampling process. Lower values will make text more predictable but can become repetitious.",
|
||||
"tooltip": "Used to discard unlikely text in the sampling process. Lower values will make the output more predictable, but also repetitive. (Put this value on 1 to disable its effect)",
|
||||
"menu_path": "Model",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -626,7 +626,7 @@ gensettingsik =[{
|
||||
"max": 100,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Alternative sampling method, can be combined with top_p.",
|
||||
"tooltip": "Alternative sampling method. Can be combined with top_p.",
|
||||
"menu_path": "Model",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -641,7 +641,7 @@ gensettingsik =[{
|
||||
"max": 1.0,
|
||||
"step": 0.05,
|
||||
"default": 0.0,
|
||||
"tooltip": "Alternative sampling method; it is recommended to disable (set to 0) top_p and top_k if using this. 0.95 is thought to be a good value.",
|
||||
"tooltip": "Alternative sampling method. It is recommended to disable (set to 0) top_p and top_k if this setting is used. 0.95 is an optimal value for this setting. (Put this value on 1 to disable its effect)",
|
||||
"menu_path": "Model",
|
||||
"sub_path": "Sampling",
|
||||
"classname": "model",
|
||||
@@ -656,7 +656,7 @@ gensettingsik =[{
|
||||
"max": 3000,
|
||||
"step": 2,
|
||||
"default": 200,
|
||||
"tooltip": "Number of characters the AI should generate.",
|
||||
"tooltip": "Number of tokens to be generated. Higher values will take longer to generate.",
|
||||
"menu_path": "Model",
|
||||
"sub_path": "Generation",
|
||||
"classname": "model",
|
||||
@@ -671,7 +671,7 @@ gensettingsik =[{
|
||||
"max": 5,
|
||||
"step": 1,
|
||||
"default": 3,
|
||||
"tooltip": "Number of historic actions to scan for World Info keys.",
|
||||
"tooltip": "Number of actions from the end of the story to scan for World Info keys.",
|
||||
"menu_path": "User",
|
||||
"classname": "user",
|
||||
"name": "widepth"
|
||||
@@ -685,7 +685,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Whether the game is saved after each action.",
|
||||
"tooltip": "Whether the story is saved after each action.",
|
||||
"menu_path": "Story",
|
||||
"classname": "story",
|
||||
"name": "autosave"
|
||||
@@ -741,7 +741,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "When enabled the AI does not generate when you enter the prompt, instead you need to do an action first.",
|
||||
"tooltip": "If enabled, the AI does not generate a continuation of the prompt. Instead, you must perform an action first.",
|
||||
"menu_path": "User",
|
||||
"classname": "user",
|
||||
"name": "nopromptgen"
|
||||
@@ -755,7 +755,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "When enabled, the Memory text box in the Random Story dialog will be prefilled by default with your current story's memory instead of being empty.",
|
||||
"tooltip": "If enabled, the Memory box in Random Story will be filled with the memory of the current story instead of being empty.",
|
||||
"menu_path": "User",
|
||||
"classname": "user",
|
||||
"name": "rngpersist"
|
||||
@@ -769,7 +769,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Show debug info",
|
||||
"tooltip": "Shows debug information.",
|
||||
"menu_path": "User",
|
||||
"classname": "user",
|
||||
"name": "debug"
|
||||
@@ -783,7 +783,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Shows outputs to you as they are made.",
|
||||
"tooltip": "Shows tokens as they are generated.",
|
||||
"menu_path": "User",
|
||||
"classname": "user",
|
||||
"name": "output_streaming"
|
||||
@@ -797,7 +797,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Adds context menu to outputs showing what other words were considered as it was built.",
|
||||
"tooltip": "Adds context menu to output showing what other words were considered as it was generated.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "UI",
|
||||
"classname": "user",
|
||||
@@ -812,7 +812,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Inserts world info entries behind text that first triggers them for better context with unlimited depth.",
|
||||
"tooltip": "Inserts World Info entries behind text that first triggers them for better context with unlimited depth.",
|
||||
"menu_path": "Settings",
|
||||
"sub_path": "Other",
|
||||
"classname": "system",
|
||||
@@ -828,7 +828,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Remove text after last sentence closure. If no closure is found, all tokens will be returned.",
|
||||
"tooltip": "Deletes the text after the last sentence closure. If no closure is found, all tokens are returned.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -844,7 +844,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Replace double newlines (\\n\\n) with single newlines to avoid blank lines.",
|
||||
"tooltip": "Replaces double newlines (\\n\\n) with single ones to avoid blank lines.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -860,7 +860,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Remove special characters (@,#,%,^, etc).",
|
||||
"tooltip": "Removes special characters (@,#,%,^, etc).",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -876,7 +876,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Add spaces automatically if needed.",
|
||||
"tooltip": "Adds spaces automatically if necessary.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -892,7 +892,7 @@ gensettingsik =[{
|
||||
"max": 1,
|
||||
"step": 1,
|
||||
"default": 0,
|
||||
"tooltip": "Only allows the AI to output anything before the enter",
|
||||
"tooltip": "Allows the AI to generate an output only before the enter.",
|
||||
"menu_path": "Interface",
|
||||
"sub_path": "Formatting",
|
||||
"classname": "user",
|
||||
@@ -903,25 +903,25 @@ gensettingsik =[{
|
||||
formatcontrols = [{
|
||||
"label": "Trim incomplete sentences",
|
||||
"id": "frmttriminc",
|
||||
"tooltip": "Remove text after last sentence closure. If no closure is found, all tokens will be returned."
|
||||
"tooltip": "Deletes the text after the last sentence closure. If no closure is found, all tokens are returned."
|
||||
},
|
||||
{
|
||||
"label": "Remove blank lines",
|
||||
"id": "frmtrmblln",
|
||||
"tooltip": "Replace double newlines (\\n\\n) with single newlines to avoid blank lines."
|
||||
"tooltip": "Replaces double newlines (\\n\\n) with single ones to avoid blank lines."
|
||||
},
|
||||
{
|
||||
"label": "Remove special characters",
|
||||
"id": "frmtrmspch",
|
||||
"tooltip": "Remove special characters (@,#,%,^, etc)."
|
||||
"tooltip": "Removes special characters (@,#,%,^, etc)."
|
||||
},
|
||||
{
|
||||
"label": "Automatic spacing",
|
||||
"id": "frmtadsnsp",
|
||||
"tooltip": "Add spaces automatically if needed."
|
||||
"tooltip": "Adds spaces automatically if necessary."
|
||||
},
|
||||
{
|
||||
"label": "Single Line",
|
||||
"id": "singleline",
|
||||
"tooltip": "Only allows the AI to output anything before the enter"
|
||||
"tooltip": "Allows the AI to generate an output only before the enter."
|
||||
}]
|
||||
|
Reference in New Issue
Block a user