Skip to content

Commit 14560bf

Browse files
committed
Some tests
1 parent fd0e77c commit 14560bf

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Diff for: klite.embd

+8-4
Original file line numberDiff line numberDiff line change
@@ -2944,7 +2944,7 @@ Current version indicated by LITEVER below.
29442944

29452945
const AVATAR_PX = 384;
29462946

2947-
const SAVE_SLOTS = 32;
2947+
const SAVE_SLOTS = 64;
29482948

29492949
const num_regex_rows = 4;
29502950
const default_websearch_template = `### New Task:\nFrom above text, rephrase the search engine query "{{QUERY}}" as a single short phrase (for search engines) using proper nouns, references and names to avoid ambiguity.\n\n### Rephrased Search Query Created:\n`;
@@ -20679,6 +20679,10 @@ Current version indicated by LITEVER below.
2067920679
class="helptext">Controls how far back in the text to search for World Info Keys</span></span></div>
2068020680
<select title="World Info Search Depth" style="height:16px;padding:0px;margin:0px 4px 0; width:90px;font-size:10px;" class="form-control" id="wi_searchdepth">
2068120681
<option value="0">Full Context</option>
20682+
<option value="65536">Last 65536</option>
20683+
<option value="49152">Last 49152</option>
20684+
<option value="32768">Last 32768</option>
20685+
<option value="16384">Last 16384</option>
2068220686
<option value="8192">Last 8192</option>
2068320687
<option value="4096">Last 4096</option>
2068420688
<option value="2048">Last 2048</option>
@@ -21077,7 +21081,7 @@ Current version indicated by LITEVER below.
2107721081
document.getElementById('max_context_length').value = this.value;"></div>
2107821082
<div class="settingminmax">
2107921083
<div class="justifyleft">128</div>
21080-
<div class="justifyright" id="max_context_length_slide_label">4096</div>
21084+
<div class="justifyright" id="max_context_length_slide_label">8192</div>
2108121085
</div>
2108221086
<div id="auto_ctxlen_panel" class="settinglabel">
2108321087
<div class="justifyleft settingsmall" title="Automatically lowers settings if incompatible with existing workers">Auto-Adjust Limits </div>
@@ -21092,11 +21096,11 @@ Current version indicated by LITEVER below.
2109221096
<input title="Max Output" inputmode="numeric" class="justifyright flex-push-right settingsmall" id="max_length" oninput="
2109321097
document.getElementById('max_length_slide').value = this.value;">
2109421098
</div>
21095-
<div><input title="Max Output Slider" type="range" min="16" max="4096" step="16" id="max_length_slide" oninput="
21099+
<div><input title="Max Output Slider" type="range" min="16" max="8192" step="16" id="max_length_slide" oninput="
2109621100
document.getElementById('max_length').value = this.value;"></div>
2109721101
<div class="settingminmax">
2109821102
<div class="justifyleft">16</div>
21099-
<div class="justifyright" id="max_length_slide_label">4096</div>
21103+
<div class="justifyright" id="max_length_slide_label">8192</div>
2110021104
</div>
2110121105
<div id="auto_genamt_panel" class="settinglabel">
2110221106
<div class="justifyleft settingsmall" title="Automatically lowers settings if incompatible with existing workers">Auto-Adjust Limits </div>

0 commit comments

Comments
 (0)