mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Merge errors fix
This commit is contained in:
@@ -511,9 +511,6 @@ class ImportBuffer:
|
||||
|
||||
import_buffer = ImportBuffer()
|
||||
|
||||
with open("data/genres.json", "r") as file:
|
||||
genre_list = json.load(file)
|
||||
|
||||
# Set logging level to reduce chatter from Flask
|
||||
import logging
|
||||
log = logging.getLogger('werkzeug')
|
||||
@@ -9807,6 +9804,8 @@ def UI_2_privacy_mode(data):
|
||||
#==================================================================#
|
||||
@app.route("/genre_data.json", methods=["GET"])
|
||||
def UI_2_get_applicable_genres():
|
||||
with open("data/genres.json", "r") as file:
|
||||
genre_list = json.load(file)
|
||||
return Response(json.dumps({
|
||||
"list": genre_list,
|
||||
"init": koboldai_vars.genres,
|
||||
|
@@ -199,6 +199,20 @@ border-top-right-radius: var(--tabs_rounding);
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.setting_container_sp {
|
||||
display: grid;
|
||||
grid-template-areas: "label value"
|
||||
"item item";
|
||||
grid-template-rows: 20px 43px;
|
||||
grid-template-columns: 147px 30px;
|
||||
row-gap: 0.2em;
|
||||
background-color: var(--setting_background);
|
||||
color: var(--setting_text);
|
||||
border-radius: var(--radius_settings_background);
|
||||
padding: 2px;
|
||||
margin: 2px;
|
||||
}
|
||||
|
||||
.setting_container.var_sync_alt_system_alt_gen[system_alt_gen="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
@@ -2623,11 +2623,14 @@ function create_new_softprompt() {
|
||||
"sp_author": document.getElementById("sp_author").value,
|
||||
"sp_description": document.getElementById("sp_description").value
|
||||
});
|
||||
closePopups();
|
||||
}
|
||||
|
||||
async function download_story_to_json() {
|
||||
//document.getElementById('download_iframe').src = 'json';
|
||||
downloaded = false;
|
||||
}
|
||||
|
||||
async function download_story() {
|
||||
if (socket.connected) {
|
||||
try {
|
||||
|
@@ -284,7 +284,8 @@
|
||||
</form>
|
||||
</div>
|
||||
<div class="popup_load_cancel">
|
||||
<button type="button" class="btn btn-primary popup_load_cancel_button" onclick="create_new_softprompt(); closePopups();">Ok</button>
|
||||
<button type="button" class="btn btn-primary popup_load_cancel_button" onclick="create_new_softprompt();">Ok</button>
|
||||
<button type="button" class="btn btn-primary popup_load_cancel_button" onclick="closePopups();">Cancel</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@@ -199,7 +199,7 @@
|
||||
{% with sub_path='Modifiers' %}
|
||||
{% include 'settings item.html' %}
|
||||
{% endwith %}
|
||||
<div class="setting_container" ui_level=1>
|
||||
<div class="setting_container_sp" ui_level=1>
|
||||
<!---Top Row---->
|
||||
<span class="setting_label">
|
||||
<span style="white-space: pre-wrap;">Soft Prompt: </span>
|
||||
@@ -207,14 +207,15 @@
|
||||
</span>
|
||||
<!---Bottom Row---->
|
||||
<span class="setting_item">
|
||||
<!---<span class="material-icons-outlined cursor" onclick="socket.emit('load_softprompt_list', '');">folder_open</span> <span class="var_sync_system_spname"></span>--->
|
||||
<select autocomplete="off" id="sp" class="var_sync_system_splist var_sync_system_spfilename settings_select" style="width: 140px;margin-right:0px;padding-bottom: 0px;" onclick="socket.emit('load_softprompt', this.value);">
|
||||
</select>
|
||||
<span class="material-icons-outlined cursor" style="font-size: 18px;" tooltip="Refresh List" onclick="socket.emit('sp_list_refresh', '');">autorenew</span>
|
||||
<div style="display: flex;flex-direction: row;">
|
||||
<select autocomplete="off" id="sp" class="var_sync_system_splist var_sync_system_spfilename settings_select" style="width: 140px;margin-right:0px;padding-bottom: 0px;" onclick="socket.emit('load_softprompt', this.value);">
|
||||
</select>
|
||||
<div style="display: flex;flex-direction: column;">
|
||||
<span class="material-icons-outlined cursor" style="font-size: 18px;" tooltip="Refresh List" onclick="socket.emit('sp_list_refresh', '');">autorenew</span>
|
||||
<span class="material-icons-outlined cursor" style="font-size: 18px;" tooltip="Create New Soft Prompt" onclick="openPopup('sp-trainer-popup');">note_add</span>
|
||||
</div>
|
||||
</div>
|
||||
</span>
|
||||
<!---Slider Labels--->
|
||||
<span class="setting_minlabel"><span style="top: -4px; position: relative;"></span></span>
|
||||
<span class="setting_maxlabel"><span style="top: -4px; position: relative;"></span></span>
|
||||
</div>
|
||||
<div class="setting_container_single_wide" ui_level=2>
|
||||
<!---Top Row---->
|
||||
|
Reference in New Issue
Block a user