Update Memorisation-forms.html

This commit is contained in:
2025-10-01 23:13:09 +08:00
committed by GitHub
parent 573dd54280
commit c7b23ad677

View File

@@ -108,6 +108,13 @@
<label for="batch-filling-threshold">批处理阈值</label> <label for="batch-filling-threshold">批处理阈值</label>
<input type="number" id="batch-filling-threshold" class="text_pole" value="30"> <input type="number" id="batch-filling-threshold" class="text_pole" value="30">
</div> </div>
<div class="control-block-with-switch" style="margin-top: 10px;">
<label for="show-table-in-chat-toggle">聊天内显示表格</label>
<label class="toggle-switch">
<input type="checkbox" id="show-table-in-chat-toggle" data-setting-key="show_table_in_chat" data-type="boolean">
<span class="slider"></span>
</label>
</div>
</div> </div>
<div id="sinan-world-settings-tab" class="sinan-tab-pane"> <div id="sinan-world-settings-tab" class="sinan-tab-pane">
@@ -144,6 +151,10 @@
<label>选择世界书 (可多选)</label> <label>选择世界书 (可多选)</label>
<button id="table_refresh_worldbooks" class="menu_button" title="刷新世界书列表"><i class="fa-solid fa-sync"></i></button> <button id="table_refresh_worldbooks" class="menu_button" title="刷新世界书列表"><i class="fa-solid fa-sync"></i></button>
</div> </div>
<div class="table-search-wrapper">
<input type="text" id="table_worldbook_search" class="table-search-input" placeholder="搜索世界书名称...">
<i class="fas fa-search table-search-icon"></i>
</div>
<div id="table_worldbook_checkbox_list" class="scrollable-container"> <div id="table_worldbook_checkbox_list" class="scrollable-container">
<!-- 世界书勾选框将在这里动态生成 --> <!-- 世界书勾选框将在这里动态生成 -->
</div> </div>
@@ -155,6 +166,10 @@
<!-- World Book Entry List Column --> <!-- World Book Entry List Column -->
<div class="worldbook-column" style="margin-top: 10px;"> <div class="worldbook-column" style="margin-top: 10px;">
<label>选择条目 (可多选)</label> <label>选择条目 (可多选)</label>
<div class="table-search-wrapper">
<input type="text" id="table_entry_search" class="table-search-input" placeholder="搜索条目名称、关键词...">
<i class="fas fa-search table-search-icon"></i>
</div>
<div id="table_worldbook_entry_list" class="scrollable-container"> <div id="table_worldbook_entry_list" class="scrollable-container">
<!-- 世界书条目勾选框将在这里动态生成 --> <!-- 世界书条目勾选框将在这里动态生成 -->
</div> </div>
@@ -195,7 +210,19 @@
<div id="context-reading-slider-container" class="control-block-with-switch" style="margin-bottom: 10px; display: none;"> <div id="context-reading-slider-container" class="control-block-with-switch" style="margin-bottom: 10px; display: none;">
<label for="context-reading-slider">上下文读取: <span id="context-reading-value">4</span></label> <label for="context-reading-slider">上下文读取: <span id="context-reading-value">4</span></label>
<input type="range" id="context-reading-slider" min="0" max="10" step="1" value="4" class="text_pole" style="width: 100%; margin-top: 5px;"> <input type="range" id="context-reading-slider" min="0" max="10" step="1" value="4" class="text_pole" style="width: 100%; margin-top: 5px;">
<small class="notes" style="margin-top: 5px; display: block;">使用的是微言录小总结的标签提取规则,请自行设置,若为空则不提取或排除</small> <small class="notes" style="margin-top: 5px; display: block;">默认使用微言录的标签提取与内容排除规则</small>
</div>
<div id="table-independent-rules-container" class="control-block-with-switch" style="margin-bottom: 10px; display: none; flex-direction: column; align-items: flex-start; gap: 8px;">
<div style="display: flex; justify-content: space-between; align-items: center; width: 100%;">
<label for="table-independent-rules-enabled">启用独立提取规则</label>
<label class="toggle-switch">
<input type="checkbox" id="table-independent-rules-enabled">
<span class="slider"></span>
</label>
</div>
<button id="table-configure-rules-btn" class="menu_button small_button" style="display: none;"><i class="fas fa-cog"></i> 配置规则</button>
<small class="notes">启用后,分步填表和批量填表将使用下方配置的专属规则,而非微言录的规则。</small>
</div> </div>
<div class="action-center-buttons" style="gap: 8px;"> <div class="action-center-buttons" style="gap: 8px;">
<button id="amily2-export-preset-btn" class="menu_button primary small_button interactable"><i class="fas fa-file-export"></i> 导出预设</button> <button id="amily2-export-preset-btn" class="menu_button primary small_button interactable"><i class="fas fa-file-export"></i> 导出预设</button>
@@ -347,4 +374,3 @@
</body> </body>
</html> </html>
</html> </html>