- clarified Poe config panel descriptions

- widthFreeExpand class now does it's job properly.
This commit is contained in:
RossAscends
2023-04-12 20:02:55 +09:00
parent f6ff84bbb6
commit b487a1f295
2 changed files with 18 additions and 18 deletions

View File

@@ -349,39 +349,39 @@
</div> </div>
<div id="range_block_poe"> <div id="range_block_poe">
<div class="range-block"> <div class="range-block">
<label class="checkbox_label" for="poe_streaming"> <label for="poe_streaming" class="checkbox_label widthFreeExpand">
<input id="poe_streaming" type="checkbox" /> <input id="poe_streaming" type="checkbox" />
Streaming Streaming
</label> </label>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Displays the message text as soon as it is generated Display bot response text chunks as they are generated.
</div> </div>
</div> </div>
<div class="range-block"> <div class="range-block">
<label for="poe_auto_purge" class="checkbox_label"> <label for="poe_auto_purge" class="checkbox_label widthFreeExpand">
<input id="poe_auto_purge" type="checkbox"> <input id="poe_auto_purge" type="checkbox">
Auto-purge chat cache Auto-purge API context (save JB)
</label> </label>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Deletes messages from poe before each prompt is sent Delete non-JB messages from Poe context before sending a new prompt. Prevents auto-jailbreak message from being pushed out of context.
</div> </div>
</div> </div>
<div class="range-block"> <div class="range-block">
<label for="poe_auto_jailbreak" class="checkbox_label"> <label for="poe_auto_jailbreak" class="checkbox_label widthFreeExpand">
<input id="poe_auto_jailbreak" type="checkbox"> <input id="poe_auto_jailbreak" type="checkbox">
Auto-jailbreak Auto-jailbreak
</label> </label>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Sends the jailbreak message and keeps it in context Send the jailbreak message before first generation after page refresh.
</div> </div>
</div> </div>
<div class="range-block"> <div class="range-block">
<label for="poe_character_nudge" class="checkbox_label"> <label for="poe_character_nudge" class="checkbox_label widthFreeExpand">
<input id="poe_character_nudge" type="checkbox" /> <input id="poe_character_nudge" type="checkbox" />
Send character note Send character note
</label> </label>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Nudges the bot to reply as the character only Sent with every prompt to modify bot responses.
</div> </div>
<div class="range-block-range"> <div class="range-block-range">
</div> </div>
@@ -687,33 +687,33 @@
</div> </div>
<div id="poe_settings"> <div id="poe_settings">
<div class="range-block"> <div class="range-block">
<div class="range-block-title"> <div class="range-block-title justifyLeft">
Jailbreak activation message Jailbreak activation message
</div> </div>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Message sent as a jailbreak to activate the roleplay Message to send when auto-jailbreak is on.
</div> </div>
<div class="wide100p"> <div class="wide100p">
<textarea id="poe_activation_message" rows="10"></textarea> <textarea id="poe_activation_message" rows="10"></textarea>
</div> </div>
</div> </div>
<div class="range-block"> <div class="range-block">
<div class="range-block-title"> <div class="range-block-title justifyLeft">
Jailbreak activation response Jailbreak confirmation reply
</div> </div>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Bot reply that counts as a successful jailbreak Bot must send this back to confirm jailbreak
</div> </div>
<div class="wide100p"> <div class="wide100p">
<input id="poe_activation_response" class="text_pole" type="text" /> <input id="poe_activation_response" class="text_pole" type="text" />
</div> </div>
</div> </div>
<div class="range-block"> <div class="range-block">
<div class="range-block-title"> <div class="range-block-title justifyLeft">
Character note text Character Note
</div> </div>
<div class="range-block-counter justifyLeft"> <div class="range-block-counter justifyLeft">
Text to be send as a character nudge Influences bot behavior in its responses.
</div> </div>
<div class="wide100p"> <div class="wide100p">
<textarea id="poe_nudge_text" class="text_pole" rows="3"></textarea> <textarea id="poe_nudge_text" class="text_pole" rows="3"></textarea>

View File

@@ -3064,7 +3064,7 @@ toolcool-color-picker {
} }
.widthFreeExpand { .widthFreeExpand {
width: unset; width: -webkit-fill-available;
} }
.wide100p { .wide100p {